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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by moshi

  1. moshi

    How can i copy folder

    Simply write the following code : ! /n xcopy Source [Destination] Suppose I want to copy the d:\temp directory into d:\rafiq Then write the following code: ! /2 xcopy d:\temp d:\rafiq\temp /i /y /e here the parameters mean: /2 : dos window active and minimized /i : if the soursce...
  2. moshi

    Calling a DOS exe from foxpro

    suppose exe file name is myexe.exe Now write the following code in your program: run /n myexe.exe Hope this will solve your purpose
  3. moshi

    How to add a new DSN programmatically

    Write the following code in VFP : LOCAL lcDriver,lc_dsn,fResult # Define ODBC_ADD_DSN 1 Declare INTEGER SQLConfigDataSource IN odbccp32.dll; INTEGER ,; SHORT ,; STRING @,; STRING @ Lc_Driver = "driver name" +CHR(0) lc_dsn = "dsn=MyFirstDsn"+CHR(0)+; "Server=server...
  4. moshi

    HOW DO I REMOVE TITLE BAR ON FORM

    Hi, You can remove title bar from a form by setting the following properties in property window: Set the Caption property to "" Set the ControlBox property to .F. Set the MaxButton property to .F. Set the MinButton property to .F. Set the Movable property to .F. Hope it will solve...

Part and Inventory Search

Back
Top