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

  1. AChiado

    Voodoo Web Controls

    Hi, thanks all for your reply. [jimooo] > It is not a stand alone product. Reading documentation seems it can be used with web-connect or with ASP-enabled web server. In effect it is buy-able both with web-connect or not. Now I try to write them; when I have some more informations I can...
  2. AChiado

    Voodoo Web Controls

    Hi all, anyone uses Voodoo Web Controls here? http://www.eps-software.com/voodoo I think it is very interesting, but I cant found a demo version so I want to ask before spend for it. Impressions? Thanks Andrea C.P. Italy [atom] Turin
  3. AChiado

    Session Class - Design or bug?

    Hi, Thanks all 2 for your reply. For Mike The sample was only for test it. I'm creating a Telnet Server with Vfp based on winsock to connect with a lot of wireless barcode terminals. My app create a new container for each connection in which I add some controls to connect with AS400 and...
  4. AChiado

    Session Class - Design or bug?

    Hi all, I have a problem with session class and I dont know if i'm wrong or it is a vfp bug. When I add a session control to a container with .AddObject() the session control dont create a own datasession. Instead if I create it with CreateObject() it creates a own datasession. I use vfp 7...
  5. AChiado

    Fatal Error

    cslawtom, I'm not so sure it's a VFP problem I had C00..5 error in my programs using odbc for hight intensive update and insert. I tryed a lot of solution but the problems persist. C00...5 disappeared when I updated MDAC and SP3 on W2k. On WinNT I did not found a solution, so I update it to...
  6. AChiado

    EXCEL - ActiveSheet.PrintOut

    Hi, Chris, Mike, thank you I find the solution in VBAXL9.CHM. The EXCEL PrintOut Method can have parameters. espressione.PrintOut(From, To, Copies, Preview, ActivePrinter , PrintToFile, PrToFileName, Collate) so I can set mySelectedPrinter as a parameter. It works fine Thank you again...
  7. AChiado

    EXCEL - ActiveSheet.PrintOut

    Hi Mike, thank you for your reply. I try to SET PRINTER TO NAME "&cMyPrinter" but output goes always on default printer. Where I'm wrong? Andrea C.P. Italy [atom]
  8. AChiado

    EXCEL - ActiveSheet.PrintOut

    Hi all, I create an excel object to automate Excel. I can print my document with oMyExcelObject.ActiveSheet.PrintOut but how can I say excel what printer to use? There is something like oMyExcelObject.ActiveSheet.SetPrinter("WindowsPrinterName")? Now it send printer output to...
  9. AChiado

    Dynamic image in .FRXs?

    Hi mcoupal, you can store your filename in a variable Es. myPicture="c:\pict.jpg" Then in the controlsource of oleobject in your report put &myPicture Andrea C.P. Italy [atom]
  10. AChiado

    Vis0001

    Sheronne, try: ThisForm.MyGrid.RecordSource="MyCursor" ThisForm.MyGrid.Init Andrea C.P. Italy [atom]
  11. AChiado

    Security Timeout

    Finsys, Screen object have not MouseMove event but if you can simulate a screen object creating your ScreenForm defining it as Top Level Form (ShowWindow=2) and define his MouseMove event. Then you have only to define your existing forms as In Top Level Form (ShowWindow=1) so they are placed in...
  12. AChiado

    Security Timeout

    Hi FinSys I had similar problem. I modified my base class (form, text, label etc...) and I put in KeyPress and MouseMove events nMyCounter=0 and then I trap it in Timer event If you havent a base class for your object you can create it and then open your forms as a table and modify field...
  13. AChiado

    PRINTING REPORT TO SLOW

    Hi venado, if you are printing on a dot printer the problem may be use of graphical font. If so you can do this: send your report to a file SET PRINTER TO mytextfile.txt SET DEVICE TO PRINT @ 0,0 SAY ... @ 1,0 SAY ... ... SET PRINTER TO SET DEVICE TO SCREEN and then...
  14. AChiado

    Memo field data loss

    Hi, you can use FLUSH command to ensure that modifications you make to all open tables and indexes are saved to disk. Andrea C.P. Italy [atom]
  15. AChiado

    sql or not

    Baltman your use of sqlprepare have no advantage. sqlprepare simply compile your statement in the server for a fast repeated execution. if you run cSql="UPDATE MyTable SET field1=999 WHERE field2='XXX" sqlprepare(nConnHandle, cSql) sqlexec(nConnHandle) you only cause a double...
  16. AChiado

    Object reference

    Mgagnon, Ramani, thank you for your reply. Ramani: if I refer to a form property from a program in VFP it works fine, but if I do it in my exe it give me that error. It is becouse VFP create variables as public by default in command window I think. If I follow mgagnon suggestions it works...
  17. AChiado

    Object reference

    Hi all, I cant find out how to refer to a form in my program I have Form (Eg FORM1) with a formset that contains 2 forms (FormA and FormB) when I click on a button on Form1.FormA I hide FormA and run a new form (Form2) whit 2 forms(FormC and FormD) Well, when I release Form2 I want to show...
  18. AChiado

    Free Zip/Unzip ocx

    Hi all, I found this Free Zip ocx for VFP I've downloaded it and take a look of documentation but I dont have tried it becouse I'm a little busy I dont know if you already know it but I think it can be useful Take a look at http://www.eetasoft.ee/zipmaster.htm Andrea C.P. Italy [atom]
  19. AChiado

    VFP 7.0 need to add a record without opening table

    Hi Betty, if you create an ODBC connection to your database you can insert in your table without opening it cSql="INSERT INTO YourTable (field1...) VALUES (val1...)" sqlexec(nConnHandle,cSql) ODBC open your table, insert records and close it. But why?? Andrea C.P. Italy [atom]
  20. AChiado

    send attachment via mailserver

    Hi, try thisform.MailService1.Message.AttachmentIndex=0 thisform.MailService1.Message.AttachmentPathName = outputFile &&& not &outputfile thisform.MailService1.Message.AttachmentIndex=1 thisform.MailService1.Message.AttachmentPathName = outputFile1 ... Andrea C.P. Italy [atom]

Part and Inventory Search

Back
Top