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: *

  1. Pikkunero

    Delphi 4.0 Upgrade

    It may be that Delphi 5 is the only Delphi that you can use if you don't want to re-code anything. Delphi 6 may be also possible. With Delphi 7 (if i remember correctly) there are differences with variants for example and if you're using variants, you need to do some re-coding.
  2. Pikkunero

    stored procedure to lauch another program

    Here might be something that you need although you need to register to download the source code for this. http://www.codeproject.com/database/xyprocedure.asp
  3. Pikkunero

    Looking for Knowledgebase

    Have you tried contacting Jason yet? I know he would like to talk to you. If you're still interested please contact Jason. JP
  4. Pikkunero

    Looking for Knowledgebase

    Jason hasn't received any email yet so could you please check that you had a correct email address? Best regards, Joonas
  5. Pikkunero

    Looking for Knowledgebase

    Hi. Check out this address http://www.d-tnt.com and contact Jason White directly. I already spoke to him about this and he might be interested, Regards, Joonas
  6. Pikkunero

    Problem when passing a TForm subclass implementing interface

    Sorry jslarochelle. It seems that i replied too soon. I didn't read your post and think. :) Now that i'm thinking of it, i think you cannot send an instance of TMainForm as an interfaced object. If you do need some info from the MainForm within the doSomething, i suggest you either change the...
  7. Pikkunero

    Problem when passing a TForm subclass implementing interface

    The only thing i see here is that you use different name for the parameter (which you pass to reportError) in the interface and in the MainForm. The procedure within the TMainForm shold look like this: procedure reportError (errorMessage: string); Other that that i can't say anything else...
  8. Pikkunero

    Error trapping

    The link seems good for me too but it's somewhat useless since i've been using EurekaLog for some time now. It's excellent for finding runtime errors that you cannot find any other way. It gives all sorts of useful information and one of the best being this: Call Stack Information...
  9. Pikkunero

    Debugging Question

    Set a breakpoint also to the function inside the MAIN application. You'll see if the function is called at all. -- Pikkunero
  10. Pikkunero

    monitor for keypress

    I have some sources that do exactly that but there are no comments. Here's a link that should come in handy. There are also comments within the code. http://delphi.about.com/gi/dynamic/offsite.htm?site=http://www.q3.nu/trucomania/truco.cgi%3F408%26ing JP
  11. Pikkunero

    datetime comparison

    Now after towerbase's example it seems that you're only checking for positive result of CompareDate function. As towerbase's example shows you should infact use a 'case' statement instead of 'if'.
  12. Pikkunero

    datetime comparison

    No dateutils in D5 ent. I can try to replicate the error. I'll post it here if i have any success.
  13. Pikkunero

    datetime comparison

    Which version of Delphi are you using? I don't seem to have CompareDate function and i'm using D5Ent. Or is it in a 3rd party library?
  14. Pikkunero

    "Name not unique in this context"

    If you can post the sql here it'll tell us at least if it's an issue with the sql.
  15. Pikkunero

    EXE Errors

    Ok. Maybe i should've read you previous post more throughly. It does say you're converting to Win32. :) I love Delphi. Been working with it for years but now it seems that i have to partially start working with VB as well. Which i don't like.
  16. Pikkunero

    EXE Errors

    Hehe. Could you please share the solution with us? I might some day start using D2K5 and if i run to a similar problem it would be nice knowing the answer. :)
  17. Pikkunero

    EXE Errors

    It may be that the "VCL FOrms Application delphi for NET" requires some .NET components on the client machines. Try installing .NET runtime package for one of the clients and see if it helps. I've only used the demo version of D2K5 so i don't have so much experience about it. JP
  18. Pikkunero

    Program goes blank after screensaver starts

    You could try inserting Application.ProcessMessages into your loop. If one doesn't help, try with two or three. Small example: repeat Application.ProcessMessages; DoSomething; Application.ProcessMessages; DoAnotherThing; Application.ProcessMessages; DoMoreThings; until...
  19. Pikkunero

    terminate application if condition not met

    I'm using Halt in some cases also so this is just a little note. Halt terminates the program abnormally and in some cases this might cause more problems. So if you have for example files open in your program, close them before Halt. Otherwise they might be in use the next time you try to access...
  20. Pikkunero

    delete row from xls spreadsheet

    You could do this without ADO connection to the worksheet. Use Olevariant to connect to the excel file and one of it's worksheets. Or if you have the Servers tab in your delphi you can connect with them to the xls file. After doing that you can go through the rows and columns and set the cell...

Part and Inventory Search

Back
Top