Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Tilen
  • Order by date
  1. Tilen

    Record structure at runtime

    Thank you for suggestions. I just started looking at classes... I'll post my results.
  2. Tilen

    Record structure at runtime

    I'm not really sure I know what OOP techniques are...
  3. Tilen

    Record structure at runtime

    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...
  4. Tilen

    Record structure at runtime

    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...
  5. Tilen

    Splitting Up Code in Big Projects

    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...
  6. Tilen

    Get XML structure

    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...
  7. Tilen

    Get XML structure

    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...
  8. Tilen

    OleVariant -> IPictureDisp

    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...
  9. Tilen

    OleVariant -> IPictureDisp

    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...
  10. Tilen

    Web Activation and Webupdate component

    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
  11. Tilen

    Web Activation and Webupdate component

    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...
  12. Tilen

    Hide Delphi's Splash screen - Delphi 7

    I managed to get it working. I created a shortcut and it works. Yes, i have Enterprise. Thanx
  13. Tilen

    Hide Delphi's Splash screen - Delphi 7

    It doesn't work for me. Which Delphi do you have? I have Delphi 7.
  14. Tilen

    Hide Delphi's Splash screen - Delphi 7

    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
  15. Tilen

    Folder Created date

    I thought so, just wanted to make sure. Thanx
  16. Tilen

    Folder Created date

    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...
  17. Tilen

    Translating to antoher language...

    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...
  18. Tilen

    Translating to antoher language...

    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]...
  19. Tilen

    Translating to antoher language...

    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...
  20. Tilen

    Copy protection

    Thanx, a 7 day window is a good suggestion. I know there's no perfect protection. And if it's cracked -> popular -> good money anyway!

Part and Inventory Search

Back
Top