Search Results

Showing results 1 to 22 of 22
Search took 0.00 seconds.
Search: Posts Made By: mrmike ; Forum: Pascal and Delphi and child forums
Forum: Pascal and Delphi Apr 21st, 2006
Replies: 3
Views: 5,277
Posted By mrmike
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...
Forum: Pascal and Delphi Apr 20th, 2006
Replies: 1
Views: 1,733
Posted By mrmike
forgot to mention this is with delphi 6
Forum: Pascal and Delphi Apr 20th, 2006
Replies: 1
Views: 1,733
Posted By 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...
Forum: Pascal and Delphi Apr 7th, 2006
Replies: 5
Views: 2,116
Posted By mrmike
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...
Forum: Pascal and Delphi Feb 21st, 2006
Replies: 1
Views: 4,053
Posted By mrmike
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...
Forum: Pascal and Delphi Oct 7th, 2005
Replies: 6
Views: 4,296
Posted By mrmike
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'
Forum: Pascal and Delphi Oct 7th, 2005
Replies: 3
Views: 3,509
Posted By mrmike
if need the actual code let me know and i'll try to knock something up
Forum: Pascal and Delphi Oct 7th, 2005
Replies: 4
Views: 2,264
Posted By mrmike
if you need some code let me know and i'll try to get something knocked up
Forum: Pascal and Delphi Oct 7th, 2005
Replies: 3
Views: 3,509
Posted By mrmike
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,...
Forum: Pascal and Delphi Oct 7th, 2005
Replies: 4
Views: 2,264
Posted By mrmike
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
Forum: Pascal and Delphi Sep 15th, 2005
Replies: 9
Views: 15,190
Posted By mrmike
set the OnEnter event for each editbox to point to the EditClick

regards
mrmike
Forum: Pascal and Delphi Sep 15th, 2005
Replies: 8
Views: 16,375
Posted By mrmike
use the following and set the OnCloseQuery event to call it

procedure FormCloseQuery(Sender: TObject; var CanClose: Boolean);
begin
application.Messagebox('Sorry you are unable to terminate this...
Forum: Pascal and Delphi Sep 15th, 2005
Replies: 5
Views: 3,086
Posted By mrmike
thanks

i'll check it out - mainly using the registry to read values using TRegistry, and check fileversion numbers of particular files
Forum: Pascal and Delphi Sep 15th, 2005
Replies: 5
Views: 3,086
Posted By mrmike
fails straight away with kernel32.dll error on windows 2000 - but not sure why as on certain win2000 machines it will work

it has to work on all versions of windows ideally
Forum: Pascal and Delphi Sep 15th, 2005
Replies: 9
Views: 15,190
Posted By mrmike
The labels are not required, but were used for testing, as you change from the editbox to the button, the editbox will lose focus, and the button will become focused, thus giving you an issue if...
Forum: Pascal and Delphi Sep 14th, 2005
Replies: 8
Views: 16,375
Posted By mrmike
to hide taskbar

Link to hide taskbar @ dancemammal.com (http://www.dancemammal.com/codebank/show.php?id=43)

regards
mrmike
Forum: Pascal and Delphi Sep 14th, 2005
Replies: 1
Views: 3,383
Posted By mrmike
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...
Forum: Pascal and Delphi Sep 14th, 2005
Replies: 9
Views: 15,190
Posted By mrmike
if using an edit box then don't need to use writeln

for each button give it a tag number corresponding to the ascii value you want it to display (ie 0 = 48, 1 = 49, 2 = 50, etc)

create the...
Forum: Pascal and Delphi Sep 7th, 2005
Replies: 9
Views: 15,190
Posted By mrmike
i would assume each button will be set up individually

if so then name it button, and use onclick to display value
Forum: Pascal and Delphi Sep 7th, 2005
Replies: 5
Views: 3,086
Posted By 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...
Forum: Pascal and Delphi Jul 12th, 2005
Replies: 6
Views: 3,775
Posted By mrmike
the easiest way of adding into array and increasing at same time is as follows

var
myarray :array of integer;
lastrecord: integer;

begin
lastrecord:=0;

while lastrecord<20 do
Forum: Pascal and Delphi Jun 15th, 2005
Replies: 1
Views: 2,175
Posted By mrmike
delphi isn't too bad..

there are a lot of differences between the 2
Showing results 1 to 22 of 22

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC