| WebBrowser control -- managing new windows |
|
 |
Index ‹ DotNet ‹ Dotnet
|
- Previous
- 1
- Dotnet >> SQLDMO object help needed pleaseI am trying to compare the tables in two similar environments using the
SQLDMO object. I am able to use this object to access different SQL servers
and choose two different databases. The versions of the databases are
slightly different so I would like to be able to compare them for things like
datatypes, primary and foreign keys, number of records etc. I know that
there are packages out there that do this kind of thing but I have to
complete this task myself in house. Would anyone have any code doing this
kind of thing or could anyone point me in the direction of help in terms of
which specific objects I should be using to complete the task I have set??
Thanks for any help you can give me
- 2
- Dotnet >> Football for IT Pros still availableStill have 4 openings in our CBS SportsLine.com Fantasy Football league.
Champ wins $200
prize.
If interested, go to: http://football.sportsline.com/splash/football
Register for the GOLD Fantasy Football, then search for and join the "Rocky
Mountain PigSkinners" league.
Automated draft is on September 5th. Plenty of time for the druggies to
leave their teams, injuries, and let the real pro players fall into place in
the depth charts. ;-)
Go BRONCOS!
- 3
- Visual C#.Net >> ReflectionI have an abstract class, with some other classes
inheriting from it in my namespace.
What I am would like to know is: is there any way (using
reflection) that I would be able to get a list of what
these possible classes are, that derive from the abstract
class?
Not too hot on reflection at the moment, but trying to
learn as I go.
Thanks for any help in advance
Martin
- 4
- 5
- Visual C#.Net >> storing cutom UI componentsHi everyone,
How do I create buttons, forms, etc and store them outside my project so I
can import them into other projects? For example, I would like to create an
OK button with certain properties (size, labels, etc) and events without
recreating it every I need to use one of these buttons.
Thanks,
Scott
- 6
- Microsoft Project >> Column CalculationsHello,
I need some help with a column calculation on project plan template.
The first column defines the category i.e. Painting the House. The
second column has times for individual tasks involved with painting the
house: scraping, priming, painting and clean up.
We assigned 25 hours for painting the house. We want to net the hours
from the 25 hours as each task is completed. For example, if team
member entered 5 hours for scraping. The total for painting the house
would 25 -5 = 20.
Any suggestions, direction or links to how to articles would be
appreciated.
--
pwooster
------------------------------------------------------------------------
pwooster's Profile: http://forums.techarena.in/member.php?userid=32205
View this thread: http://forums.techarena.in/showthread.php?t=827926
http://forums.techarena.in
- 7
- ADO >> Giving Back(Thank You)An issue that has plagued me for a long time was the writing of a dataset to
an array and using that array to write to an excel spreadsheet. For too long
I relied on writing the dataset cell by cell which is fine for small amounts
of data but is horrible when large amounts of data are involved.
The example for writing the data to an array and sending it to a spreadsheet
at http://support.microsoft.com/default.aspx?scid=kb;EN-US;306022 is great
and where my thinking on this began. It was inadequate however to deal with
datasets and the problems encountered in dynamic data. In all fairness that
was not its intention to teach this in their array example.
Some of my coworkers get angry when I share like in this forum. But if
everyone had that attitude I would have never learned anything.
Most of you experienced guys on here don't need this but arrays in .NET (as
this was my first language I dont know first hand) are confusing to the
beginner. I know they were me for sure.
I am also open to improvements on the code. I will be the first to admit I
don't know everything. There may be mistakes. I wrote it this weekend.
Anyway here is a link that may or may not help you acomplish writing a
dataset via an array to an excel spreadsheet.
I would appreciate knowing if this helped anyone.
Many thanks for all the help the vets there have given me in the last year.
http://www.kjmsolutions.com/datasetarray.htm
- 8
- Dotnet >> Pass a C# function to a COM interface that wants a function pointeI have a Directshow filter I wrote in C++. I've created an interface to set
a callback function. The app I want to use the filter in is in C#. How do I
pass a function pointer from C# to a COM interface?
I have not been able to find much in the way of examples but I have tried
this:
//COM Object
typdef HRESULT (*MYCALLBACK) (IMediaSample * pSample);
DECLARE_INTERFACE_(IMyFilter, IUknown)
{
STDMETHOD(SetCallbackPointer)(LPVOID FnAddress);
}
MYCALLBACK m_callback;
STDMETHODIMP SetCallbackPointer(LPVOID FnAddress)
{
m_callback = (MYCALLBACK)FnAddress;
}
void InvokeCallback(IMediaSample * pSample)
{
(m_callback)(pSample);
}
HRESULT Transform(IMediaSample *pSample)
{
InvokeCallback(pSample);
}
//C#
public delegate int CallBackDelegate(ref IMediaSample mediaSample);
public class MyClass
{
public CallBackDelegate myDelegate;
public MyClass()
{
myDelegate = new CallBackDelegate(CallbackFunction);
//all the stuff to create the COM object and get the interface
myInterface.SetCallbackPointer(myDelegate);
}
public int CallbackFunction(ref IMediaSample mediaSample)
{
//my intention is get a copy of the mediaSample
MessageBox.Show("Here");
return 0;
}
}
- 9
- ADO >> Cannot open database ''.The full error message is:
Cannot open database ''. It may not be a database that your
application recognizes, or the file may be corrupt.
I'm seeing this error once in a while in a C# windows app that talks to
a MS Access database (2000 file format). The connection string is set
at startup and never changed. It is in the format:
Provider=Microsoft.Jet.OLEDB.4.0;Data Source=(path to my db);Jet
OLEDB:Database Password=(the password);
All commands executed against the db go through the same method, which
ensures that connections are opened, used, closed and released. The
app is NOT very data-intensive, so it's difficult for me to believe
this is a "number of connections" issue.
Anybody have an idea what this error is trying to tell me?
TIA
Jared
- 10
- Visual C#.Net >> IDesignerHostI am using IDesignerHost to auto generate code for one of the controls that
I am creating. I basically feed my IDesignerHost with a class component. It
auto generates code for all the members of that class component but it is
not generating code for the methods of the class component. Any idea how to
auto generate code for methods using IDesignerHost?
- 11
- Net Framework >> Remote Development of VB.NET ApplicationDear all,
Can you please provide some information on the following issue, at the
earliest.
I have a development server setup in the network, say machine X. Also,
there is another workstation, say Y, for a programmer, to work with.
The application is a Winforms Application and machine X (server) does
not have Visual Studio .NET installed on it. Machine Y(workstation)
has got Visual Studio .NET installed on it. Y is connected via
sourcesafe to the solution in X, without making a local copy( I mean
through a network share).
There are issues faced by the programmer, in executing the application
in X, via Studio environment in Y. Basically application is not doing
any database related activities, and throws exceptions and breaks at
will.
Will this kind of a scenario ever work??? If not, please detail a
suitable alternative.
Two constraints are
a> No direct access to the Server X is possible for development.
b> Things need to be stage managed from the workstation Y.
Please respond at the earliest.
Regards..
Varkey
- 12
- 13
- Dotnet >> Search for a string inside PDF fileI need to search programmatically if a certain string appears inside a PDF
or CHM file.
The search is done only once for each file so I don't think that a solution
to index the file using Index server is right here.
Anyone knows how to do it?
A simple code example will be appreciated.
Thanks
Ra294@hotmail.com
- 14
- ADO >> Crystal reports on client?Hi,
If I use (in development) connection object from design tools in
ToolBox to get data from db to crystal reports, how can I make
changes to server name and security options in runtime. That is, is
there an option during "packaging and deployment" where I can make
connection setting as per client machine,instead of being to
develpment one??
MTIA,
Grawsha
- 15
- Net Framework >> Append Nodes to existing XML File/Document .net 1.1I have a XML file that I need to append child nodes to. Here is an example of
that file:
<root>
<item>
<stuff1>The Stuff for 1</stuff 1>
<stuff2>The stuff for 2</stuff 2>
</item>
<item>
<otherstuff1>The other stuff for 1</otherstuff1>
<otherstuff2>The other stuff for 2</otherstuff2>
</item>
</root>
I need to append a node to each <item> then write it back to the file. What
is the best way to do this? Thank you
Daniel C. DiVita
|
| Author |
Message |
briardly,

