Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #3K
~10.7K People Reached
Favorite Forums
Favorite Tags

36 Posted Topics

Member Avatar for kinv001

I checked, and Kinv001 actually started a new thread a week later, had made a good effort but got stuck, and got some help from a couple of members. I wouldn't do peoples homework for them either, what I do is test them by saying something like "what have you …

Member Avatar for AndreRet
0
410
Member Avatar for wraph

[QUOTE=Phaelax]Except that Gates didn't write DOS, he purchased it from some guy for like $10k or something and then turned around and sold it to IBM for tons more money than he paid.[/QUOTE] It's also said that Gates's DOS was mostly 'dumpster-dived' OS/2, No wonder he grins all the time.

Member Avatar for jwenting
0
632
Member Avatar for luxe

Hi, Luxe you first have to look in the File menu (in VB) and select Make[name of project]. This creates the .exe file. Then open the Package & Deployment wizard. Study it carefully, it's not hard to make a mistake if you haven't used it before. The DLL's it mentions …

Member Avatar for Jishnu
0
1K
Member Avatar for robbie_j0

After you compiled your project with 'Make', did you use the Package and Deployment Wizard? This collects any dependancy files (.DLL, .OCX etc) and includes them in an Install package. Just copying the .EXE file to another PC isn't going to work.

Member Avatar for Jishnu
0
885
Member Avatar for w00dy

Is there a VB function to allow you to construct counters using different number systems ie base 3, base 4, base 5, 6, 7 etc ? I haven't used VB for a while and I'm getting a headache trying to think how to get started on this, I just need …

Member Avatar for SkinHead
0
134
Member Avatar for kinchesskin
Member Avatar for amir_ct2001

This is how it goes on my version: First, open your project. Then in the File menu you should see 'Make [name of project].exe', click that. The .exe file and some others will be created in your project folder. Then Start - All Programs - Microsoft Visual Studio 6.0 - …

Member Avatar for WaltP
0
109
Member Avatar for indangasy
Member Avatar for w00dy

The object here is to open a selected Word file and Copy&Paste its contents into a text file. The problem seems to be with the Sendkeys commands having no effect. The project freezes, apparently because Notepad has not been closed (by Sendkeys "%FX"). Can anyone tell me what's wrong? :confused:

Member Avatar for Comatose
0
962
Member Avatar for student101

You need error-trapping for your textboxes, for instance: If Not IsNumeric(Text1.Text) or Not IsNumeric(Text2.Text) Then MsgBox ("Invalid Entry") Exit Sub End If rejects non-numeric entries or no entry

Member Avatar for student101
0
153
Member Avatar for Croft .L

here's a few to start with - but if you websearch for "visual basic tutorial" there's plenty more. [url]http://www.timesheetsmts.com/adotutorial.htm[/url] [url]http://www.vbtutor.net/vbtutor.html[/url] [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon98/html/vbconprogrammingfundamentals.asp[/url] [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon98/html/vbconintroductiontovariablesconstantsdatatypes.asp[/url]

Member Avatar for w00dy
0
96
Member Avatar for w00dy

During the program, Word is opened and displays a document. When Word is closed by clicking X or selecting File>Exit, the program must detect the event and reset controls. How is that done, anyone?

Member Avatar for w00dy
0
154
Member Avatar for w00dy

I need to search the pc for all files with a particular extension. Can anyone point the way ?

Member Avatar for w00dy
0
407
Member Avatar for billyb

Hello, and welcome Try the attached project. Needs a bit of work still, but it basically does what you want. If you need the data you've entered to still be there when the program is run, you will have to save it in a file. Hope this helps. w00dy

Member Avatar for billyb
0
144
Member Avatar for bang2711

You will need to give a basic explanation of what the program is meant to do. Plain simple language will do fine.

Member Avatar for bang2711
0
477
Member Avatar for Raza

