Search Results

3
votes
3answers
487 views

safe(st) way rename a delphi Project

Im sure this will be a simple one but have a project that started as a test. When it was created it was saved as "Project2.dpr" Now the test is no longer a 'test', i would like to cha …
3
votes
6answers
453 views

Delphi Short Cut to add Date and Name Comment

Does anyone know of a short cut to place my name and the date where the cursor is i.e. //021208 DarkAxi0m so i don't keep check what the date is when i'm adding c …
0
votes
2answers
170 views

Create a 2 dimension Quickreport

I think im asking for the right type of report from Quickreport. What we have is a simple table, gauge,site,value Gauge and site are the keyfields, (ther …
1
vote
1answer
154 views

Dataset Update Filter Location

This has always bugged me to what is the best way to do the following... with a simple one to many db, when you have 2 tables/grids on a form and the 2nd one filtered by the first. …
4
votes
3answers
429 views

In Delphi, is outputdebugstring thread safe?

Simple question i belive, is outputdebugstring(pansichar('')); Thread safe? I/We have been using it in threads for debugging, and i never occurred to me i …
0
votes
2answers
148 views

AV When using a Procedure from one Component called by another

Im not sure if i have explaned this the best i can but, here we go... I have 2 Custom components on a form, Which are link together at design time through the IDE. Whenever i call a procedu …
2
votes
1answer
275 views

Delphi: Canceling a TDataSet.Post in an OnBeforePost Event

On our main data entry screen, we have an OK/Cancel dialog in the OnBeforePost event. OK lets things take their course Cancel right now does a Dataset …
0
votes
1answer
101 views

DBCtrlGrid with a Lookup ComboBox

has anyone managed to get a DBLookupComboBox to work with a DBCtrlGrid? a pre filled in DBComboBox works ok, but it dose not work to well for lookup tables; delphi 7 …
1
vote
3answers
75 views

Returning a string from a BPL function

have a function, simplified below, that is exported from a BPL function DoA(amount: currency; var Info: string): Currency; stdcall; begin result := amount * 19; Info:= 'Some Te …
2
votes
4answers
148 views

Delphi, Copy string to Byte array

what i have works, but im looking if there is a faster way to copy a string into a pByteArray from sysutils PByteArray = ^TByteArray; TByteArray = array[0..32767] of Byt …
1
vote

Delphi Short Cut to add Date and Name Comment

Never mind found one in CnPack/Soure Templates Added the template //%Date% DarkAxi0m Note: i should look in the menus more closely …
0
votes

Delphi Objects in Packages

i didnt read all the notes at http://stackoverflow.com/questions/702246/loadpackage-call …
1
vote

Delphi, Copy string to Byte array

never mind, found it Move(s[1], a^, Length(s)); …