Search the web
Sign In
New User? Sign Up
vbhelp · Visual Basic Help Center Forum
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 15456 - 15486 of 15862   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
15456
I am trying to have a button open a .exe and run it. Can someone tell me how? Like whne you double click on an exe it automatically starts running. Thanks...
bullzridinokie
Offline Send Email
Jan 3, 2008
6:26 am
15457
... try this code.... Private Sub cmdOpen_Click() shell app.Path & "NameofExeFile.exe",vbNormalFocus End Sub Note: The "NameofExeFile.exe" must be the same...
Dennis Marasigan Medina
array_9234
Offline Send Email
Jan 3, 2008
7:38 am
15458
Hi. On a VB 6 form, I have a button I want to open up the windows XP calculator when clicked. . I can't seem to find what the calculator file is called in...
lucidguild
Offline Send Email
Jan 12, 2008
9:03 am
15459
Private Sub Command2_Click() Shell "calc.exe" End Sub lucidguild <lucidguild@...> wrote: Hi. On a VB 6 form, I have a button I want to open up...
Subhasis Chanda
subhasis_chanda
Offline Send Email
Jan 12, 2008
1:10 pm
15461
This works in XP, and may work in the others Shell "calc" Rob...
crombierob
Offline Send Email
Jan 12, 2008
2:37 pm
15462
I have programmed a calculator in VB which looks better windows calculator, check out the codes at my free tutorial site at http://www.vbtutor.net Dr.Liew ...
wq Liu
liewvk
Offline Send Email
Jan 13, 2008
6:54 am
15463
Can anybody show me or point me to a site that can help me to read SAS datasets with VB 6.0 . Thanks Ron...
Ron
ronhvb03
Offline Send Email
Jan 16, 2008
3:34 pm
15464
Hi, I am trying to write a webpage in word using VB. Word is office 2000 and I have both vb.net and vb 6.0. Here is the problem. When I have word running and I...
meridith_davis
Offline Send Email
Jan 16, 2008
4:30 pm
15465
... The users' security settings will forbid this behavior by default, and it would be a gross error for them to allow Word-scripting to bypass their security...
Shawn K. Hall
vb_shawn
Online Now Send Email
Jan 16, 2008
5:12 pm
15466
... http://gis.esri.com/library/userconf/proc01/professional/papers/pap571/p 571.htm...
Shawn K. Hall
vb_shawn
Online Now Send Email
Jan 16, 2008
5:14 pm
15467
Guys I am trying to Internationalize our VB6 app.... To do this I am reading a text file containing a bunch of strings such as, 1,This disclaimer is available...
Julian Holt (CADFEM)
jholt@...
Send Email
Jan 21, 2008
10:57 am
15468
... In order to display Japanese text on a US system, you will need to make sure that you have the appropriate fonts installed. On XP, open the "Regional and...
Adelle Hartley
adelle@...
Send Email
Jan 21, 2008
12:00 pm
15469
... that even though VB6 uses unicode internally, it was built with Windows 95 compatibility in mind. Consequently, VB6 assumes that the rest of the world is...
Julian Holt (CADFEM)
jholt@...
Send Email
Jan 21, 2008
3:39 pm
15470
... No, just that the interface is intended for single-byte charactersets. You can make it work if you use a multi-byte characterset capable medium. Instead of...
Shawn K. Hall
vb_shawn
Online Now Send Email
Jan 22, 2008
4:29 am
15471
Hi everyone, I have recently started to work on visual basic. I want to perform a small thing in visual basic. If anyone can help me in this regard, I will be...
Free Sagi
freesagi786
Offline Send Email
Jan 22, 2008
6:37 pm
15472
I'm trying to do something that may or may not be possible. I'm in VB.net via Visual Studio 2005. Here's the situation: I have a parent class that represents...
Ryan Dawson
rpd1333
Offline Send Email
Jan 22, 2008
8:49 pm
15473
You can't change the name of the parent class' function to read DirectFlightTime? I mean that would be the easiest thing to do if you don't have any other...
Don Roberts
droberts_00
Offline Send Email
Jan 22, 2008
8:55 pm
15474
IMO, it's a pretty simple thing to do, you actually outlined how to do, at least the beginnings of the idea. You make it either an abstract parent, or you make...
James Stevens
jimbobob21
Offline Send Email
Jan 22, 2008
9:55 pm
15475
Hi, I would like to know whether I can use vb to control a device through VGA port? If can, how can it be done? Example? Thanks....
setlan83
Offline Send Email
Jan 23, 2008
1:45 am
15476
... I can, it just doesn't make much sense for the parent's function to be called 'direct' when there's no other option. There's a secondary issue in a...
Ryan Dawson
rpd1333
Offline Send Email
Jan 23, 2008
3:47 pm
15477
... The problem with that is that the parent class has actual instances, and those instances need access to FlightTime also. If the parent contains "Protected...
Ryan Dawson
rpd1333
Offline Send Email
Jan 23, 2008
3:47 pm
15478
I disagree, since you now have child classes that have different ways to determine flight time, I think renaming the parent function to a more descriptive name...
Don Roberts
droberts_00
Offline Send Email
Jan 23, 2008
3:50 pm
15479
... In any case, your answer, then, is, "No, you can't do that". Which is all I wanted to know. I know I can rename the functions, but function naming...
Ryan Dawson
rpd1333
Offline Send Email
Jan 23, 2008
7:40 pm
15480
My apologies!...
Don Roberts
droberts_00
Offline Send Email
Jan 23, 2008
7:41 pm
15481
... That can never make sense, because you can always cast an instance of the derived class to its parent; even if you could make the method private in the...
Adelle Hartley
adelle@...
Send Email
Jan 24, 2008
4:03 am
15482
hi all, I have vb6 and would like to make a web page that will allow me to download files from my internet space to my home computer, I need VB to update a...
Michael Bloom
michaelbloom72
Offline Send Email
Jan 25, 2008
1:05 am
15483
... Yes and no. Firstly, the best tool I have used for this task is the Microsoft Soap toolkit. I don't know if they still have that available for download. I...
Adelle Hartley
adelle@...
Send Email
Jan 25, 2008
2:13 am
15484
... I should mention that this code is good for a simple text file, and probably ok for typical resolution web images, but if your file is several Mb you may...
Adelle Hartley
adelle@...
Send Email
Jan 25, 2008
2:28 am
15485
Dear friends, I use Visual Basic .net 2003 to develop a computer model. How can I show the output /results on separated /different windows? The output can be...
Mohammad Agita Tjandra
dt_sadeo
Offline Send Email
Jan 25, 2008
1:56 pm
15486
What do you mean by windows? Do you mean text boxes or image boxes on your form? What do you mean by "different windows"? Do you mean that you want it so...
Anthony Padua
halfof4is2
Offline Send Email
Jan 25, 2008
7:30 pm
Messages 15456 - 15486 of 15862   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