| Thread | Last Post | Replies |
|
| GUID from SQL Uniqueidentifier -> Empty?! | 08 Sep 2005 16:50 GMT | 1 |
I've got a stored procedure that takes a few parameters as input parameters, and one output parameter (a uniqueidentifier). After the stored procedure call, I need to return that output parameter in a System.Guid object.
|
| Threading Vs. Delegates | 08 Sep 2005 16:43 GMT | 4 |
I was recently struggling to adapt an example I have using delegate methods, IasynResult and AsynCallback. Doing a little research I came across an example, which in fact was being used to return data from an external sql database...exactly what I am doing.
|
| Exiting an Application on start-up | 08 Sep 2005 16:27 GMT | 3 |
I have created an application with two forms, the main form and a login form that allows the user to supply a username and password. In my main form initialisation i have the following: Sub InitializeForm()
|
| Serialization of Application Settings password | 08 Sep 2005 16:13 GMT | 1 |
I am using the application settings example @ http://msdn.microsoft.com/msdnmag/issues/05/04/AdvancedBasics/default.aspx . My application needs to save a user name and password in encrypted format into the XML settings file. I modified the settings.vb class to include code
|
| Project.Forms.Count()???? | 08 Sep 2005 15:50 GMT | 4 |
hello, i need to know if theres a way of doing that... some way of getting the number of forms, that a windows application contains... i need to browse all the forms. and make a list of all the forms... thanks!!!
|
| vb.net forms properties | 08 Sep 2005 15:24 GMT | 2 |
I'm a newbie to vb.net (I'm used to vb6.0/MSaccess) so help! I've built a form and need to set some code for "On Load" but I don't see it in the properties. Must I hard code this? Thanks! brian
|
| Alphabetize the contents of a text file | 08 Sep 2005 15:21 GMT | 2 |
I have a text file like so: ben amy jerry
|
| Reading from a comma delimeted file in vb.net | 08 Sep 2005 15:04 GMT | 1 |
I am trying to read from a comma delimeted file in vb.net. Following is an example of a line in the file. I am using the streamreader.readline function and have been successful at reading the first line. What is the easiest way to break this line up so each field is seperate?
|
| Form looses graphics after loosing focus | 08 Sep 2005 14:35 GMT | 2 |
I am using vb.net. On a form i have a picture box and i draw points, lines, arcs etc in it. When i minimize the form and then maximize it again or if the form looses the focus for any reason
|
| Unloading a DLL to update it. | 08 Sep 2005 14:13 GMT | 5 |
I have done some searches on this and have found Herfrieds suggestions on opening the DLL in a different appDomain. I have not done this before and am curious on the consequences. Below is the code I am currently using, but it locks the dll. <STAThread()> _ Public Shared Sub ...
|
| Running a form in another thread | 08 Sep 2005 14:05 GMT | 2 |
I'm creating a form using the NativeWindow class to process some custom messages. Unfortunately as it's created on the main thread of the application it doesnt recieve messages while the thread is busy. So I'm trying to create it on a separate thread. I can do this but the ...
|
| Installation path of deployment app | 08 Sep 2005 13:42 GMT | 5 |
I have a project with a deployment project. All works GREAT !!! Is there a system variable (maybe via the dot net framework I'm assuming) that stores the installation path of the app, assuming the end-user changes
|
| I want to call a function in server side from the client side | 08 Sep 2005 13:14 GMT | 2 |
Am having 2 dropdowns in a grid. Based on the value selected in one grid the value in the other grid will get populated. Each and every selected index change event of the first grid the page gets submitted and populates the second grid. Can I do it by calling the same function ...
|
| problem with AddRange and Combobox | 08 Sep 2005 11:56 GMT | 5 |
I don't know how to specify the display and value field for a combobox when using AddRange to fill the combo. Here is what I have so far: -A function to build an array of object :
|
| FileListBox | 08 Sep 2005 11:30 GMT | 1 |
I'm an experienced VB6 programmer, but using VB.net for the first time. I'm trying to set up a FileListBox, and having trouble getting the control to display the files that are in the directory that is selected in the DirListBox control. I've done the following:
|