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

    DataBindings problem

    Obislavu, thank you for your help, but that wasn't really the answer to my problem. If anyone interested the solution was: I have to set the DefaultValue property of the column before the datagrid.datasource property gets the dataset...
  2. mustangman96

    DataBindings problem

    How can I bind my checkbox control to a dataset? I use sqlDataAdapter to generate the dataset. The SQL column type is "bit" and allows nulls. Name is: "active". This works fine with a textBox...
  3. mustangman96

    NthWord

    In Delphi6 in the Psock unit there was a function called 'NthWord' which returned the nth word of a string. I can't find it in Delphi7. How does it work in Delphi7?
  4. mustangman96

    TADOQuery and TIDTCPServer

    Hi, The TCPServer starts a new thread every time a new client joins. I don't think that you have to do it manually. MustangMan96
  5. mustangman96

    Delphi - Sybase Connection

    Hi! I'm a newbie in Delphi and Sybase programming. (I was working with VFP and MySql.) Can you briefly describe how to connect from Delphi to a Sybase database and make my first query? Thanks!
  6. mustangman96

    sql command

    Hi You can build up the SQL text from variables. CASE <user selects shipmentdate>: sVar1=&quot;shipmentdate&quot; <user selects canceldate>: sVar1=&quot;canceldate&quot; <user selects orderdate>: sVar1=&quot;orderdate&quot; ENDCASE sSQLtext='SELECT * FROM myTable WHERE '+sVar1+'=myDate...
  7. mustangman96

    BackStyle problem in VFP8

    It works if I convert my images from gif to bmp.
  8. mustangman96

    BackStyle problem in VFP8

    Our company switches from VFP6 to VFP8. We recompiled our existing products and found the following interesting thing. If VFP8 the BackStyle (transparent) properity doesn't work the same way like in VFP6. e.g. We have a picture with white background - the white color disapears in VFP6 but not in...
  9. mustangman96

    TIdTCPServer - MaxConnections problem

    Thanks for your help. I've installed the latest version and it works.
  10. mustangman96

    TIdTCPServer - MaxConnections problem

    I have to write a simple TCP server with limited connections. It works with MaxConnections = 0 (unlimited connections) perfectly. But if I try to limit the number of connections e.g. MaxConnections = 1, the following happens: 1. The first computer connects. 2. The second computer tries to...
  11. mustangman96

    Mimic the '&amp;' (macro) function of VFP

    How can I mimic the '&' (macro) function of the Visual FoxPro? e.g.: ... sProc='ProcedureToRun' DO &sProc ... This works in VFP and runs the 'ProcedureToRun' procedure. Is it possible to do the same thing in Delphi?
  12. mustangman96

    Starting a Procedure or Function

    I have a graphic menu system (developed in VFP) which uses data in a text file to build itself. e.g.: The content of the text file: . . [MENU_1} MenuCaption1;CallThisProc1;Param1;Param2 MenuCaption2;CallThisProc2 MenuCaption3;CallThisProc3;Param1 . . I would like to rewrite this menu system in...
  13. mustangman96

    Starting a Procedure or Function

    Thanks but I think this doesn't help. I want to mimic the '&' (macro) function of the Visual FoxPro. In FoxPro: . sProcToCall='IwantToCallThis' DO &sProcToCall . works.
  14. mustangman96

    Starting a Procedure or Function

    I want to start a procedure or function which name is in a variable as a string. e.g.: var sProcToCall : string; . . begin sProcToCall:='IwantToCallThis'; // The name of the procedure . . // and here I want to call the procedure Please help me!

Part and Inventory Search

Back
Top