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
all groups > vb.net > january 2005 > threads for saturday january 15

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 31

Events in Console programs?
Posted by Terry Olsen at 1/15/2005 11:49:27 PM
Can console programs do events? Or are they strictly linear programs? ...more >>


Looking for feedback on some socket code
Posted by Terry Olsen at 1/15/2005 11:31:21 PM
http://boycot.no-ip.com/vb/clsListener.htm I've been struggling with coding Sockets in VB (not as easy as it would seem coming over from VB6). Anyhow, finally got something working and looking for any suggestions on how to make it better. Thanks. ...more >>

Windows Service Question
Posted by Jm at 1/15/2005 10:30:25 PM
Hi all Im writing a windows service app that accepts some remote control commands and reports to a database server. One command i would like to use is basically remote execution. When i start a program from the windows service it appears to launch under another user other than who is logged in...more >>

Can Setup.exe automatically start my .exe file?
Posted by joisey NO[at]SPAM mindspring.com at 1/15/2005 10:07:07 PM
I am new to Visual Basic.Net using the Standard Edition, which does not come with a Deployment wizard, so I use the template on the File Systems Tab. Everything works fine, and I have enabled the following (Where "MyProgram.exe" is my new VB,net creation) When the user runs Setup.exe, he is ...more >>

Folder Browser
Posted by Dennis at 1/15/2005 9:55:02 PM
I am looking for a custom control that acts like the FileBrowser Dialog but instead diaplays the files for browsing in a TreeView type control. I don't want a Dialog but a control that is always visible. -- Dennis in Houston...more >>

Can one form contain another as a control?
Posted by EdB at 1/15/2005 9:05:05 PM
Here's what I'm going for. I have an edit form to be used when adding new entries. What I am envisioning for the search/edit process would be a form that would have filtering text & combo boxes along the top, a TreeView control along the left to list all entries that match the filter, then...more >>

ToolTips On Buttons
Posted by Ken Kazinski at 1/15/2005 8:47:02 PM
How do you set the tool tip property on a button. This was easy in VB6. Here is the code I am trying to use. Dim toolTip1 As New ToolTip() ' Set up the delays for the ToolTip. toolTip1.AutoPopDelay = 500 toolTip1.InitialDelay = 100 toolTip1.ReshowDelay = 50 ' Force the ToolTip text t...more >>

Elusive Bug
Posted by GrandpaB at 1/15/2005 8:28:41 PM
I have a baffling application bug. Any clues you could offer to help me squash this bug would be greatly appreciated. My application saves the contents of the form, as an object to arrayList. The form contains buttons so that I can navigate through all the objects and also add and del...more >>



How to detect a remote socket termination?
Posted by Terry Olsen at 1/15/2005 7:32:09 PM
I have my socket program working...I can send & receive data, I can terminate the connection, etc. But I can't figure out how to tell if the remote client has disconnected. I tried using Socket.Connected but it continues to return TRUE even when the remote client has closed the connection....more >>

System.Security.Permissions.SecurityPermission
Posted by Adrian at 1/15/2005 7:28:39 PM
Hi I'm trying to write an ActiveX replacement in VB.Net the following link was my starting point. http://www.vbdotnetheaven.com/Code/Jun2003/2067.asp All was going well until I tried accessing a com object local on the PC (the ActiveX is served from a web server) The Error I ...more >>

Forms and Screen Size
Posted by Dennis at 1/15/2005 6:30:28 PM
I have a form on which I have two controls, one docked to the left and the other docked to the right in a window that is Maximized. I developed the application on one computer which has a screen size of 1024 x 768. When I run it on the other with 800 x 640, the right control doesn't resize t...more >>

ADO itterate datatable & delete row
Posted by Doug Versch at 1/15/2005 6:29:10 PM
Hi, I am trying to itterate through a datatable and delete selected rows but I get an error stating that the collection has changed when the row is deleted. Try For Each drOrds In dsRecPurchs.Tables("PurchaseRecpts").Rows If cBool(drOrds("Uploaded")) then drOrds.Delete En...more >>

Accessing COMports in VB.NET (including COM24!)
Posted by Scott H at 1/15/2005 6:02:10 PM
I've downloaded a Dot Net assembly DLL and a Class that can both be used to access COMports from VB.NET I've used the Class before in another project, using COM2, but I now want to access COM24, which on my PC is a Bluetooth COM port, and it just won't open the port. If I use Hyperterminal ...more >>

Windows Form upload data file by HTTP POST
Posted by Jason Ho at 1/15/2005 6:01:10 PM
Hi, I would like to send a jpg file to a HTTP server by POST request. But I am not using a browser to do this, I use a Windows Form instead. I know how to send typical request by POST with code below. But I don't know how to encode the data file so the server can be recognized. 1 ) Tradi...more >>

VB.Net & WMI System.Management in VB 2005 Express Ed. Beta
Posted by Dominic Marks at 1/15/2005 4:38:21 PM
Hello All, Hope this is the correct group, here goes: I'm looking into writing a small application to interface with WMI, and downloaded the Express Edition Beta of Visual Basic 2005 to see how feasible it is. I've learnt so far that I need access to the System.Management namespace. In m...more >>

Searching file on disk
Posted by Jovo Mirkovic at 1/15/2005 3:45:18 PM
Hi, How I can find all files on my disk which meets next criteria: - it is Word doc - it is smaller then 100K - Author = "John Smith" - DocType = "test" <- Custom properties Thanks, Jovo *** Sent via Developersdex http://www.developersdex.com *** Don't just participat...more >>

MDI with multiple child forms Q
Posted by Martin Williams at 1/15/2005 2:06:38 PM
I'm developing a survey program. Currently, I have the parent form and the survey which consists of three forms. As the user moves from one "page" or form to the next, I would like to allow the user to go back and correct any entries. Ideally, I would like to just hide one form as the user mov...more >>

get reference of the containing form
Posted by Neo at 1/15/2005 1:57:56 PM
I am trying to create a custom control, & in this control i need to access the form where this control is added. How can i do this. - I tried to accept a new parameter in the constructor of this new control, but then i can't drop the control onto the form. - I don't want to drop the control o...more >>

Multiple MDI Child Icons and Control Boxes Why??
Posted by Siv at 1/15/2005 1:57:18 PM
Hi, I have an MDI application that uses a generic "ShowPage" routine in a = module that is called when I want to display a child form. The basic = idea is that in the module I have declared each form as follows: Friend F0 As frmMain Friend F1 As frmStart Friend F2 As frmSearch Then in my S...more >>

Has you been able to use dataadapter.fill() in VS 2005?
Posted by Brett at 1/15/2005 1:00:56 PM
Has any one been able to use the dataadapter.fill() method in VS .NET 2005? I keep getting a method not supported error. However, the docs say this is supported in .NET 2.0. Thanks, Brett ...more >>

Network Share Permissions
Posted by Shallotx at 1/15/2005 11:21:02 AM
I am working on a database imaging application. Links to the images are stored in the database and accessed via a shared network drive. This network share is mapped when the user logs on to Windows (using XP), and they have “read” access only. My challenge is I need the application to...more >>

IDE problem in vs 2003
Posted by Sam Marrocco at 1/15/2005 11:17:41 AM
I'm having a problem while writing code in the IDE for VB.NET 2003. All is fine, then suddenly the IDE stops auto-indenting code, doesn't "squiggly-underline" typos, and in general stops handling the text in a "dynamic" fashion (as you type it and hit return). Clicking in any of the Tasks or...more >>

ManagementObject and QueryCollection Error
Posted by Dennis at 1/15/2005 8:45:05 AM
I have the following code that works fine on my Development Computer but not on my other computer. Both Computers are running Windows XP Pro and both have .netFramework 1.1 installed. The last line of code on my other computer gives me an error "Item set to Null", probably because the Quer...more >>

VS .Net 2003 freezes problem
Posted by Tomislav Bartolin at 1/15/2005 1:10:34 AM
Hi all, I have a problem starting debugging my application from Visual Studio .Net 2003 IDE. The solution consists of 10 VB.Net projects which include class libraries, web application, setup projects and an exe entry application. When I run the application, solution builds successfuly but the...more >>


DevelopmentNow Blog