Forum: Pascal and Delphi Apr 21st, 2006 |
| Replies: 3 Views: 5,277 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 forgot to mention this is with delphi 6 |
Forum: Pascal and Delphi Apr 20th, 2006 |
| Replies: 1 Views: 1,733 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 delphi isn't too bad..
there are a lot of differences between the 2 |