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 strongm 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: pierrotsc
  • Content: Threads
  • Order by date
  1. pierrotsc

    unknown publisher

    I run delphi XE under windows 10. I can run my program fine but when I run it under windows 7 64 Bits, i have a dialog box telling me it is un unknown publisher. I looked into adding a resource but failed. How can I add a certificate to my code to remove this annoying dialog ? Thanks Pierre
  2. pierrotsc

    shortcut question

    in my app, i use shortcuts to select tools. i just realized that if i start typing in a memo box, the shortcuts are being triggered. how can i disable the shortcuts when i type some text. Thanks Pierre
  3. pierrotsc

    Disabling a Tlistview

    I am disabling temporarily the onselectitem of a listview. I use // disable Objects interaction Mainform.ListViewObjects.OnSelectItem := nil; Now how to i re enable it ? Sincerely, Pierre
  4. pierrotsc

    Requirement

    My program needs the 2010 Visual C+ redistribution files. Is there a way to check that the computer have it and if not, redirect to the Microsoft page ? (Or even better, start the install for the chosen platform automatically?) The file that needs to be present is MSVCP100.dll Thanks. Pierre
  5. pierrotsc

    Formatting source code

    I just reinstalled XE on a computer and did a custom install leaving out 3rd party and net stuff i do not use. Now i do not have the option to format the source code (CTRL+D). what do i need to re install and do i have to re installed the whole XE or just the missing component? Thanks. Pierre
  6. pierrotsc

    D2007 unrecognized component

    in d2007, i have some components that are showing a wavy red line under them but the programs compile fine. i know that the syntax is fine. is that a bug in d2007? for example, i have a 3rd party component that uses width and height. both of them are giving me an unrecognized error but it...
  7. pierrotsc

    Delphi 2007 palette questions

    Is there away to search for a component in the palette in D2007? maybe an add-on or plugin? Right now i am scrolling down the list to find the right component. Thanks. Pierre
  8. pierrotsc

    Tformatsettings in 2007

    I have this code I use under XE: result := AddThousandSeparator(S, FormatSettings.ThousandSeparator); That does not work under 2007. What can I do to make it work? Thanks. P
  9. pierrotsc

    Freeing forms

    How can i be sure that when i close my application, all the forms are released from memory? I have a few stay on the op forms that are automatically created and some that i create on demand. It looks like i may have one that is automatically created that may not get free when the application...
  10. pierrotsc

    warning messages

    I am getting warning messages that some symbols are specific to a platform. For example, TTaskdialog Anyway I can get rid of the warning? Thanks. P
  11. pierrotsc

    Toolbar question

    Is it possible to have a toolbar on the left of the form with the buttons going down? right now, when i add buttons on a toolbar that is on the left, the buttons still go from left to right and not from top to bottom.. P
  12. pierrotsc

    Loading / saving menus

    Is it possible to export a menu to be able to re import it? I would like to migrate a menu to a dynamic form (almdev.com) menu and really do not want to rebuild it from scratch. Thanks. P
  13. pierrotsc

    populating a DBCombobox

    I have 2 databases with a master/detail relationship. Let's call the master (Project) and the detail (Trial) I would like to have 2 DBCombobox that are populated with the name of each project in the first DBcombobox and then its associated trial in the second DBCombobox. also when i select a...
  14. pierrotsc

    Twidestring

    I have a component property that has a twidestring class. If i write mycomponent.footer := 'Test'; i get an error saying that there's incompatibility between twidestrings and strings. I have been searching an an answer but cannot find anything. How do i need to write the text portion of the...
  15. pierrotsc

    Closing forms

    I have a button that creates a new form. I use: if Frm_ExtractCDRP = nil then Frm_ExtractCDRP := TFrm_ExtractCDRP.Create(application) else showmessage('not closed'); Now when i close my form, i have this statement in the onclose event: showmessage('close'); Action := CaFree...
  16. pierrotsc

    How to populate a combox?

    I have a directory with a lot of files. I would like to populate my combobox with their names.How do i do that? Thanks.
  17. pierrotsc

    Toolbar icons question

    I am really using almdev toolbar with speedbuttons but this behavior may also be the same with Delphi's toolbar. I have 15 speedbuttons on a toolbar and i do not need all of them to show up all the time depending on which function i am trying to achieve. I looked in the dfm to see in which...
  18. pierrotsc

    Groupindex question

    How can i find out if I already used a groupindex value in my program? I did not keep track of which values I used and do not want to re-use an already taken value. Thanks. P
  19. pierrotsc

    Groupindex question

    I have a toolbar with some icons linked with the same groupindex so when i press one icon, the one that was pressed got unpressed. Is there anyway to have all the icons unpressed? to have them reset to their original positions before the first one was ever clicked on? Thanks. P
  20. pierrotsc

    Finding smallest number

    I am trying to see if there's a more efficient algoritm to find the smallest and biggest number in an array. I have an array that has a size of 101. Right now i am doing a loop and comparing each values to locate the smallest and largest but the code looks heavy to me and not very efficient...

Part and Inventory Search

Back
Top