Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Premal Vala

    Set a TAG for a field programmaticaly

    Hi, Tag is not part of table structure in VFP, you need to use INDEX ON Command for any Tag you want to create. So, for your example above, once you open the table (exclusive) you need to add following command: INDEX ON CCIDA TAG CCIDA (as Paul has already mentioned) This will create you...
  2. Premal Vala

    Facing issue with Selenium version 4 and above with VFP

    Hi Chris, Thanks again for your response. But I am updating the selenium within the VS.Net project with NuGET package, which means references are automatic updated. Also, I tried creating a DLL from completely new project of VS.NET with newer version at first go but that to leads to the same...
  3. Premal Vala

    Using 1 table in 2 different forms

    Hey Hi Filip, as mjcmkrsr explained, setting DATASESSION property to 2 (PRIVATE) should resolve your issue. Also, better to add AGAIN clause in your USE statement, this will avoid any error of "ALREADY IN USE"
  4. Premal Vala

    Facing issue with Selenium version 4 and above with VFP

    Hey Chris, My bad on not providing details, here it is. Below is my C# code: using OpenQA.Selenium.Chrome; using System; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Threading; using System.Threading.Tasks...
  5. Premal Vala

    Facing issue with Selenium version 4 and above with VFP

    Dear Experts, I am using Selenium with VFPA via C# dll. I have created COM DLL with C# within VSS. I am using it successfully once registered with REGASM. However my problem is with Selenium .WebDriver and Selenium.Support version. My DLL and automation is working fine when I am using Selenium...
  6. Premal Vala

    Print out and Screen Zoom Faktor

    Hi Chris, I faced this issue but was able to solve by windows High DPI settings. You can set "High DPI Scaling Override" feature. Right click on your program icon and click properties and then select "Change High DPI Settings" and tick "Override high DPI scaling behavior. Scaling performed by...
  7. Premal Vala

    VFP with MYSQL - mySQL server gone away

    Hi Chris, I am referring to this property within Database Connection Designer and I tried all values here. Secondly I am referring to this help of VFP within DBGETPROPERTY Does that help to understand my problem. Sorry if I am not putting things correctly but as said this is totally...
  8. Premal Vala

    VFP with MYSQL - mySQL server gone away

    Hi Chris, Thank you for your response. My bad on ODBC, apologies, what I mean was not using DSN as I don't won't to create DSN on user PCs hence not using it and using connection string directly. (Sorry, as new to this ODBC and MYSQL world) I also agree to your point of connection being...
  9. Premal Vala

    VFP with MYSQL - mySQL server gone away

    Dear Experts I am working with mysql database with VFPA version and facing a strange issues. To give you details. I have my database (DBC) file and I have created a connection within database named "MyConn" to mysql database with connection string (please note I am not using ODBC but using...
  10. Premal Vala

    ComboBox not showing recorded item

    You must set the value of drop down in Init Event of form from the database in the similarly way you have set the record source. So init invent you should have code as combobox.Value = Value from Record of data base and you will have to update the value every time record changes.
  11. Premal Vala

    FPCEFSHARP Browser

    Hey @Chris Miller I have come across this post lately (yesterday) https://www.tek-tips.com/viewthread.cfm?qid=1817644 and this has help me to find out a solution, which I was looking for such a long time. I have download the dll and using it without issues, however, I have few questions...

Part and Inventory Search

Back
Top