| Thread | Last Post | Replies |
|
| Environment Variables Go "Poof" | 07 Mar 2008 20:44 GMT | 17 |
I'm trying to set an environment variable programmatically. I've added these three lines to my code: System.Environment.SetEnvironmentVariable("TCS", "C:\Program Files\TCS\") InstallPath = System.Environment.GetEnvironmentVariable("TCS")
|
| System.Windows.Forms.Form_Load() calls Application.Exit and Form flashes? | 07 Mar 2008 19:00 GMT | 4 |
I have a GUI that is contained in a Class which Inherits SystemWindows.Forms.Form. The Private Sub _Load() runs a few checks on command arguments and in some cases calls Application.Exit after an error message is output in a MsgBox().
|
| Sending POST form with WebBrowser | 07 Mar 2008 16:30 GMT | 5 |
After a brief Google session, I can only find the following: 1. Instructions for pre-.NET VB 2. Other IE controls I need to send a POST form with the web browser control: I need to do it
|
| Inheritance Trouble | 07 Mar 2008 14:03 GMT | 2 |
I created an application that had its own database access class library loaded with objects. I've now created another application that needs a DBA library that uses some of the same objects as the other. I created the application, the second DBA and referenced the
|
| Object Ref vs Delegate | 07 Mar 2008 12:33 GMT | 4 |
Greetings all, Obviously I have a question. I have a set of classes in an N-tiered environment (based on an older version of Rockford Lhotka's CSLA architecture) and have a situation where I need to notify a parent
|
| Error Handling in Declarations Section | 07 Mar 2008 09:48 GMT | 4 |
I have written an application in which I am using a third party control. I have declared the control using a DIM statement in the Declarations Section of the application, so that it is available to all functions and sub-routines in the application. Everything works
|
| keybd_event ! | 07 Mar 2008 08:19 GMT | 4 |
Hi all, hope someone can help here. I have a couple of problems with the keybd_event routine in VB.Net for a portable application, either PPC2003 or WM5, the results are the same. The following code takes a text string (dat) and sends the output to the cursor.
|
| Save Microsoft Access database OLE Objects (jpegs) to disk via VB. | 07 Mar 2008 06:19 GMT | 6 |
I have an Access database with a table named 'tblMedia'. In tblMedia I have a field named 'Media' that is defined as an 'OLE Ojbect' field. In this Media field, I have pictures, they are jpegs. I'm using VB.NET 2005 and I would like to open the Access database and write the OLE ...
|
| search using one or more fields | 07 Mar 2008 05:14 GMT | 3 |
i'm new to this language. i'm creating a system using vb.net as front end and mysql as my back end. can anyone give me a code sample on how to search a particular client in my system using one field OR two fields OR three Or either of the six. i'm using
|
| combobox | 07 Mar 2008 04:46 GMT | 9 |
how can i make a combobox that can store or add additional fields?
|
| Anonymous Type. How to solve this? | 07 Mar 2008 04:43 GMT | 3 |
I am getting a anonymous type from Linq Query inside a function. How can I return the obtained values and use them outside the function? Do I need to create a new class?
|
| Writing a correct function | 07 Mar 2008 04:32 GMT | 6 |
How can i write a correct function: If i write a function as this: Public Function BatterList (ByRef port as integer) as ImageList Dim image1 as image return image1
|
| Execute a stored procedure from Visual Basic 2008 express | 07 Mar 2008 04:20 GMT | 2 |
Hi, sorry for what will most likely be seen as a noob question, but here we go. in SQL 2000 i have a Stored Proc, (lets call it sp_xxx) this stored proc requires three pramaters to run as shown below,
|
| How to edit a vbproj file | 07 Mar 2008 01:44 GMT | 2 |
I have a solution that contains a bunch of VB projects. I need to edit the text of the vbproj files to fiddle with build events in a way that the IDE doesn't let me do directly. Is there any way to ask the IDE to open the text of a vbproj file that is part of the solution I'm ...
|
| Possible to ignore base class event handler? | 06 Mar 2008 21:10 GMT | 9 |
I have this form Form_Report_Vacations which is inherited from Form_Report_Shifts. Form_Report_Shifts contains an event handler for a button named cmd_Show.
|