Hi Jhall01,
I had about the same problem as you have now, what I did was creating a table called fields (or whatever you like) and added fields like fieldname, showname, length, sortorder, etc... so you could get a table looking like this :
FieldName - ShowName - Length - SortOrder
fname -...
In reply to your last post here, you're not a doofus :) You gave me some great assistance, thanks for the help.
The first character of my field names begins with the field type, so the n and d stands for Numeric and Date.
I fill up an array (Session.myArray) with finds users make in my database, when they hit submit I generate my query based on the values in the array :
the values in the array are
[x][1] : FieldName
[x][2] : Symbol (=, >, LIKE, <=, etc)
[x][3] : string or value entered by the user
[x][4] : 'And'...
This should work, however instead of using Perform Find
you can do the following :
Enter Find Mode[]
Insert Calculated Result[Select, FieldName, Value]
Perform Find
If there are any other fields in your find, specify these in your 'Perform Find'(checkbox 'Restore find requests')
or you can...
Hi Guys,
I've created a dynamic form and I added a submit button to save the updated data. I've used <CFUPDATE> because I don't know wich fields will be in the form (this is based on certain chooses the user makes).
<cfupdate datasource="Myconnection" tablename="DBname"...
With the developer edition of Filemaker you can create standalone runtime applications that can be run without having FMpro installed, these are royalty-free and can be sold by you, however all these applications are single user.
a loop is always build like this :
go to record/request/page [first]
loop
...
go to record/request/page [Exit after Last, Next]
end loop
so in order to stop the loop when it reaches it last record, you must always choose 'next' from the specify pull down menu and then a check box will appear...
Hi experts,
In VFP7 there's a function to convert a XML file to a cursor or table, can someone explain me how this is to be done. If possible with an example.
I checked the help about this function but can't figure out how it works.
Thanks
Fleer
I created an excel application in VFP, but I can't find out how I can insert a Horizontal Page Break in my XL-file
this is an example prog.
PUBLIC poxlApp
poxlApp=createobject("Excel.Application")
poxlApp.Workbooks.Add
poxlApp.Range("A2").Select
and then to insert the...
If you want to go to the next textbox using the returnkey try something like this. In this example I have 4 Textboxes, I all named them Input. Once you reached the last Textbox, he will go back to the first one.
Private Sub Input_KeyDown(Down As Integer, KeyCode As Integer, Shift As Integer)...
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.