| Thread | Last Post | Replies |
|
| Looping | 10 Feb 2005 14:17 GMT | 5 |
I have a form with 10 fields on (textboxes) they are control arrays. I am using this code to scan through them all and check they are not empty: For Each ctl In Me.Controls If TypeOf ctl Is TextBox Then
|
| Network share | 10 Feb 2005 13:23 GMT | 2 |
I am the PC tech for a number of computer labs at a college. We have VB.net installed but have an issue with trusted sources. All the students Home directories are a mapped drive on a Novell server. All user accounts in the labs are volitile so the option of setting their home
|
| File | 10 Feb 2005 13:16 GMT | 6 |
How do you create new file in a directory? For example in C:\TV\Programs I am using: Open "C:\TV\Programs\filename.txt" for output as #1
|
| Form Creation in a Module. | 10 Feb 2005 13:08 GMT | 4 |
Is it possible to create a Form during runtime in a Class Module? If so, how would one do this so that one could place a contol (ex Radio Button) on the form. Thanks in advance.
|
| How to over come duplication error when storing from diff nodes | 10 Feb 2005 13:03 GMT | 1 |
I tried to update a record from 2 diff nodes to a single table. i generate nos for the primary key field at the time of save operation, when the 2 users click save button at the same time the nos generated are also same and i come up with a duplication error.
|
| Scroll bars on Forms | 10 Feb 2005 12:55 GMT | 1 |
I have several forms in a program that are rather long. If the resolution of the monitor or size of the moniter is right, users can see the whole form. If the resolution is set too high then half the form is not on the screen. I can resize the form, I still cannot see the ...
|
| Catching a keypress twice in a row | 10 Feb 2005 12:11 GMT | 6 |
I would like to catch a double keypress with very short time in between almost like a double_keypress event The sub below works but I seem to have problem to get the time shorter, even if I use 0.5 it feels close to a second which is far too long.
|
| Timer Control | 10 Feb 2005 10:19 GMT | 2 |
I've got my application for Blackjack up and running (part of a home study course) What I would like to do is have a short pause in between the dealer turning over his first card and any subsequent cards
|
| Application Deployment in vb.net | 10 Feb 2005 08:06 GMT | 1 |
When I build the deployment project for an application everything works. However, the two files instmsia.exe and instmsiw.exe do not appear with the setup files. I may be installing this on machines that will require them. Can someone please let me know how to rectify this. ...
|
| Debugging Exceptions caused by a VB program | 10 Feb 2005 07:51 GMT | 2 |
An application of mine will often cause an exception and crash (when running from the EXE file) at a certain point of the program (a user logs out and another user logs in). That part of the program makes heavy use of timers.
|
| VB Standard vs. Professional | 10 Feb 2005 06:20 GMT | 7 |
What is the difference between VB Standard (standalone) and the version that is included in the Visual Studio Pro package (VB Professional). Also, why don't they offer Pro as a Standalone product like they used to?
|
| word-xml adding attribute failed | 10 Feb 2005 04:25 GMT | 2 |
Howdy, I'm a bit of a newbie in vb and come across this problem. Working with visual studio vb 6 and have exe-project with a webbrowser control and a word2003 application in it. Goal is to programmatically add xml (wordML)
|
| VB app unload | 09 Feb 2005 23:44 GMT | 10 |
Does a VB6 exe unload itself when you Unload the last form, or do you need to do an End? Thanks. David
|
| filecopy | 09 Feb 2005 23:28 GMT | 10 |
I am having a problem with the Filecopy(source, destination) command. When i do the same copy command in a prompt under administrator acccount - it works. When i run the command in a program using shell it doesnt work,
|
| Iterate through Files AND folders in a directory | 09 Feb 2005 22:51 GMT | 4 |
I've got the following code so far, that iterates through all the files in a given directory, however, what it really needs to do is to not only do that, but to detect if the directory has any folders/directories, and dynamically iterate through them also, no matter how many ...
|