| Thread | Last Post | Replies |
|
| compare/check character against an array of chars - best practice? | 14 Nov 2006 00:28 GMT | 3 |
The procedure below checks if a character entered into a cell of a datagridview is contained in a string array of valid characters for this particular cell. It seems kludgy. I am asking what the best practice would be. I was thinking I could use an arrayList which has the ...
|
| Output Directory | 13 Nov 2006 22:20 GMT | 1 |
I have created a new app using VB.NET Express on Windows XP Pro SP2. I am trying to import a 'split' Access 2003 (Northwind converted to 2003 and splitted) DB. I have used the 'Add existing item' to bring the DB into the Solution. I then populate the standard form with the ...
|
| Getting an objects name from within a class | 13 Nov 2006 22:09 GMT | 7 |
This is probably a very simple question but... How do I get the instantiated name of an object from within the class? Example: Sub main
|
| System.Timers.Timer, thread synchronization issues | 13 Nov 2006 21:07 GMT | 5 |
I have a class that instantiates two Timer objects that fire at different intervals. My class can be instantiated within a Windows Form or from a Windows Service. Actions performed by one of the event handlers may take longer than the interval for either of the timers,
|
| Systemwide-HotKey | 13 Nov 2006 20:28 GMT | 1 |
Can anybody suggest a very simple system-wide hotkey? A bit of Example code is what I am looking for Thanks in advance Farhana
|
| add new line in messagebox text - not using VbCrLf - how? | 13 Nov 2006 20:01 GMT | 2 |
Is it possible to add a new line to the text for a message box like html "this is msg1 <br> this is msg2" versus "this is msg1" & VbCrLf & "this is msg2?
|
| A Question on Arrays. | 13 Nov 2006 19:53 GMT | 9 |
I am kinda new to VB 6.0. Is the line of code Private strCol(62, 2) As String declares a three dimensional array? Because in the code it is being used as
|
| How do I add a c++ library to my vb.net project? | 13 Nov 2006 19:34 GMT | 4 |
Okay, this is a pretty basic question. I've created a static library using c++. Now, I've started a vb.net project. How do I reference the functions in the static library? I'm using Visual Studio 2005. I.E., how do I add the library to the project, and call it's functions?
|
| Creating an array of textbox objects | 13 Nov 2006 17:29 GMT | 4 |
I am working on a project where I have a set of textboxs and some butons and I would like to have a way of keeping the textboxes using an array to make easier my data input. THis is what I am trying to do:
|
| Transparent Label | 13 Nov 2006 16:57 GMT | 1 |
I'm a recent convert to VB.Net from VB6...and I'm surprised you can make labels transparent. Is there an easy way to accomplish this? Thanks
|
| Don't see application events | 13 Nov 2006 16:50 GMT | 3 |
I have an app that was upgraded to vb 2005 from vb 2003. In 2003 there was no file applicationevents.vb. I got a copy of a sample file from ms and added it to the project, however when i'm in the code window and try to get application events, the dropdown list for the available ...
|
| how to detect file download in IE | 13 Nov 2006 16:48 GMT | 1 |
I'm trying to develop a small inhouse file download tool I need to detect all files downloaded from internetexplorer and display a custom interface i.e. when ever the user tries to download a file from IE, then a custom .net
|
| Problem calling multiple web services | 13 Nov 2006 16:46 GMT | 1 |
I have an app that needs to call the same web service which will be located on multiple machines. The web service is identical on each. I find that despite the fact I have changed the url of the webservice to point to each machine before I make the call (single threaded for now), ...
|
| Insert | 13 Nov 2006 16:34 GMT | 4 |
Thank you in advance. I am trying to insert into two tables but I am getting the following error: "You cannot add or change a record because a related record is required in table..." I am not sure why this is happening since I am using transactions. Below is the code I am using.
|
| question about variables and subprocedure | 13 Nov 2006 16:33 GMT | 2 |
How have i to define variable 'a' in procedure 'Page_Load" in order to be accessible in procedure "mysub()"? Thanks Britt
|