Answer Questions
Robert Lettan i just wanna do it like this
can i do that thank you everyone. http://www.universalthread.com/wconnect/wc.dll LevelExtreme~2,2,9703 To anyone that'd use MultiSelectGrid class. Please use original unmodified version. Period. Multi-select is not directly supported by the grid control. You can add a Logical column to the query that generates the cursor used for the grid, then check the rows that you wa ...Show All
Clav Using controls to display info from a table.
I have a table with employee info in it ranging from Pay scale to date of birth. I have 3 fields: Full-Time, Part-Time & Temp. If the field is true I have a 1 in it & if false a 0. I'm creating a form to display info from my table yet I'm not quiet sure how to display the full-time/part-time or temp info. Would a check box section work or option buttons. I don't want the person viewing the form to ...Show All
steveo9916 Connecting VFP applications on Wide Area Network (Client-Server).
How do I connect VFP Application running on windows Small Buisness Server through WAN You want a cost effective solution. 1. Dial up - its feasible but not a good idea. 2. Dedicated Lease Line - you need to subscribe from your telecom company for a lease line, modem, branch office routers. 3. Internet - since you have internet connection, you can use it to established an online connection. If your ...Show All
lennie foxpro *
I have a program that we developed in foxpro 8. I want to make it mac compatible. can anyone help me You can run your VFP application inside the RDP client for Mac: http://www.microsoft.com/mac/otherproducts/otherproducts.aspx pid=remotedesktopclient Sorry Amy, but VFP stopped being compatible with Mac at version 3.0. ...Show All
Teknologik MSComctlLib.TreeCtrl.2 Problem
Working with the treeView Control I ran into an unexpected problem. It appears to be impossible to collapse a node branch programmatically. Collapse is an event, not a method and when I tried to use it as a method I could not get anywhere. I also tried to employ DblClick with the same negative result--the tree does not budge. Aside from Collapse I will need Expand as a method not event, although I am using it as even already. The expansion ...Show All
mdulsy table buffering mode
On a statement like this: IF NOT initTableEmpty TABLEUPDATE () ENDIF I get an error: This operation requires table to be opened in buffering mode . SQLBUFFERING is set to ON before the table is opened. It does not help. Actually the error happens once in a while for no reason. I cannot understand what triggers it. Most of the time the statement works. The USE command does seem to have no option for buffering either. Is any h ...Show All
Prashanti how to define an array?
I have this situation. There are two functions in a prg file. The first function is major, the second one is simply a container for a large DO CASE ENDCASE clause with about 18 macros for different choices. Those macros do the following (individually): SELECT FROM <table name> WHERE ... INTO ARRAY arr1 The main function gets a cAlias as an output parameter and this parameter is used to address the second function. The return value for t ...Show All
KNLReddy remote data
I want to create a system with 1 database and many users that can access it a solution is the server client model ok lets say we have a database in a remote server(vfp database) i go to each client and make a datasource and a connection to that database 1)the tables of that database will ONLY be viewed by clients through remote views 2)if yes ,i will put the views in the data enviroment 3)if yes,i can insert,delete,update,buffer...etc the views ...Show All
EricSmith Deleted records still getting fetched
ok so I have deleted records in a VFP 6.0 table, and when I query anything the deleted rows still get pulled up, what am I doing wrong yes that worked, thanks very much! That's because the actual syntax does not use a "=" ( I was saying that the return value of the function is "ON", i.e. SET( "DELETED" ). To actually change the setting use: SET DELETED ON or yo ...Show All
MikeH2005 Cancel Button Does not work--A known bug?
I have no idea if it is a known bug. The important fact for me is that it is a bug. It occurs in _VFP.StartMode = 4 as well as in interactive session (_VFP.StartMode = 0). It caused me to lose numerous error records before I realized what was going on. In exe environment when one error follows another there is no way to quit because the Cancel button does not do what it is supposed to be doing. You crush the system and no records are saved of ...Show All
Kris B Any better source code to search for file/folder
hi all, I've just finished a small program to search some filetype on my harddisk. The code run very well but it seems to me that it 's a bit too.... lenghy. Is there anyway else to search file without having to use ADIR function *//CODE SearchFile("D:","mp3") &&This will show the number of all mp3 files found on drive D: *//Contain of file SearchFile.PRG parameters cStartFolder, cExtention private _nCount & ...Show All
Ksa_Java SELECT statement is showing unwanted display of data and is not passing data to a table.
I'm using a SELECT statement to pull out data from a table... that is working great. What I'm trying to do is feed the selected data to a different table using REPLACE so that it can be used by a report. All of this is triggered from a command button on a form. Here's the code for the CLICK property of the button: SELECT store, stock, year_1, make_1, model_1, auction1, transport, recon, sold_for, fees, net_check, result ; FROM wholes ...Show All
vbuser1 Use or not BLOB fields with SQL Server
Hi: We are deciding which would be the better approach for managing a lot of files ( PDF, JPG, DOC, DWG, ETC. ). We are speaking about thousand of files and thousand of megabites. As far as we are developing with VFP 9.0, we would be able to use BLOB fields. But we are not sure if it will be the best choice for us, taking in account, the amount and sizes of the files. Could anyone help us Regards, Ana Madrid, Spain www.amby.net www.PortalFox.c ...Show All
techexpert78 _urlcombobox problem
I am trying to use this object since it offers much convenience as opposed to shellexecute. This is the problem I run into. When I issue commands in INIT: THIS.AddItem ("www.msn.com",1,1) THIS.AddItem("www.yahoo.com",2,1) THIS.AddItem("www.pdr.net",3,1) The items appear in combobox doubled. This set of urls is repeated twice! Not every url is doubled individualy but the whole set of three urls. This i ...Show All
Soulia Cursors, Views, and Grids
Using VFP8... I have a simple form with a grid. I want to use a cursor object to use as the record source for the grid so I can let the user change which column to sort on. I Select and order the data and create the cursor (csrTemp) in the form.init, the view that is used in the Select is in the Data Environment. I'm not sure how to reference the cursor in the data source for the grid, when I run the form it seems like the order is from ...Show All
