Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008


all groups > dotnet general > september 2005 > threads for friday september 30

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

UPD in VB.NET
Posted by ninadsd NO[at]SPAM gmail.com at 9/30/2005 11:27:00 PM
I have the following VB6 code ------------------------------------- Option Explicit Const ByteCode =3D "=FF=FF=FF=FF" Private Sub Form_Load() wsk.Protocol =3D sckUDPProtocol wsk.RemoteHost =3D "255.255.255.255" wsk.RemotePort =3D 27015 wsk.SendData ByteCode & "infostring"...more >>

LIKE and IN expressions in parameter queries
Posted by Rob Oldfield at 9/30/2005 5:26:04 PM
Does anyone have any idea how to do this? I want to pass a select command a parameter and just use that as a LIKE/IN comparison with my SQL data. Thanks ...more >>

Icon with drop down.
Posted by Jon Turlington at 9/30/2005 4:07:30 PM
My company is creating a new IEAK but how do we create the icon like the mail icon that has a drop down. I have searched endlessly and finally resorted to posting my own question. Does anyone know? ...more >>

Delegates/Messaging Uncoupling Threaded Applications
Posted by James Smyth at 9/30/2005 3:37:06 PM
I currently have a .NET Form application which has a seperate thread invoking delegates of the MainForm in order to have the main thread update the form's controls. I would like to move the secondary thread's behavior into another class, eg. MyClass, but I would like MyClass to be complete...more >>

General question about use of ports when programming with sockets
Posted by 0to60 at 9/30/2005 3:26:43 PM
I have a question about socket programming in general. Exactly what happens behind the scenes when I one socket connects to a different socket in listen mode? Using the dotnet framework, I create a socket, bind it to a port, put it in listen mode, and then n sockets can connect to it. The co...more >>

plug-in architecture problem
Posted by Oleg Yevteyev at 9/30/2005 3:03:41 PM
Trying to implement a plug-in architecture and to load my assembly in run time by calling System.Reflection.Assembly.Load method. There are two assemblies - I'd call one "plugin" and another is "common" and the "plugin" depends on "common". there were two separate projects - one for each assem...more >>

Custom collection design/style opinion requested
Posted by Chris Dunaway at 9/30/2005 12:08:36 PM
VB.Net: I have create a custom collection to hold instances of my custom class. The collection has an Item property which is set as the default property. I can use code such as this to retrieve an item by index or key: Dim MyInst As MyCustomClass = MyColl("key") My question is how shoul...more >>

Obtain a MAC address from a connected socket
Posted by Jeronimo Bertran at 9/30/2005 11:39:11 AM
Hello, We have developed a socket tcpip server in .net that accepts calls from clients. Using the connected socket we are able to use the Socket.RemoteEndPoint to obtain the IP address of the client. Is there any way to obtain the MAC address for the client? Thanks Jeronimo...more >>



Two services with similar names can't run at same time
Posted by John Bailo at 9/30/2005 9:56:08 AM
I developed a windows service, called x.exe Then I created a variant called x.c.exe I installed both on a target machine. If I start x.exe, then x.c.exe won't start. If I start x.c.exe, then x.exe won't start. Is .NET having trouble distinguishing these services? Do I need to d...more >>

Converting VS6 C++ to .NET Solutions
Posted by j.a. harriman at 9/30/2005 9:45:05 AM
Hi, On MSDN I know there is a JScript example (Upgrading Visual C++ Projects to Visual Studio .NET in Batch Mode) to upgrade VS6 C++ projects to .NET solutions. It converts the project files (*.dsp), but doesn't create the solution (*.sln) file. Is there an automated way to convert an ...more >>

360 .NET
Posted by John Bailo at 9/30/2005 9:42:12 AM
Can I develop in .NET for the Xbox 360 computer? ...more >>

How to dynamically enable a control and refresh it into the taborder
Posted by kea at 9/30/2005 9:39:35 AM
I have a checkbox and a textbox in a continuous taborder on a form along with a bunch of other controls. The textbox is disabled. When I leave the checkbox I want to enable the textbox and move the focus to it (only if the checkbox.checked=true). So on the checkbox Leave-event i do the follo...more >>

Microsoft Office Automation
Posted by Raju Joseph at 9/30/2005 8:56:47 AM
Hi All, We have a module that needs to automate word 2000 for certain added functionality. I have successfully created the component to do this. Basically I start word using a statement like _word = New Word.Application Then I proceed to sink the word events that I need. Once everyth...more >>

enabling\disabling a radiobutton
Posted by Leonard at 9/30/2005 7:47:06 AM
I have several radio buttons for the user to choose from. I need to enable or disable a particular radio button, depending on a certain condition. How can I do this? Thanks, Leonard...more >>

SQL SERVER Connection Problem II
Posted by Niyazi at 9/30/2005 5:56:09 AM
Hi, I can connect using my PC local SQL Server Enterprise manager to Remote SQL Server. But I cannot connect using my Connection string? strConn = "Data Source=190.168.0.97,1433;Network Library=DBMSSOCN;Initial Catalog=DBANK;User ID=myID;Password=myPASSWORD;" Does anyone knows any idea...more >>

System.GetType returns null
Posted by audipen at 9/30/2005 3:09:28 AM
I have a problem with System.Type.GetType method. If you try out the following code in C# console app .. System.Type t = System.Type.GetType("System.DateTime"); System.Type t1 = System.Type.GetType("DateTime"); t is set to the appropriate Type object but the second call returns null (when...more >>

Pasting into Outlook Express from the C# application..
Posted by geo24 at 9/30/2005 2:38:09 AM
Hi, how about C# app that copies some data (text or pictures) into the clipboard and then pastes them into new message opened in OE? Is something like that possible? ...more >>

app.config for exe file
Posted by bic at 9/30/2005 1:15:01 AM
I copied my app.config into the bin folder and tried to deploy both the .exe and app.config file so my user will be able to change values such as connectionstr settings. But I can't get the app.config to work unless I change the one inside the solution. How can I make the app.config work o...more >>

Convert MFC 6.0 static libraries to managed application
Posted by Dani Peer at 9/30/2005 12:27:16 AM
Hi, We have few MFC 6.0 applications that are using many static libraries that are basically our infrastructure. Now we want to develop in C#, and we don't want to redesign all the infrastructure, that basically the libs are also using dependencies between them. From where to start ? and sugg...more >>


DevelopmentNow Blog