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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by megkhp

  1. megkhp

    How to select Visual FoxPro logical field from ASP.NET

    I'm writing an ASP.NET application that connecting to Visual FoxPro database, I want to select a logical field "IsActive" equals to ".T." from the "Customer.dbf", I've tried the following but they don't work: "SELECT * Customer WHERE IsActive=.T." "SELECT * Customer WHERE IsActive=TRUE" "SELECT...
  2. megkhp

    How to select Visual FoxPro logical field from ASP.NET

    Hi! I'm writing an ASP.NET application that connecting to Visual FoxPro database, I want to select a logical field "IsActive" equals to ".T." from the "Customer.dbf", I've tried the following but they don't work: "SELECT * Customer WHERE IsActive=.T." "SELECT * Customer WHERE IsActive=TRUE"...
  3. megkhp

    how to get values from a user control that created by a loop

    Thanks to both suggestions. Stsuing got that right, I figured that out after a several tries. Here's how I did it: 1. in .ascx html page, create a textbox. <table> <tr> <td><asp:textbox ID="txtAddress" runat="server" /></td> </tr> </table> 2. in .ascx code behind, add a propery to the...
  4. megkhp

    how to get values from a user control that created by a loop

    I have a user control (.ascx) that will show a list of locations based on the number from user input. For example, if enter 3, the page will list: location 1 (textbox) enter address: location 2 (textbox) enter address: location 3 (textbox) enter address: Since the user control is created...
  5. megkhp

    problem passing session variable to user control

    Context.Session("locnum") doesn't work either.
  6. megkhp

    problem passing session variable to user control

    I have a user control (.ascx) that will show a list of locations based on the number from user input. For example, if enter 3, the page will list 1ocation 1, location 2, and location 3. My problem is that I cannot get the proper number to list on the page, in this case the page will show...
  7. megkhp

    Visual Fox PRo PRG's

    Try this: Quote the variables you want to pass. spoolfile(&quot;192.9.200.16&quot;, &quot;ISC1032_:&quot;, &quot;SPL99999.001&quot;, &quot;C:\TEMPLATE&quot;, &quot;SPL99999.001 00000001 To 00000001&quot;)
  8. megkhp

    How to automatically highlight the first row of a list box?

    How do I highlight the first row of a list box when I run the form? Thanks.
  9. megkhp

    VFP Application conflict with network?

    Does anyone know if VFP 5.0 application has any conflict when installed on a network environment? The setup file is compiled with Visual Studio Installer. The application works fine on a stand-alone machine. But when installed on a network, the application does not appear when clicked (the icon...
  10. megkhp

    Fox Pro Executable

    Also, you can try to set the WindowType property of your main form to 1-Modal.
  11. megkhp

    Application screen doesn't appear

    1. When I click on the application icon, nothing happened or appeared on the screen, but when I open the task manager, it shows that the application is running, does anyone know how to solve this problem? 2. I can only run the application when I'm logged in as the network administrator, what...
  12. megkhp

    How to pass a variable to MS Word as a bookmark?

    Thank you, Mike. In fact, what I did was created some form fields in a word document, these form fields are also the bookmarks. Then I built a VFP form to capture users' input and I try to pass the data to those form fields. Anyway, I've worked out the solution: oWord =...
  13. megkhp

    How to pass a variable to MS Word as a bookmark?

    I created a several bookmarks in a word document, and I wish to pass some variables from a VFP form to the bookmarks, please help.

Part and Inventory Search

Back
Top