Search the web
Sign In
New User? Sign Up
visualbasic6programming · VB help for all versions!
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 25078 - 25107 of 32051   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
25078
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...
cegon soft
jobs.cegonsoft
Offline Send Email
Apr 1, 2006
8:18 am
25079
Hi again, How to capture "ctrl + c" with GetAsyncKeyState? I tried this with timer1.interval=0. I am taking help from net. Private Declare Function...
(:)
high_way122
Offline Send Email
Apr 1, 2006
1:54 pm
25080
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...
bidskii
Online Now Send Email
Apr 1, 2006
10:17 pm
25081
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...
Darrin J. Calcutt
dcalcutt2000
Offline Send Email
Apr 2, 2006
3:14 am
25082
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"...
Utsav Gupta
crisronaldo2003
Offline Send Email
Apr 2, 2006
5:20 am
25083
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? ...
Darrin J. Calcutt
dcalcutt2000
Offline Send Email
Apr 2, 2006
6:10 am
25084
... 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 ...
raotns
Offline Send Email
Apr 2, 2006
7:04 am
25085
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? ... ...
Utsav Gupta
crisronaldo2003
Offline Send Email
Apr 2, 2006
9:57 am
25086
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...
Kenneth Danner
racermand289
Offline Send Email
Apr 2, 2006
12:26 pm
25087
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...
DW
dwirch
Offline Send Email
Apr 2, 2006
1:46 pm
25088
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...
Utsav Gupta
crisronaldo2003
Offline Send Email
Apr 2, 2006
2:53 pm
25089
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...
asif_cal
Offline Send Email
Apr 2, 2006
7:41 pm
25090
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...
computek2k1
Offline Send Email
Apr 2, 2006
8:11 pm
25091
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...
computek2k1
Offline Send Email
Apr 2, 2006
8:38 pm
25092
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...
Richard
alienwebmaster
Offline Send Email
Apr 2, 2006
9:03 pm
25093
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 ...
Kenneth Danner
racermand289
Offline Send Email
Apr 2, 2006
11:20 pm
25094
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...
Darrin J. Calcutt
dcalcutt2000
Offline Send Email
Apr 3, 2006
12:53 am
25095
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...
computek2k1
Offline Send Email
Apr 3, 2006
1:01 am
25096
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...
DW
dwirch
Offline Send Email
Apr 3, 2006
2:56 am
25097
Put a timer control on the form and set the interval to 1 then Private Sub Timer1_Timer() Label1.Caption = Time Label1.Refresh End Sub...
Kenneth Danner
racermand289
Offline Send Email
Apr 3, 2006
3:28 am
25098
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: ...
¢¾ Santhosh Â...
santoshace
Offline Send Email
Apr 3, 2006
5:32 am
25099
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...
DW
dwirch
Offline Send Email
Apr 3, 2006
1:20 pm
25100
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...
Jesus Is the Answer
halfof4is2
Offline Send Email
Apr 3, 2006
2:57 pm
25101
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...
Bart Toole
toole130
Offline Send Email
Apr 3, 2006
3:17 pm
25102
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...
Bart Toole
toole130
Offline Send Email
Apr 3, 2006
3:36 pm
25103
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...
Bart Toole
toole130
Offline Send Email
Apr 3, 2006
3:47 pm
25104
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...
Sathish Kumar
visualzebronics
Offline Send Email
Apr 3, 2006
6:28 pm
25105
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?...
Jean-Pierre Jamous
keen_black_e...
Offline Send Email
Apr 3, 2006
6:45 pm
25106
... 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...
mikit kanakia
mikit555
Online Now Send Email
Apr 3, 2006
6:50 pm
25107
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 ...
Rick Rose
roseri1997
Offline Send Email
Apr 3, 2006
7:21 pm
Messages 25078 - 25107 of 32051   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help