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
~8K People Reached
Favorite Forums
Favorite Tags

26 Posted Topics

Member Avatar for astroboy_x4

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]

Member Avatar for ROYALPINTO
0
325
Member Avatar for satrix36

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'

Member Avatar for malditcha87
0
563
Member Avatar for jto

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

Member Avatar for mrmike
0
202
Member Avatar for Seba Sama

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

Member Avatar for mrmike
0
216
Member Avatar for grandfilth

yes as long as you know the password need to use the following Sheets("sheettounprotect").Unprotect ("password") rest of code Sheets("sheettoprotectagain").Protect ("password")

Member Avatar for mrmike
0
152
Member Avatar for Red7

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 …

Member Avatar for mrmike
0
157
Member Avatar for sbedford

to hide taskbar [URL=http://www.dancemammal.com/codebank/show.php?id=43]Link to hide taskbar @ dancemammal.com[/URL] regards mrmike

Member Avatar for raam
0
387
Member Avatar for 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

Member Avatar for mrmike
0
73
Member Avatar for softwarecaz

A bit more info on what you are attempting to do, and what the problem is with the code you already have

Member Avatar for Comatose
0
132
Member Avatar for jclui

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 …

Member Avatar for mrmike
0
181
Member Avatar for rcwally

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

Member Avatar for mrmike
0
219
Member Avatar for biglou_85

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

Member Avatar for mrmike
1
217
Member Avatar for spinnetje

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 = …

Member Avatar for spinnetje
0
196
Member Avatar for satrix36

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

Member Avatar for satrix36
0
150
Member Avatar for satrix36

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 …

Member Avatar for mrmike
0
169
Member Avatar for sbedford

i would assume each button will be set up individually if so then name it button, and use onclick to display value

Member Avatar for sbedford
0
309
Member Avatar for mrmike

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 …

Member Avatar for mrmike
0
285
Member Avatar for Turner

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

Member Avatar for mrmike
0
119
Member Avatar for delgado

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]

Member Avatar for delgado
0
158
Member Avatar for craigmckeeman

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: …

Member Avatar for mrmike
0
945
Member Avatar for dancraggs

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 …

Member Avatar for Comatose
0
119
Member Avatar for trafficman
Member Avatar for mrmike
0
86
Member Avatar for mrmike

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 …

Member Avatar for Comatose
0
204
Member Avatar for coolgal_neha

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 …

Member Avatar for Comatose
0
196
Member Avatar for mrmike

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 …

Member Avatar for meksikatsi
0
95
Member Avatar for mrmike

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 = …

Member Avatar for mrmike
0
2K

The End.