Forum: Visual Basic 4 / 5 / 6 Sep 21st, 2006 |
| Replies: 4 Views: 2,076 just create a shortcut to the file and save it on your desktop
remember to ensure that the client pc you are running from has the relevant dll's installed |
Forum: Visual Basic 4 / 5 / 6 Sep 13th, 2006 |
| Replies: 1 Views: 1,786 check the win32api.txt file and search for 'windows network support'
everything is listed in that section regarding the functions you need
i know how to do it under delphi, but ain't converted... |
Forum: Visual Basic 4 / 5 / 6 Apr 27th, 2006 |
| Replies: 10 Views: 4,923 not sure if you've looked at
How to Use The Registry API to Save and Retrieve (http://support.microsoft.com/default.aspx?scid=kb;en-us;145679) |
Forum: Visual Basic 4 / 5 / 6 Apr 27th, 2006 |
| Replies: 1 Views: 1,629 yes as long as you know the password
need to use the following
Sheets("sheettounprotect").Unprotect ("password")
rest of code
Sheets("sheettoprotectagain").Protect ("password") |
Forum: Visual Basic 4 / 5 / 6 Apr 7th, 2006 |
| Replies: 2 Views: 1,231 A bit more info on what you are attempting to do, and what the problem is with the code you already have |
Forum: Visual Basic 4 / 5 / 6 Nov 21st, 2005 |
| Replies: 3 Views: 5,812 i couldn't get vb or delphi under xp home - work fine under xp pro though |
Forum: Visual Basic 4 / 5 / 6 Nov 11th, 2005 |
| Replies: 2 Views: 2,099 create a form with 2 richtextboxes and one command button on it.
next try the following code
Private Sub Command1_Click()
Dim lvStart As Integer
Dim lvEnd As Integer
Randomize (Timer)... |
Forum: Visual Basic 4 / 5 / 6 Nov 11th, 2005 |
| Replies: 3 Views: 5,812 r u sure they not running XP Pro, as XP Home has a lot of features missing, this is why a lot of programming languages won't work under XP Home.
My advice is to install XP Pro
regards
mrmike |
Forum: Visual Basic 4 / 5 / 6 Jun 27th, 2005 |
| Replies: 8 Views: 8,881 Sorry comatose,
thought if shown the delphi code, may have been able to convert it to vb code. |
Forum: Visual Basic 4 / 5 / 6 Jun 24th, 2005 |
| Replies: 8 Views: 8,881 i've never done this under VB but did write a routine that could map drives under delphi.
the following code is how it works under delphi, you could see if can change to work with VB.
function... |
Forum: Visual Basic 4 / 5 / 6 Jun 15th, 2005 |
| Replies: 4 Views: 3,961 best solution I can give is to try socketwrench from catalsyt.
this was mentioned to me by comatose as I was having problems with a project I was doing, and found that it helped me do what i want... |
Forum: Visual Basic 4 / 5 / 6 Jun 8th, 2005 |
| Replies: 7 Views: 5,105 Hi Comatose,
Sorry for delay in responding to this but been very busy.
But first thanks for the help :cool:
Well the news is I've managed to do what I need it to do.
I've used the... |
Forum: Visual Basic 4 / 5 / 6 May 28th, 2005 |
| Replies: 4 Views: 4,607 hi and welcome
the progress bar can be used under vb6 as well as .net
not sure what you know of progressbars but they are very simply to use
it will probably depend on how far indept you... |
Forum: Visual Basic 4 / 5 / 6 May 27th, 2005 |
| Replies: 7 Views: 5,105 thanks for the info I will give that a try and let you know how it works out
i had set the loop count to 1 just for routine for testing as noticed the combobox list actually pulls the scanlist.txt... |
Forum: Visual Basic 4 / 5 / 6 May 27th, 2005 |
| Replies: 7 Views: 5,105 Thanks,
looked at TTPScan and gets error loading cswsk32.ocx on loading into vb.
I still loaded at had a look, seems to be doing exactly same as I'm trying, but if I add under
the... |
Forum: Visual Basic 4 / 5 / 6 May 26th, 2005 |
| Replies: 7 Views: 5,105 I'm busy writing an application for work which needs to connect to a list of our servers and check some ports to ensure the correct ones we require are open and ones we don't use are closed.
I'm... |
Forum: Visual Basic 4 / 5 / 6 May 26th, 2005 |
| Replies: 2 Views: 36,522 thanks for the info
changed the function to
Function mydata(ByVal item as integer, ParamArray valuelist() as variant)
and this works fine |
Forum: Visual Basic 4 / 5 / 6 May 26th, 2005 |
| Replies: 2 Views: 36,522 Just got a quick question
I know how to assign arrays using the DIM command, but I want to give the array a set of constant figures that will never change
Under Delphi I would use the following... |