Hi, There is an opening in one of our MNC CMM level 5 Client in Bangalore for Tech Lead opening.We are looking for people having more than 6 years of...
Hi all In a standard windows application, are you able to permanently link a class module and a form so that one wont work without the other? I know that what...
Anyone know how to automatically start a program in design time with VB? I'd like the source code to run, trying to catch any errors... Try operating my...
Be more specific. What do u wanna do? If u mean that u want to run the program before u make the exe then press F5 in designtime. "Darrin J. Calcutt"...
Well I was hoping there was a way I could 'not' press F5. I can set my windows to startup the application. But it will not start . Is there a way to autorun? ...
... to ... network? ... hello Mr Darek, my idea is to write a message popup like program I tried by writing a client and server programs which I have got from ...
Includ the winsock control and then put this code dim q q=Winsock.LocalIP(or some thing like Localxxxx) q is the local ip address. ... to ... network? ... ...
Do you mean after you have compiled to an exe or when you fire up VB the source code will run first before you get to the editor? Or do you want to auto run a...
What you could do is get a list of machines which are on the LAN. There is code in the file library to do this. Next, you could scan each machine, to see if...
How to make a text file open with a notepad that i made in VB. I mean whenever the user double clicks on a txt file my exe program showsup and a textbox...
Hi Everyone! I am Trying to capture the Image using a Digital camera. It is supplied with its driver and connected to USB port and the picture is being...
hi all just curious how i could get this concept working... itll be a registration for done through vb6, when the button is clicked for "next page" i want the...
wondering how to achieve the following... on a form with a text box, how can one go about upon hitting the "continue" button, check the value of a textbox to...
I have some code that is supposed to do this. I haven't tested it yet, though. This routine associates a file type - and custom icon - with a particular...
One "Ugly" way would be to use instr. Dim lngStart as Long lngStart = InStr(1, Text1.Text, "123", vbTextCompare) If lngStart > 0 then 'Textbox contains 123 ...
No, I have software in VB4.0, which I like to run in VB. Not the EXE. Its stable, but you never know what funny errors might pop up. So running with the source...
brain decided to go on vacation, can someone refresh.. how can i use a lable to display the current date and time. ( of course i want it to update with the...
Put a timer on the form, with the interval set to 1000. Double click the timer control, which will open the code window, with the timer event displayed. In...
I think u can use frames for this. when next is clicked hide the first frame and make the 2nd visible. Regards, Santhosh computek2k1 <djtux@...> wrote: ...
Just out of curiosity, if Time is only updated once per second, why would you want to have your timer firing every 1/1000th of second? IMHO it's a huge waste...
In Quick basic we could run a program that wasn't compiled, from the command line, or from an autoexec.bat file, as though it were an exe file. If I had a...
I use the textbox_LostFocus to run a routine that checks to see if the value is what I want. I use id to Capitalize the Firstletter of each name, to make sure...
You can set enable textbox.visible or disable it. At design time, overlay textboxes for page one with those for page two, three, etc. at form_load, make all...
The image is being saved to use computer somewhere, usually in "My Documents\My Pictures". Use Auto on Image control to have the image auto size to the...
Hi, can anyone help in this. I want some reports to be printed (Both dos mode and windows mode) how can i acheive this.i came to know that there are some vb...
Guys, I know many of you gave me information about multi-dimensional arrays. However, here is the problem I am still having. Where is the information going?...
... Buddy as if u want to achieve the goal to capitalize the first letter .... use the validate event...txtFileName_Validate()... and rite the code user the...
Maybe this will help 123 1iArray(1,1)iArray(1,2)iArray(1,3) 2iArray(2,1)iArray(2,2)iArray(2,3) Rick Rose ... From: Jean-Pierre Jamous Date: 04/03/06 14:45:24 ...