Software Development Network Logo
  • Game Technologies
  • VS Team System
  • Visual Studio
  • Visual FoxPro
  • Microsoft ISV
  • Smart Devicet
  • SharePoint Products
  • Windows Forms
  • Visual Basic
  • Audio and Video
  • IE Development
  • Windows Vista
  • .NET Development
  • Visual C++
  • SQL Server

Software Development Network >> Visual FoxPro

Visual FoxPro

New Question

Visual foxpro 9 watch hang
Interactive queries in an executable
where condition too complex?
Activex in VFP
Cannot update table on VFP9 connected in peer-to-peer network
Cursoradapter Browse - Enter Key Doesn't Work
Grid class
mscomm32 issue again
join confusion
DSN Creation

Top Answerers

Carl Daniel
Imanol
Aditya.P
detzX
MLG_CSE
JoeSmith
arkiboys
Dwebs
son of dad
JRB
Breast Cancer News From Medical News Today
Only Title

Answer Questions

  • Ben Vanik Imagelist control

    I want to add the imagelist control to the treeview control(ocx) but I keep getting a message that I have to initialize the imagelist control first. How is this done The treeview works fine. Both ocx controls are dropped on the form but I have been consistently getting the error. Appreciate the help. >What is the website Dave's site is at: http://www.geocities.com/df_foxpro/ Thank you very much for your answer. I placed this code into the init and I now receive: ole idispatch exception code 0 from treectrl: invalid object The bad part about this is that I have a functioning example of this tree control/ imagelist relationship in Fox 5.0 but ...Show All

  • Boris Mueller VFP 9 Remote View

    Dear Sirs, I have a VFP 9 database main.dbc & about 25 tables. it's installed on a server. I have made a connection in order to use SQLEXEC command to select few records from the main table. sqlconnect then sqlexec(ln,"select * from table1 where var $ fiedl1",cursor1) this command is running well for many tables, but when run it on a table that contains a field where its type is AUTOINCR, the SQLEXEC return error. Is someone know the solution for such a problem thank you in advance The ODBC driver does not support database features introduced after VFP 7.0. This includes AutoIncrementing Fields. You must use the OLEDB Provider (easiest to use a CursorAdapter then) to access VFP Data if it cont ...Show All

  • Andrew Stanford Files open under windows 2003 server

    Hi; I have an installation of WinXp and Win98 machines on a win2003 server. I have noticed that some VFP files (like dbf,cdx,mem) remain open after the user has quit the application. I see these file in the 'open files' section of the file server management. It may take a few minutes before the files get closed. Any one knows what is the reson for this, and also would an open file on the server bee seen as an open file in VFP Thx. Cetin; Just wondering: Why would a set default to server dir affect files staying open Probably they're doing a set default to server directory. Change their default to a local folder before they quit. ...Show All

  • Nightman28 Framework in VFP...

    Hi all,          I'm planning to develop a framework for my development environment. The framework should enable me to automate most of the development process . Please help me with suggesting the directions to go about and things to consider...      Please tell me if there exist any such products....that can be customized to my own needs... Thanks in advance. Regards, Markish You may want to look at this book http://www.hentzenwerke.com/catalog/buildfox.htm I think there is both good and bad advice in it, so read carefully. There are also some .Net books that can help: http://www.apress.com/book/bookDisplay.html bID=279 http://www.apress.com/boo ...Show All

  • Nadeem_iqbal Error in Building EXE when reportlistener used

    Hi All, I use reportlistener for my reports and i have this piece of code in my prg to run reports procedure repoDemo lparameters tcLanguage, tcForm, tcDest, tcPrompt, tcCall, tcTitle, tnFlags local oPrevCont, oRepListner, lcLanguage oPrevCont = null wait window _reportpreview do (_reportpreview) with oPrevCont oRepListner = createobject("ReportListener") oRepListner.listenertype = 1 oRepListner.previewcontainer = oPrevCont report form (tcForm) object oRepListner release oPrevCont release oRepListner endproc && repodemo i use the windows default ReportPreview Container and ReportListener Class. i run my exe from the VFP IDE, we have this facility to run the Exe in the VFP IDE and i can come back to the IDE from the exe. ...Show All

  • SainiRahul how to pause scan endscan

    I have a scan endscan, which opens a form. I would like to pause the scan from executing the next line after opening the form. How can I do code sample: select somecursor go top scan gather information from somecursor open a form (wait until the form closes) execute another line endscan You can make the form a modal form. There is a property on the form: WindowType = 1 If your form is a class loForm = createobject("YourForm") loForm.Show(1) ...Show All

  • Nick Tompson buffering, Rlock() and FLOCK()

    Hi; I think I don't understand the concept of buffering. Can someone explain the following behavior I have a form which uses opt. table buffering. While that form is open by a user, I manually rlock() one of the records. Then, I ask the user to change the same record. The change, including the =tableupdate() goes through fine. I try the same with FLOCK(), and the change still goes through fine. Shouldn't FLOCK prevent the user from comiting a change thanks. OK - let me explain again: User A opens up an application and goes into a form. The form has a table that is open in an optimistic table buffering. At the same time, user B (Which happens to be me) opens up VFP, and issues the following commands: us ...Show All

  • John Oliver (UK)MSP, VSIP Command Buttons in Grid

    FoxPro newbie, working on foxpro 7.0 and im trying to place a command button in a grid. I haven't been able to view the code that makes up the form, only event/property/method codes. There a trick where you use a wizard to build the grid and replace the text boxes it puts in with combo boxes or something else. What i did set the text boxes visible property to False and then I put in a command button that uses it's value. When I run the form the column with the command button doesn't show anything, when you click on the field you can see the button and click it. when you move to another field and click it disapears from the last field and appears on the currant one. i set bound property to False i don't know what else to do. any help is app ...Show All

  • vga Caps lock ON when application activate.

    Can I trap the 'activate' of my app I want to turn on caps lock every time the user selects the VFP application. I don't want to do this at the start of the app because the user may minimize the app and then get back to it. Thx. I am sure activate even would help me... But I am not sure where do I find the activate event of my entire application... I was thinking of puting this in the activate event of my base form class, but I thought maybe there is a better way to access the activate of my entire app. Is there Thanks. Hi Aleniko, I agree partially with Don's reply to that ( if you really need to store them uppercased then set format to "! ...Show All

  • aztec2_step set printer problem.

    Hi; What's wrong with this: cPrinter = getprinter() set printer to name cPrinter It always errors "Error accessing printer spooler" On the other hand, set printer to name getprinter() works fine. Thx. You have to use macros or named variables: cPrinter = getprinter() set printer to name (cPrinter) HTH ...Show All

  • aguess RSA Public/Private Key Encryption in VFP 9.0

    Hi, I need to be able to decrypt data pulled from a MySQL table encrypted with RSA public/private key encryption within a FoxPro application.  I am currently using the FoxPro Foundation Class known as _cryptapi as a wrapper to the CryptoAPI interface.  The problem I'm having is that I can't seem to figure out how to decrypt a RSA encrypted string of data.  I know that the _cryptapi class provided by Microsoft uses the Microsoft Base Cryptographic Service Provider which in itself uses RSA public key encryption algorithms, but for some reason I am having the hardest time finding the methods that support this in the _cryptapi foundation class.  I have found methods for symmetric block and stream ciphers but that isn't wha ...Show All

  • David S. Anderson application and webdata interacting.

    ok first off here is some info about my webserver: i dont no if you needed the information but maybe you do General server information: Operating system Linux Kernel version 2.6.17.11-grsechg Machine Type i686 Apache version 1.3.37 (Unix) PERL version 5.8.7 Path to PERL /usr/bin/perl Path to sendmail /usr/sbin/sendmail PHP version 4.4.4 MySQL version 4.1.21-standard cPanel Build 10.9.0-CURRENT 117 Theme cPanel X v2.6 ...Show All

  • DazlerD New problem about imgscan.ocx

    I use imgscan.ocx to scan a picture in vfp form. The problem is that the picture in *.bmp I got from scaner can't be opened in VFP. But I can open it using paintbrush or imageedit. And the picture size is much different if using scanwise to scan (2MB using imgscan.ocx, 156kb using scanwise). I can open the picture that scan using scanwise by vfp. The vfp code in scan button of vfp form is: thisform.olecontrol1.openscanner thisform.olecontrol1.image=thisform.picturename thisform.olecontrol1.startscan thisform.olecontrol1.closescanner thisform.release Can anyone help me Thanks a lot! Take a look at this link. It seems to imply that you need more than just ImgScan.ocx http://www.ilixis.com/developer/kodak_requirements.html ...Show All

  • Nathan Kerr Source from internet

    Where can I find a source on the internet where will be wethear forcast for Slovakia and the other world... I want to include it in my program, to show the weather forcast, just temperature, humidity, air pressure, wheter it will rain, or snow, etc. Don't know wheather this kind of source exists... Thank for your advice Can someone give me a sample code how to extract infos from such a site Dont know how to work with such a webservices... Or is there another way how to get wether infos and forcasts to my VFP program Or read an url adress and extract infos from the site... Don't know if you understood me... or any other easier way to do so Any advice If you wa ...Show All

  • Sam Vella How to email with Chinese characters

    I used the code provided by Dave M. as follow: loConfig = CREATEOBJECT('CDO.Configuration') loCdoMessage = CREATEOBJECT("CDO.Message") loCdoMessage.Configuration = loConfig loCdoMessage.From = "info@wantit.nl" loCdoMessage.To = "info@microsoft.com" loCdoMessage.HtmlBody = "Body text" loCdoMessage.Addattachment("c:\file.doc") loConfig.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 loConfig.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "yoursmtpserver" loConfig.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25 loConfig.Fields.Item("http://schemas. ...Show All

111213141516171819202122232425262728

©2008 Software Development Network

powered by phorum