|
Dotnet >> WebBrowser control -- managing new windows
The 2.0 WebBrowser control is a wonderful thing, but handling navigation to
a new browser window seems to need access to NewWindow2, which unfortunately
is not part of the package. Any practical suggestions/code samples on how to
make this work?
In theory it should be possible to hook the unmanaged event, create a new
managed control and get an object from it to pass back to the event caller.
Sounds hairy to me -- anyone tried it?
All suggestions much appreciated.
DavidB
DotNet236
|
| |
|
| |
 |
| |
 |
Index ‹ DotNet ‹ Dotnet |
- Next
- 1
- Visual C#.Net >> Authenticating against network server using non-domain accountThis is a multi-part message in MIME format.
------=_NextPart_000_0072_01C6024E.75A52660
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
I need to access the scheduler service on a network computer in order to =
manipulate it remotely from .NET; I have all of the necessary code to =
perform the manipulation and it works - great - but I am having problems =
with authentication.
I have tried using LogonUser and this works fine with a domain account, =
however it is not possible to use this with an account that is defined =
only on the remote computer - it only works with local or domain =
accounts.
Any suggestions as to how I can authenticate my connection to the remote =
PC using a logon and password local to that machine?
------=_NextPart_000_0072_01C6024E.75A52660
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2900.2802" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>I need to access the scheduler service =
on a network=20
computer in order to manipulate it remotely from .NET; I have all of the =
necessary code to perform the manipulation and it works - great - but I =
am=20
having problems with authentication.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>I have tried using LogonUser and this =
works fine=20
with a domain account, however it is not possible to use this with an =
account=20
that is defined only on the remote computer - it only works with local =
or domain=20
accounts.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Any suggestions as to how I can =
authenticate my=20
connection to the remote PC using a logon and password local to that=20
machine?</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV></BODY></HTML>
------=_NextPart_000_0072_01C6024E.75A52660--
- 2
- Visual C#.Net >> Switching Windows FormsHi -
I'm writing a C# windows form application and have hit a hurdle. The
application has several panels that need to be displayed at various times
depending on what the user is doing. They all need to sit inside a main
frame (form). The various screens could be:
1. Side bar and welcome screen.
2. Side bar and list of items.
3. Item side bar and tab sheet.
4. More variations on 3 replacing the tab sheet etc. etc.
The sidebar will vary depending on what stage the user is at. The other
views will have controls placed on them (i.e. controls on the tab sheet
etc.). The problem I have is how to make the side bar and work panels
dynamic (i.e. to change the state easily to reflect the current mode of the
application). The main problems are:
1. Can I use the IDE to achieve the above or do I need to create the views
by hand? If so how...
2. Do I need to create the various views as separate panels and associate
them with the main form? Can I use the IDE for this and what type should
they be created as?
TIA
- Andy
- 3
- Winforms >> Custom TabControl using TabStrip and Dock probelmI am developing a TabControl derived from Control.
It consists of other control called TabStrip which is also derived frm control.
My TabControl can be aligned vertically or horizontally. When it is horizontal i am docking TabStrip at the Top of the TabControl. When the alignment is changed am docking it at the Right so that it becomes Vertical.
When am setting the Alignment of the TabControl to Vertical, the tabstrip is docked to the right inside the TabControl so that the tabs are shown vertically.
Now when i am using my TabControl it is working fine in designer mode, when am toggleing between horizontal and vertical. But when i run the application the tabStrip's ( even though it is docked at the Right) location becomes (0,0) and it is show to the Left. Don't know why it's location becomes (0,0) whe i run the applicatiion.??? And whern i click on the Tab then it goes to the Right. However, when in Design mode it shows very well to the Right.
Any one can please help me suggest what's going wrong here??
--Nilesh
- 4
- 5
- Winforms >> Logitech quickcam pro 5000 with windows xp media edition and MSNI can't get my webcam to work with msn at all! I've tried everything the
logitech tech support have suggested. It keeps saying my webcam is either
not connected or being used by another program..which it isn't. I know the
webcam itself does work I am able to use it with yahoo messanger.
Anyone else run into the is problem using this webcam with msn? or have a
solution?
- 6
- 7
- Visual C#.Net >> Background Image in ListboxHi,
Is it possible to put a background image in a listBox control?? How can
this be done? Specifically I would like to display an image in the are
of a listbox which is not occuppied by any listbox items (alternatively
if I could get rid of this region altogether or make it transparent..
just thinking..) Can anyone help???
Thanks in advance
Kits
- 8
- Net Framework >> Changing DisplayNames of my properties using PropertyGrid component, how ??I'm using Delphi 2006 and I have a class defination like this:
TPerson = class
fPersonName : String;
fPersonSurName : String;
fPersonAge : Integer;
published
property PersonName : String read fPersonName write fPersonName;
property PersonSurname : String read fPersonSurname write fPersonSurname;
property PersonAge : Integer read fPersonAge write fPersonAge;
end;
and i want to display my class instance using PropertyGrid,so...
var
mPerson : TPerson;
begin
mPerson := TPerson.Create;
mPerson.PersonName := 'Tugrul';
mPerson.PersonSurname := 'HELVACI';
mPerson.PersonAge := 31;
PropertyGrid1.SelectedObject := mPerson;
end;
at the above code i can see my class instance in the property grid.
But i want to change property display names in the propertygrid component.
Because of these, i was searching on the net and i found PropertyDescriptor
abstract class
and ICustomTypeConverter interface.
i implemented theese classes following:
TArrayOfAttribute = array of Attribute;
TMyDescriptor = class(PropertyDescriptor)
private
base : PropertyDescriptor;
fName: String;
function GetName : String;
function GetDisplayName : String;
function GetIsReadOnly : Boolean;
function GetComponentType : &Type;
function GetPropertyType : &Type;
function GetCustomNames(baseName : String) : String; // my custom names
getter function
public
constructor Create(baseP : PropertyDescriptor; filter :
TArrayOfAttribute); overload; virtual;
constructor Create(baseP : PropertyDescriptor); overload; virtual;
function CanResetValue(comp : TObject) : Boolean;
function GetValue(comp : TObject) : TObject;
procedure ResetValue(comp : TObject);
procedure SetValue(comp : TObject; Value : TObject);
function ShouldSerializeValue(comp : TObject) : Boolean;
property Name : String read GetName;
property DisplayName : String read GetDisplayName;
property IsReadOnly : Boolean read GetIsReadOnly;
property ComponentType : &Type read GetComponentType;
property PropertyType : &Type read GetPropertyType;
end;
TMyClass = class(TInterfacedObject, ICustomTypeDescriptor)
public
function GetProperties(filter : TArrayOfAttribute) :
PropertyDescriptorCollection; overload;
function GetAttributes : AttributeCollection;
function GetClassName : String;
function GetComponentName : String;
function GetConverter : TypeConverter;
function GetDefaultEvent : EventDescriptor;
function GetEvents(attributes : TArrayOfAttribute) :
EventDescriptorCollection; overload;
function GetEvents : EventDescriptorCollection; overload;
function GetDefaultProperty : PropertyDescriptor;
function GetProperties : PropertyDescriptorCollection; overload;
function GetEditor(editorBaseType : System.Type) : TObject;
function GetPropertyOwner(pd : PropertyDescriptor) : TObject;
end;
and my new TPerson class is:
TPerson = class(TMyClass)
fPersonName : String;
fPersonSurName : String;
fPersonAge : Integer;
published
property PersonName : String read fPersonName write fPersonName;
property PersonSurname : String read fPersonSurname write fPersonSurname;
property PersonAge : Integer read fPersonAge write fPersonAge;
end;
**************** IMPLEMENTATIONS BELOW *********************************
{ TMyDescriptor }
function TMyDescriptor.CanResetValue(comp: TObject): Boolean;
begin
Result := base.CanResetValue(comp);
end;
constructor TMyDescriptor.Create(baseP: PropertyDescriptor;
filter: TArrayOfAttribute);
begin
inherited Create(baseP, filter);
Self.base := baseP;
end;
constructor TMyDescriptor.Create(baseP: PropertyDescriptor);
begin
inherited Create(baseP);
Self.base := baseP;
end;
function TMyDescriptor.GetComponentType: &Type;
begin
Result := base.ComponentType;
end;
function TMyDescriptor.GetDisplayName: String;
begin
Result := GetCustomNames(base.Name);
end;
function TMyDescriptor.Getir(baseName : String): String;
begin
if baseName = 'PersonName' then Result := 'Names of the Personel';
if baseName = 'PersonSurname' then Result := 'Surname of the personel';
if baseName = 'PersonAge' then Result := 'Age of the personel';
end;
function TMyDescriptor.GetIsReadOnly: Boolean;
begin
Result := base.IsReadOnly;
end;
function TMyDescriptor.GetName: String;
begin
Result := base.Name;
end;
function TMyDescriptor.GetPropertyType: &Type;
begin
Result := base.PropertyType;
end;
function TMyDescriptor.GetValue(comp: TObject): TObject;
begin
Result := base.GetValue(comp);
end;
procedure TMyDescriptor.ResetValue(comp: TObject);
begin
base.ResetValue(comp);
end;
procedure TMyDescriptor.SetValue(comp, Value: TObject);
begin
base.SetValue(comp, value);
end;
function TMyDescriptor.ShouldSerializeValue(comp: TObject): Boolean;
begin
Result := base.ShouldSerializeValue(comp);
end;
{ TMyClass }
function TMyClass.GetProperties(
filter: TArrayOfAttribute): PropertyDescriptorCollection;
var
baseProps : PropertyDescriptorCollection;
newProps : array of PropertyDescriptor;
iCounter : Integer;
oldname,
newname : String;
begin
baseProps := TypeDescriptor.GetProperties(GetType(), filter);
SetLength(newProps, baseProps.Count);
for iCounter := 0 to baseProps.Count do
begin
newProps[iCounter] := TMyDescriptor.Create(baseProps[iCounter], filter);
// An error occured : E2402 constructing instance of abstract class..
oldname := PropertyDescriptor(baseProps[iCounter]).DisplayName;
newName := TMyDescriptor(newProps[iCounter]).DisplayName;
end;
Result := PropertyDescriptorCollection.Create(newProps);
end;
function TMyClass.GetAttributes: AttributeCollection;
begin
Result := TypeDescriptor.GetAttributes(Self, true);
end;
function TMyClass.GetClassName: String;
begin
Result := TypeDescriptor.GetClassName(Self, true);
end;
function TMyClass.GetComponentName: String;
begin
Result := TypeDescriptor.GetComponentName(Self, true);
end;
function TMyClass.GetConverter: TypeConverter;
begin
Result := TypeDescriptor.GetConverter(Self, true);
end;
function TMyClass.GetDefaultEvent: EventDescriptor;
begin
Result := TypeDescriptor.GetDefaultEvent(Self, true);
end;
function TMyClass.GetDefaultProperty: PropertyDescriptor;
begin
Result := TypeDescriptor.GetDefaultProperty(Self, true);
end;
function TMyClass.GetEditor(editorBaseType: System.Type): TObject;
begin
Result := TypeDescriptor.GetEditor(Self, editorBaseType, true);
end;
function TMyClass.GetEvents: EventDescriptorCollection;
begin
Result := TypeDescriptor.GetEvents(Self, true);
end;
function TMyClass.GetEvents(
attributes: TArrayOfAttribute): EventDescriptorCollection;
begin
Result := TypeDescriptor.GetEvents(Self, attributes, true);
end;
function TMyClass.GetProperties: PropertyDescriptorCollection;
begin
Result := TypeDescriptor.GetProperties(Self, true);
end;
function TMyClass.GetPropertyOwner(pd: PropertyDescriptor): TObject;
begin
Result := Self;
end;
I dont understand what is this. Can anybody helps me , how can i
subclassing PropertyDescriptor class correctly ??
Even we take an error when using delphi.net , we dont take any error
message using c#,
i want change the display name of the property which is the added to my
special class by using the propertyGrid Component ...
It's seems like DisplayNameAttirubute of the .net Framework 2.0
With My Best Regards,
Thanks For Helping
- 9
- 10
- Visual C#.Net >> Controlling ObjectsGiven following code to instantiate object, how does one:
1) check a specific objects health - running, dead etc.
2) call a method in a specific object in the multiple object set
3) terminate a specific object
foreach ( DataRow ConfigRow in DSWTG.Tables["TurbineConfiguration"].Rows )
{
switch ( ConfigRow["Turbine Type"].ToString())
{
case "V47":
// instantiate a new turbine
VestasWTG V47 = new VestasWTG( TagNameRow, ConfigRow);
break;
default:
break;
}
}
- 11
- Visual C#.Net >> Problem with OnKeyPress override...Hello all,
I am working on a project using Windows Forms, and I ran into a bit of a
snag... I need to be able to use keystrokes as shortcuts in the program,
and I currently accomplish it using the following:
-----[ Begin code snip ]-----
protected override void OnKeyPress (KeyPressEventArgs e) {
switch (e.KeyChar) {
case 'b':
e.Handled = true;
mnuNavigationBack.PerformClick();
break;
case 'f':
e.Handled = true;
mnuNavigationForward.PerformClick();
break;
default:
break;
}
base.OnKeyPress(e);
}
-----[ End code snip ]-----
Everything works great until the user opens another window (such as say
an About dialog or a MessageBox)... Once the other dialog is opened,
closed, and the focus is redirected back to the main form, the
keypresses are no longer registered with the main form...
Does anyone know why this would happen?
I searched through the list archives via groups.google.com, and couldnt
find anything referring to anything close to this...
Any advice would be much appreciated.
Thanks!
- 12
- Visual C#.Net >> Clearing textboxes..hi there, i am writing a program with LOTS of textboxes in it.. my problem
is when i try to clean the textboxes with foreach it gives error.. heres how
my code looks like:
private void ClearText ()
{
foreach (textbox t in this.controls)
{
t.text = ""
}
}
but it doesnt work! it was working quite good on visual basic.net but this
code seems not working with c#?!
- 13
- Winforms >> How to show controls without form?Hi
Once I saw the example application in VC where the controls was show without
form. Maybe somebody know how to do this in DotNet?
If my memory is good :) VC application use Win32 functions to do this.
regards
kuba florczyk
- 14
- Winforms >> Modal forms, Owner property and minimization behaviourHi everybody,
I believe something weird is happening with my windows forms desktop
application. I have a main form (Form1, shown using Application.Run)
and this main form opens a modal form (Form2), using ShowDialog(this)
so that the owner of Form2 is Form1. Form2 does the same thing with
Form3 (ie, Form2 opens Form3 modally, using showDialog(this.Owner), so
that the owner of Form3 is Form1 too. Form3, once more, opens Form4
passing a reference to Form1 in the owner parameter of showDialog.
The weird thing happens now: Form4 has a button that minimizes the
application when clicked by setting Form1.WindowsState to Minimized.
When Form1 is minimized, all its 3 owned forms are minimized too. 'til
this point, everything's fine, but when Form1 is restored, only Form1
itself appear and I can freelly use it. The other modal windows do not
come back with Form1. Indeed, after some debugging I realized they were
being closed just after form1's minimization. Is this really the
expected behaviour?
What I need to do is to minimize the application and when the user
restores it, all 4 forms are shown as before minimizing. Is there any
way I can accomplish this? The reason for that is that in the real
application, the last form has a functionality to start another process
and I want the hole app to minimize so that the user can work with the
just-started application. After finishing work, the user should be able
to go back and restore the first application to continue working.
Thanks and sorry for the long post.
Daniel.
- 15
- Visual C#.Net >> The 7 Jewish Feasts Of The LORDFor a video presentation (at the most ten seconds), please refer to
http://icanearn.com/religion/the-7-jewish-feasts-of-the-lord/
Please do not forget to click the advertisement at the end of the
presentation. For each click, US$0.01 is rewarded to a brother in
Christ. See as many times as possible. Thank you.
LEVITICUS 23
The LORD spoke again to Moses, saying,
2 "Speak to the sons of Israel and say to them, "The LORD'S appointed
times which you shall proclaim as holy convocations -- My appointed
times are these:
3 "For six days work may be done, but on the seventh day there is a
sabbath of complete rest, a holy convocation. You shall not do any
work; it is a sabbath to the LORD in all your dwellings.
THE FEASTS OF THE LORD
4 "These are the appointed times of the LORD, holy convocations which
you shall proclaim at the times appointed for them.
1. The Feast Of The LORD (Passover)
5 "In the first month, on the fourteenth day of the month at twilight
is the LORD'S Passover.
2. The Feast Of The LORD (Unleavened Bread)
6 "Then on the fifteenth day of the same month there is the Feast of
Unleavened bread to the LORD; for seven days you shall eat unleavened
bread.
7 "On the first day you shall have a holy convocation; you shall not
do any laborious work.
8 "But for seven days you shall present an offering by fire to the
LORD. On the seventh day is a holy convocation; you shall not do any
laborious work.'"
3. The Feast Of The LORD (First Fruits)
9 Then the LORD spoke to Moses, saying,
10 "Speak to the sons of Israel and say to them, "When you enter the
land which I am going to give to you and reap its harvest, then you
shall bring in the sheaf of the first fruits of your harvest to the
priest.
11 "He shall wave the sheaf before the LORD for you to be accepted; on
the day after the sabbath the priest shall wave it.
12 "Now on the day when you wave the sheaf, you shall offer a male
lamb one year old without defect for a burnt offering to the LORD.
13 "Its grain offering shall then be two-tenths of an ephah of fine
flour mixed with oil, an offering by fire to the LORD for a soothing
aroma, with its drink offering, a fourth of a hin of wine.
14 "Until this same day, until you have brought in the offering of
your God, you shall eat neither bread nor roasted grain nor new
growth. It is to be a perpetual statute throughout your generations in
all your dwelling places.
4. The Feast Of The LORD ([Pentecost)
15 "You shall also count for yourselves from the day after the
sabbath, from the day when you brought in the sheaf of the wave
offering; there shall be seven complete sabbaths.
16 "You shall count fifty days to the day after the seventh sabbath;
then you shall present a new grain offering to the LORD.
17 "You shall bring in from your dwelling places two loaves of bread
for a wave offering, made of two-tenths of an ephah; they shall be of
a fine flour, baked with leaven as first fruits to the LORD.
18 "Along with the bread you shall present seven one year old male
lambs without defect, and a bull of the herd and two rams; they are to
be a burnt offering to the LORD, with their grain offering and their
drink offerings, an offering by fire of a soothing aroma to the LORD.
19 "You shall also offer one male goat for a sin offering and two male
lambs one year old for a sacrifice of peace offerings.
20 "The priest shall then wave them with the bread of the first fruits
for a wave offering with two lambs before the LORD; they are to be
holy to the LORD for the priest.
21 "On this same day you shall make a proclamation as well; you are to
have a holy convocation. You shall do no laborious work. It is to be a
perpetual statute in all your dwelling places throughout your
generations.
22 "When you reap the harvest of your land, moreover, you shall not
reap to the very corners of your field nor gather the gleaning of your
harvest; you are to leave them for the needy and the alien. I am the
LORD your God.'"
5. The Feast Of The LORD (Trumpets)
23 Again the LORD spoke to Moses, saying,
24 "Speak to the sons of Israel, saying, "In the seventh month on the
first of the month you shall have a rest, a reminder by blowing of
trumpets, a holy convocation.
25 "You shall not do any laborious work, but you shall present an
offering by fire to the LORD.'"
6. The Feast Of The LORD (Day Of Atonement)
26 The LORD spoke to Moses, saying,
27 "On exactly the tenth day of this seventh month is the day of
atonement; it shall be a holy convocation for you, and you shall
humble your souls and present an offering by fire to the LORD.
28 "You shall not do any work on this same day, for it is a day of
atonement, to make atonement on your behalf before the LORD your God.
29 "If there is any person who will not humble himself on this same
day, he shall be cut off from his people.
30 "As for any person who does any work on this same day, that person
I will destroy from among his people.
31 "You shall do no work at all. It is to be a perpetual statute
throughout your generations in all your dwelling places.
32 "It is to be a sabbath of complete rest to you, and you shall
humble your souls; on the ninth of the month at evening, from evening
until evening you shall keep your sabbath."
7. The Feast Of The LORD (Tabernacles)
33 Again the LORD spoke to Moses, saying,
34 "Speak to the sons of Israel, saying, "On the fifteenth of this
seventh month is the Feast of Booths for seven days to the LORD.
35 "On the first day is a holy convocation; you shall do no laborious
work of any kind.
36 "For seven days you shall present an offering by fire to the LORD.
On the eighth day you shall have a holy convocation and present an
offering by fire to the LORD; it is an assembly. You shall do no
laborious work.
37 "These are the appointed times of the LORD which you shall proclaim
as holy convocations, to present offerings by fire to the LORD -- burnt
offerings and grain offerings, sacrifices and drink offerings, each
day's matter on its own day -
38 besides those of the sabbaths of the LORD, and besides your gifts
and besides all your votive and freewill offerings, which you give to
the LORD.
39 "On exactly the fifteenth day of the seventh month, when you have
gathered in the crops of the land, you shall celebrate the feast of
the LORD for seven days, with a rest on the first day and a rest on
the eighth day.
40 "Now on the first day you shall take for yourselves the foliage of
beautiful trees, palm branches and boughs of leafy trees and willows
of the brook, and you shall rejoice before the LORD your God for seven
days.
41 "You shall thus celebrate it as a feast to the LORD for seven days
in the year. It shall be a perpetual statute throughout your
generations; you shall celebrate it in the seventh month.
42 "You shall live in booths for seven days; all the native-born in
Israel shall live in booths,
43 so that your generations may know that I had the sons of Israel
live in booths when I brought them out from the land of Egypt. I am
the LORD your God.'"
44 So Moses declared to the sons of Israel the appointed times of the
LORD.
NASU
|
|
|