-
- search form
by NILKAMAL
- 14 Replies
- Last post
by NILKAMAL
- hi!
can some one help me for this
i want to creat search form as below
1) option button - fielda
2) option button- fieldb
3) option button - field c
here is i place one textbox for user can put value and search button to search
and if record found then go to my my form with this value
thanks
-
- VFP MVPs - Please Contact Me
by Joe Morel - MSFT
- 4 Replies
- Last post
by CChalom
- To all VFP MVPs:
If you do not currently have moderator permissions in this forum and would like them, please send me some email at joemorel AT microsoft DOT com. I've noticed situations in which you might like to create some sticky announcements or FAQ posts, and I'd like to help you get the tools you need to make these forums work for your community.
Thanks all!
-
- how to create a setup wizards?
by honey1016
- 2 Replies
- Last post
by AndyKr
- Sorry for the incomplete questions before. Yes, i know how to build an executable but i really don't know how to create a setup wizards in Version 7.0 but in Version 5.0 you can only click the Tools--->Wizards--->Setup. Where's the Setup Wizard in Version 7.0
-
- Using VFP6 to hide sheets and protect book in excel
by mrfitness
- 7 Replies
- Last post
by Cindy Winegarden
- I used a program to copy results of a query into an excel sheet. Now I would like to hide two sheets that I renamed in the program - 'High' and 'Med'. I would also like to protect the book. How can I do this Is this even possible Some sample coding below: esheet=1 loExcelTemplate.sheets[esheet].select oActiveSheet = loExcelTemplate.ActiveSheet oActiveSheet.name = "High" &&RENAME
-
- Combobox Default Value
by Derek Dowle
- 6 Replies
- Last post
by Derek Dowle
- I am using a combobox on a form in VFP9.
The form has a series of comboboxes which assist the user in filtering records.
Each combobox has RowSourceType = 2 and RowSource = "the name of the cursor"
Each combobox displays the correct list of options when the form is run.
When the form is run all the boxes appear empty.
I need one of the comboboxes to display a default v
-
- help needed on troubleshooting label printer problem
by jimcjr
- 9 Replies
- Last post
by Naomi Nosonovsky
- I've inherited a Visual Fox Pro application (originally written in Foxpro for Windows, but more recently compiled with VFP 7 and then VFP 9). It creates several different types of labels using the standard .LBX and .LBT files that the Foxpro label designer creates. (All of the users are running the application on Win XP SP2 machines.)
The labels were designed using a Smart Label Printer Pro
-
- Activex in VFP
by MPAZ
- 7 Replies
- Last post
by AndyKr
- I am new programmer in VFP. I am using a VFP 6.0
I have a VB ActiveX, I insert this control in a form in VFP.
It's OK.. but my problem is that one method of this control, recieve a parameter type VT_PRT.. And i don't know how means that and how this pass this parameters
-
- refresh form
by NILKAMAL
- 14 Replies
- Last post
by Naomi Nosonovsky
- hi!
i create simple form with table field and i create another two textbox in sam form (which is not table field) when i go to next record the table field got refresh but other two textbox have same value of previous record so can anybody tell me how do i do to refresh all field including textbox( not table field)
thanks
-
- Answered: Trying to make a simple "Hello World" type program..
by TheLoon
- 2 Replies
- Last post
by Alex Feldstein
- This is the ultimate Foxpro n00b question. Please ignore it if it annoys you. Trying to get back into Visual Foxpro 6. I figure the best way is to attempt a "Hello World" type program with just a form and a button with no code. I create the project and then create the form. I then added a button with no code. It compiles just fine but when run stand-alone the form appears for a brief second and ex
-
- Off the screen
by zahj
- 8 Replies
- Last post
by dni
- When i compiled my program as an application, i didn't experience errors while running it. but when i compiled it as an executable program, i get an error that says " ROW OR COLUMN POSITION IS OFF THE SCREEN"
I tried compiling it again but i still get the same result. Application is ok but executable is not ok...
Help me out please...
-
- How to use the field validation rule?
by Lightening
- 10 Replies
- Last post
by Naomi Nosonovsky
- Try to save some code, such as :
If empty(name)
messagebox("Name field cannot be empty.",16," Alert")
return 0
Endif
How can I put the expression in the field validation rule box Unable to find examples in the help.
-
- Application reinstall using install shield.
by Aleniko
- 9 Replies
- Last post
by Rick Borup
- Hi; I have created a setup program with the install shield supplied with VFP9. Install went OK, but then I realized I need to have some additional files like the runtime libraries etc. On the second try, Installshield wants me to remove the old installation using ADD/REMOVE from control panel. The problem is that I cant find the installed program anywhere in the add/remove programs. I am also not
-
- Outlook attachement drag and drop
by LeoLems
- 1 Replies
- Last post
by dni
- Hi everyone,
I am hoping someone can help me with this one...
I am looking for a way to save a MS Outlook email message attachment(s) to file(s)
The drop will be on a visual foxpro control (doesn't matter wich one)
It is similair to a drop of an email attachment on the desktop, this will come out as regular file(s)
greetings,
Leo
-
- arabic
by bijansaba
- 7 Replies
- Last post
by Dina Lasheen - MSFT
- hi
i want write arabic in the textbox (right to left)
what must ido
-
- How can i stop rounding in a grid?
by gbyt
- 3 Replies
- Last post
by Rick Borup
- I have a grid in a form in visual foxpro and when I try to type a quantity like 1233.92 press enter and when the text box lost focus it displays 1234.00 without any decimals. Please someone who give a clue!
-
- Output Program/Utility
by Brian Branco
- 5 Replies
- Last post
by Naomi Nosonovsky
- I have a client with the following reporting requirement.
An example would be the report would run off A/R data and the customer uses the source field to categorize customers.
Customer A - NJ1 - Invoices dated 03/01/07 - 03/09/07
Customer B - NJ2 - Invoices dated 03/10/07 - 03/31/07
Customer C - NY1 - Invoices dated 03/15/07 - 03/31/07
Customer D - NY2 - Invoices dated
-
- Using VFoxPro 9 and SQL to create a table
by Zaphod2003
- 9 Replies
- Last post
by Zaphod2003
- Can someone tell me what's wrong with this code
CREATE TABLE countries( ;
id n(10,0) PRIMARY KEY , ;
ccode c(2) UNIQUE , ;
CHECK ( LEN ( ALLTRIM (ccode))=2) ;
ERROR "Currency code must be 2 characters", ;
currency n(10,0), ;
CHECK ( currency >0), ;
cname c(30) UNIQUE ;
)
I have indentified the problem to be with the code CHECK (
-
- New to Visual FoxPro
by youngseanyoung
- 6 Replies
- Last post
by youngseanyoung
- Greetings & Salutations,
I'm new to the software, but the company I recently joined has been using it for ten years to create their proposals. Trouble is, they are using version 0.921.8.
My question is this . . . is it worth trying to find a resource I can utilze to upgrade my datatbase within this old a version, or am I better off just starting from scratch.
-
- Too many report copies
by Albert Gostick
- 2 Replies
- Last post
by LeoLems
- Hi,
I have a VFP9 app where the users can check off multiple reports to print (often 4-6) and then set via a screen the number of copies each (often 3) and then just say "Print them" (this is all VFP code). To handle this and free up their machine immediately, I have passed off report generation and printing to a server. This works most of the time but regularly the users complain
-
- Problem when using "call some_func()" with SQLEXEC-Connectivity error: [Oracle][ODBC][Ora]ORA-00907: missing right parenthes
by RDarius
- 9 Replies
- Last post
by RDarius
- Hi, I have problem when using "call some_func()" with SQLEXEC. Is this ODBC problem or FOXPRPO 9.0SP2 nHandle=SQLSTRINGCONNECT("DSN=pcv;DBQ=192.168.0.123;UID=pcv;PWD=pcv;BTD=F;NUM=NLS;FWC=T") id_doc=61 doc_nr='TEST0000001' SQLEXEC(nHandle,"call pcv.mp.test_call( id_doc, doc_nr)") =1 commited SQLEXEC(nHandle,"update pcv.b50_headeriai set b50_op_numeris= doc_nr wh
-
- Foxpro 2.6 application
by kuuku
- 4 Replies
- Last post
by Lakshmi N
- Hi,
I have an appliction in FPD 2.6a. It was running well on win98 untill we move to win xp. It complains of 'Insufficient Memory' especially when its to display a report or drive selection box.
I have set EMS to 10240, compatibility to win98.
Is there anything i can do to rectify this problem.
-
- Report to HTML output problems.
by Aleniko
- 7 Replies
- Last post
by Aleniko
- Hi; I'm wondering if some of you experienced problems with how HTML reports are generated in VFP... I was experiencing small problems like information in the title band not showing etc, but yesterday I got this problem: An html output is generated perfectly on my XP pro machine. But when I deploy the program on a win2003 server, the result of a generated html are all messy and ugly. This happens w
-
- How to 'multithread' ServerXMLHTTP in FoxPro 7?
by SJH22
- 8 Replies
- Last post
by Claude Fox
- So, Ive got a dilema and maybe some of you can help me. Im using ServerXMLHTTP as an object to download about 500,000 web pages and I need to figure out how to run multiple instances of XMLHTTP.
For simplicity sake, this is what I have right now:
objXMLGET = CREATEOBJECT('MSXML2.serverXMLHTTP')
FOR x = 1 TO 500000
ThePage = " http://webpage id =" + STR(x) objXMLGET.Open
-
- VFP6: Problem saving data
by MillBear
- 6 Replies
- Last post
by AndyKr
- Hi all
The VFP database system is running in the server so that all the workstations can share it.
The user complained that she could not save the data after amending. I tested to see whether I was able to save it on my side. It works successfully. I went back to the user¡¯s workstation to verify it but still the same problem. I tried other workstations and found no problem so far.
-
- application question
by dvidal
- 3 Replies
- Last post
by dni
- Hi,
I have the following problem: when I run a form in fox environment, it runs well. Then, I generate a file with extension .app that includes this form. But when I want to execute the file .app from windows, it executes the form and it disappears immediately. How can i solve this problem
I work in visual fox pro 7.
Thanks,
.