Thanx for the effort, but I know all this :)
I have lots of arrays with lots of attributes/elements, and I need to make a snapshot (save to disk - text,xml...) of the data, when the program is running.
I could write Save and Load procedure for each array/record, but it would take a lot of time...
Hi
how would I get a structure of a specific record type in runtime?
Let say I have a record
Type TRec = record
ID:integer;
Name:string;
Gender:char;
Active:boolean;
end;
var Clients:array of TRec;
How would I get a name, type and data of each...
Hi
I used to have all in one unit. When it reached 65535 lines... I couldn't debug it anymore, so I needed to split it to two or more units.
My software:
1. reads and parses data into records
2. various analytical calculations and searches
3. report on results
So, I have main unit with all...
Hi
thanx for the suggestions, k5tm. I tried Stylus Studio and Altova XMLSpy but I couldn't get the tree to be displayed in a 'distinct and structural way'.
I started writing my own code for one of the XML parsers, and it seems quite easy to do this. Well, a couple of days will go by, but...
Hi
I'm new to XML.
I have a number of different XML files, no DTDs or any other files, just XMLs.
I need to parse them and before I do that, I need to have a complete view of structure of elemenst/objects and sub-elements/sub-objects...
So I need a list of all elements and their attributes...
Found it:
var picDis:IPictureDisp;
begin
...
If VarSupports(vBox.VariantTag, IPictureDisp, picDis) then
vBox.Picture:=picDis;
...
Well, I don't really understand how this works, or if proper syntax should be any other way, but it works!
I hope someone else will also find this...
Hi
I have two properties, VariantTag (OleVariant) and Picture (IPictureDisp) on an object 'Box'. In order to hide image/picture, I need to put Picture into VariantTag and set Picture = nil. This way the image is not shown, but stored at the same time, so we don't loose it.
to hide image...
Thank you for suggestion.
But I would like to buy a component that does all this work instead of me.
It makes more sense to pay an amount for a component that works 100%, than to spend a week of developing and testing my own development.
Any suggestions?
Thank you
Tilen
Hi
I would like to get a component that has Web Activation and Web Update options.
Internet search gives a couple of components that can do this separately, but I need in one component.
Obviously I need one that really works.
I have my own Web Activation system, but it fails on some systems...
Hi
is it possible to hide Delphi's splash screen at the beginning, Delphi 7? I tried "delphi32.exe -ns" but doesn't work, is there a new switch for this?
Does anybody have a list of switch commands for delphi32.exe command line execution?
Thank you
Burek
Hi
I would like to implement some sort of program installation verification. And I would like to base it on Folder Created date.
Is there any possibility that this date ever changes?
Assuming on virus-free PCs and no manual changes with software designed for this.
So, does Created date on...
I didn't try it, since my ystem works OK, so far.
I will see at the end of the day, but for now it works.
My system allows language changes while running program, I guess with two separate executables this is not an option.
And if original translator makes a mistake, users need to wait for me...
Thanx
this works now:
If (Sender is TButton) then
_Caption:=TButton(Sender).Caption
Else
If (Sender is TLabel) then
_Caption:=TLabel(Sender).Caption;
for i:=0 to LangTransText.Count-1 do
If LangTransText[i]=_Caption then
Begin
Translated_Text:=LangTransText[i+1]...
Hi
I need to translate my program into another language.
And I have decided to do it like this:
I have a file lang.txt which is structred as first line English text and second line is another language:
Options
Opicions
This works OK.
First I started with function that searches for string...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.