Forum: Visual Basic 4 / 5 / 6 Nov 2nd, 2008 |
| Replies: 0 Views: 986 Hey i need a script to change the password of a user... i found some code:
strUser = InputBox("Enter username of user")
strOU = InputBox("Enter domain where user's account resides")
Set objUser... |
Forum: Visual Basic 4 / 5 / 6 Sep 9th, 2008 |
| Replies: 0 Views: 495 Hey i have a program running on a server that eats a lot of the processor.
How can i see how much (%of processor) it is currently using similar to task manager? i only need it for one process. |
Forum: Visual Basic 4 / 5 / 6 Jul 13th, 2008 |
| Replies: 2 Views: 695 |
Forum: Visual Basic 4 / 5 / 6 Jul 13th, 2008 |
| Replies: 2 Views: 695 So i have this app that i wrote to get the permissions on a directory and it works fine for small directories. however when i use it on a huge server it freezes when it compiles the file. i know the... |
Forum: Visual Basic 4 / 5 / 6 Feb 14th, 2008 |
| Replies: 3 Views: 2,977 thanks but im just going to use java... i need a gui builder |
Forum: Visual Basic 4 / 5 / 6 Feb 14th, 2008 |
| Replies: 3 Views: 2,977 hey im using vb 6 on a 64 bit vista computer in vb express 2008, is there some way i can compile a lightweight program for use on a mac?
thanks
m |
Forum: Visual Basic 4 / 5 / 6 Feb 11th, 2008 |
| Replies: 2 Views: 663 |
Forum: Visual Basic 4 / 5 / 6 Feb 10th, 2008 |
| Replies: 2 Views: 663 Hey, Im modifying a program i wrote in vb2005 [express] in vb 2008. My computer runs vista 64bit and ive had problems with 2008 where the program wouldnt run on a xp x86 computer. I ended up having... |
Forum: Visual Basic 4 / 5 / 6 Dec 10th, 2007 |
| Replies: 0 Views: 1,859 Hey, I have this code i wrote in vb 2008 express that works fine on vista but not at all on xp
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles... |
Forum: Visual Basic 4 / 5 / 6 Oct 23rd, 2007 |
| Replies: 5 Views: 1,614 In order to return a variable you need to say something like
Return NewPointOnRectangle
all your saying is
NewPointOnRectangle = 0
which sets NewPointOnRectangle equal to 0... |
Forum: Visual Basic 4 / 5 / 6 Oct 23rd, 2007 |
| Replies: 5 Views: 1,614 your function doesnt return anything, so you cant set an int equal to null |
Forum: Visual Basic 4 / 5 / 6 Oct 3rd, 2007 |
| Replies: 4 Views: 771 ohh thanks, i didnt know about time intervals. |
Forum: Visual Basic 4 / 5 / 6 Oct 3rd, 2007 |
| Replies: 4 Views: 771 but wouldnt that require an loop? I did that and it crashed...
can i do like function f handles time.change or something.. |
Forum: Visual Basic 4 / 5 / 6 Oct 3rd, 2007 |
| Replies: 4 Views: 771 Hey does anyone know a way to make a program run at a certain time?
no... i dont wantto use task scheduler
basically a person sets a time in my program and it runs a method at said time.
Ideas? ... |
Forum: Visual Basic 4 / 5 / 6 Aug 7th, 2007 |
| Replies: 5 Views: 1,231 No, thanks but i need to store an object in a file. |
Forum: Visual Basic 4 / 5 / 6 Aug 7th, 2007 |
| Replies: 5 Views: 1,231 but can i do
Dim bla as HashTable
Print #FN, bla |
Forum: Visual Basic 4 / 5 / 6 Aug 7th, 2007 |
| Replies: 5 Views: 1,231 Hey guys, is there any way to read and write an object to a text file?
For example in java i can open a ObjecOutputStream and just write an object. What about in vb?
Thanks
M |
Forum: Visual Basic 4 / 5 / 6 Jul 8th, 2007 |
| Replies: 2 Views: 2,282 |
Forum: Visual Basic 4 / 5 / 6 Jul 8th, 2007 |
| Replies: 2 Views: 2,282 Hey i am trying to make a 3 dimensional string array, and i wont know the size of it until the user enters the three numbers. I need to declare the variable as private or else i will have to pass it... |
Forum: Visual Basic 4 / 5 / 6 Jun 24th, 2007 |
| Replies: 7 Views: 5,761 yea instead of having debug print it, i added each one to an arraylist |
Forum: Visual Basic 4 / 5 / 6 Jun 23rd, 2007 |
| Replies: 7 Views: 5,761 wow thanks, worked great! |
Forum: Visual Basic 4 / 5 / 6 Jun 23rd, 2007 |
| Replies: 7 Views: 5,761 Hey i have a textbox that i want to read line by line and store in an ArrayList. I am currently trying to find the line break at the end of each line. Here is the code:
While i = 0
... |