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...
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
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...
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...
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...
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...
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]
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...
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]
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...
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...
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...
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...
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...
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...
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]
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]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.