This may help: [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbenlr98/html/vamsgoutofbounds.asp[/url]

Member Avatar for Raza
0
289
Member Avatar for Y2A

Yes, post something of what you've done so far, making it a little clearer what you need to do.

Member Avatar for w00dy
0
182
Member Avatar for msme
Member Avatar for Stibbeh
0
94
Member Avatar for selot

Hello, and welcome. Can you give us a little more information on what you're trying to do?

Member Avatar for invisal
0
153
Member Avatar for nathanoverall

Timer.Enabled = False works for me, there should be no need to work round it like that. Did you follow that with an Exit Sub? If not, then the rest of the sub will execute, maybe something in there enables it again?

Member Avatar for w00dy
0
170
Member Avatar for Slavrix

Hi, Slavrix, and welcome. You didn't say in what way it wasn't working, what error message(s) do you get? You could do it something like this, with nested If...Else statements, I assumed you would have first put something in the textboxes. Basically, every time the Sec or Min textboxes change …

Member Avatar for Slavrix
0
365
Member Avatar for user777

Try this site: [url]http://www.vbtutor.net/vbtutor.html[/url] and the site Comatose has already recommended

Member Avatar for The_Inferno
0
123
Member Avatar for grandfilth

Sorry purplegerbil, but that makes all 6 values equal the same thing. Try this: [CODE]If Z = 1 Or If Z = 3 Or If Z = 5 Then [INDENT]SIDE = W - (V/3600#)[/INDENT] End if If Z = 2 Or If Z = 4 Or If Z = 6 …

Member Avatar for w00dy
0
169
Member Avatar for user777
Member Avatar for Kiba Ookami

Try these sites: [url]http://www.iamnotageek.com/a/413-p1.php[/url] [url]http://www.rdpslides.com/pptfaq/FAQ00642.htm[/url] an internet search for AUTOEXEC.NT will find more if necessary.

Member Avatar for w00dy
0
134
Member Avatar for cancer10

'Global' isn't actually a type of variable, the term is used to refer to the scope of a variable. For instance, if you declare the variable in the general section of a form ( even just using DIM ), it is 'global' to that form. Declare it in a module …

Member Avatar for jwshepherd
0
317
Member Avatar for rhari_81

Hi, Harish I started with a version of VB(Control Creation Edition, I believe this version is downloadable free), and a book from the library. This is all you need to get you going, plus there is plenty of online help. If you already have these 3 things, could you give …

Member Avatar for ndw2004
0
184
Member Avatar for Sharpy

Change this line: Form2.Text1.Text = Form1.Text1.Text to this: Form2.Label1.Caption = Text1.Text Or did you not want to use a command button? You could try Text1_Change, instead of Command1_Click. If you don't want Form2 to show at this point, then use "Load Form2" earlier, then you can Show or Hide it …

Member Avatar for jwshepherd
0
173
Member Avatar for Sharpy

Sharpy, have you considered using a random access file to store your data? It would mean that instead of 15 files to keep track of, you would just have 1 file containing 15 records, which can be read and edited quite easily. If you're interested I can post a prog …

Member Avatar for jwshepherd
0
205
Member Avatar for d0uga1

Everyone has a life apart from the forum, you know ( or maybe you don't). If you had just a little patience, someone would be able to hel :rolleyes: p.

Member Avatar for jwshepherd
0
113
Member Avatar for coolgal_neha
Member Avatar for baba0880

Post the relevant section of code, that might provide a clue, plus any combo box properties you have changed from default.

Member Avatar for w00dy
0
110
Member Avatar for cfonseca

Come on, cfonseca, you're not giving us much info to work with , are you?

Member Avatar for w00dy
0
63
Member Avatar for fozzle

What exactly do you mean by a 'spool file'? this looks all incorrect to me: [CODE]Open Filename For Random [I][B]Access Read Write[/B][/I] As #1 Len = 30000[/CODE] I think 'Access Read Write' is not needed, and every time you open it you're stating that the file length is 30000. If …

Member Avatar for w00dy
0
157
Member Avatar for Nomiree

[I]'argument not optional' [/I] basically just means 'you can't do it like this'. For all these comparisons, you could use other methods such as Select Case, or loops within loops, to make the code easier to read, but of course that comes with experience. One thing I think I should …

Member Avatar for Comatose
0
790
Member Avatar for w00dy

Hi All, I wrote a guitar-related program, one of the options is a guitar tuner which works fine, each note is in a separate 3second wav file. However, when I tried to write an option to play a full chord i.e. play 6 files, one after the other, only the …

Member Avatar for Comatose
0
213

The End.