- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
26 Posted Topics
Re: not sure if you've looked at [URL="http://support.microsoft.com/default.aspx?scid=kb;en-us;145679"]How to Use The Registry API to Save and Retrieve[/URL] | |
Re: What is the error cos the above code is ok if enters Admin sets the editbox to readonly if enters 1234 shows form2 if neither above are true then shows 'Incorrect username and password' | |
Re: 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 | |
Re: 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 it to vb yet | |
Re: yes as long as you know the password need to use the following Sheets("sheettounprotect").Unprotect ("password") rest of code Sheets("sheettoprotectagain").Protect ("password") | |
Re: I do have a delphi routine, that I wrote inconjunction with a friend a while back that can take an ini file and convert it to a .dat file format and encrypts the data (simple encryption) when run it checks for an ini file which may contain any new or … | |
Re: to hide taskbar [URL=http://www.dancemammal.com/codebank/show.php?id=43]Link to hide taskbar @ dancemammal.com[/URL] regards mrmike | |
I've mad a small program to log events to the event logs, but have come across an issue I can log to both Application and System, but unable to log to the security log does anyone know if you can log to the security log or not thanks mrmike | |
Re: A bit more info on what you are attempting to do, and what the problem is with the code you already have | |
![]() | Re: as would say if this is for college work to help you get your graduation, then surely you should be looking at writing the whole program yourself, and not using someone elses and passing it off as your own users can give you help and guidance, but not give you … |
Re: this is because you have a 'repeat' without an 'until' and a 2nd 'begin' with out an 'end' ie Repeat do this statement do this statement Until endresult=certainvalue or condition before the last end add another end regards mrmike | |
Re: 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 | |
Re: create a form with 2 richtextboxes and one command button on it. next try the following code [code]Private Sub Command1_Click() Dim lvStart As Integer Dim lvEnd As Integer Randomize (Timer) lvStart = 1 lvOld = 1 RichTextBox2.Text = "" RichTextBox2.Refresh RichTextBox1.Text = Replace(RichTextBox1.Text, " ", " ") Do lvStart = … | |
Re: easiest solution would be to find the count of the number of members currently listed, add 1 when new user is created, then use the format command to format the string with leading zero's | |
Re: set a flag to be true use a for next loop to check all editboxes and ensure if something is entered if a box has nothing in it set the flag to be false when exit loop, check if flag is true/false, if true save details, if false flash message … | |
Re: i would assume each button will be set up individually if so then name it button, and use onclick to display value | |
I've been creating a small program, thats work fine under windows xp, but fails on windows 2000 pro/server, and also windows 98. I need the software to work on also windows versions, etc 95 and ME. I can't install it as it is a check to ensure that various software … | |
Re: you could create a popmenu and then use the mousemove event to display it, not sure how to get it to hide though when movemouse off the control in question you could also try looking at [URL=http://www.dancemammal.com]http://www.dancemammal.com[/URL] regards mrmike | |
Re: the easiest way of adding into array and increasing at same time is as follows [CODE]var myarray :array of integer; lastrecord: integer; begin lastrecord:=0; while lastrecord<20 do begin setlength(myarray,lastrecord+1); myarray[lastrecord]:=input_value; lastrecord:=lastrecord+1; end;[/CODE] | |
Re: 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. [CODE]function ConnectDrive(_drvLetter: String; _netPath: String; _password: String; _username: String; _showError: Boolean; _reconnect: Boolean; _interactive: … | |
Re: 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 it to do. [url]http://www.catalyst.com[/url] the addin is also free and you … | |
Re: delphi isn't too bad.. there are a lot of differences between the 2 | |
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 using winsock and checking for a connection and the results are being … | |
Re: 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 [quote]progressbar.min=minimum_value porgressbar.max=maximum_value progressbar.value=current_value[/quote] it will probably depend on how far indept you have to go for the project. but some basic … | |
this is just a quick message to say hi to everyone on these forums. even though I am more involved with hardware and diagnostics, i've been dabbling a bit with delphi and written a few applications for the company i work for, but due to how it works i'm now … | |
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 when declaring the array at startup var myarray :array[0..8] of integer = … |
The End.