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 SkipVought 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. Samalia

    Creating a User Login for a Foxpro Application

    When using the application builder there is an option under the general tab to use user logins, but this seems to be a useless feature as there is no where to set up which users I want to have and to give them permissions, and when I run the application, I can simply enter in a new user and then...
  2. Samalia

    Passing values to a variable

    Thanks, it works now!
  3. Samalia

    Passing values to a variable

    Sorry, I was trying a few different things to see if the variable was working, I was trying to see if I could make it work on either page. Here is what I had before I changed things: <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <!--#include file="../Connections/Seedling.asp" --> <% Dim Agency Dim...
  4. Samalia

    Passing values to a variable

    This is the log-in Page: <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <!--#include file="../Connections/Seedling.asp" --> <% Dim Agency Dim Agency_numRows Set Agency = Server.CreateObject("ADODB.Recordset") Agency.ActiveConnection = MM_Seedling_STRING Agency.Source = "SELECT * FROM...
  5. Samalia

    Passing values to a variable

    That works for passing a variable, but it is still not getting the value from the text box, I have the textbox set so that it has an initial value of "user" and this does not show up when I retrieve the variable on the next page.
  6. Samalia

    Passing values to a variable

    I'm trying to get a variable to get the value from a textbox created in Dreamweaver that has already been defined and called username. <% session("varuser") = Request.Form("username") %> This is what I'm using to get the value from the textbox. I'm using vbscript. It doesn't seem to be...
  7. Samalia

    passing values to variables

    I'm trying to get a variable to get the value from a textbox created in Dreamweaver that has already been defined and called username. <% session("varuser") = Request.Form("username") %> This is what I'm using to get the value from the textbox. I'm using vbscript. It doesn't seem to be...
  8. Samalia

    log-in page not sending a variable to next page

    I'm trying to get a variable to get the value from a textbox that has already been defined and called username. <% session("varuser") = Request.Form("username") %> This is what I'm using to get the value from the textbox. I'm using vbscript. It doesn't seem to be getting the value from...
  9. Samalia

    log-in page not sending a variable to next page

    I need to have a log-in function that can also send the user name to the next page and then filter the data based upon that user name. When I create a log-in server behavior, it will log the user in correctly but the user name will not get passed as a variable. If I use the logged-in page as the...
  10. Samalia

    Connecting FoxPro to MySQL

    I've been trying to upsize my database and I can get to the second screen on the wizard to select a connection. I've created a connection for my computer using MySQL ODBC 3.51 and even tried MySQL ODBC 5.1 and I only have mysql server 5 installed on my computer, but each time I try to establish...
  11. Samalia

    Trouble with upsizing foxpro database

    I've been trying to connect a foxpro database with a website and I've found that a good way to do it is to upsize foxpro with the upsizing wizard. I've intalled an sql server on my computer and I've installed an ODBC driver but when I do to define a data source my I cannot find the server I...
  12. Samalia

    Set up a multiuser environment

    I've created an application, and it needs to be able to handle more than one user at a time. Whenever I try to run more than one instance of the application I get an error(#1569) saying that i tried to write to a write protected database container. Is there any specific thing that I have to do...
  13. Samalia

    Moving a Database

    I have kept all the relative paths the same, but I continue to get the same error message when i try to run the .exe. Cannot resolve backlink (1976) setcurrentuser, 8 - then it shows the path to the exe and wants to record the error in error files then another popup says that the program...
  14. Samalia

    Moving a Database

    I'm updating a database, and part of this update involves moving the whole project and database to a new location. I have validated the database and everything runs fine when I do so within the project. But when I build an executable and try to run that it tells me I have a backlink error and...
  15. Samalia

    Indexing on an expression

    When searching for the stocid in the parent table I'm first searching for a different record in the child table, then I copy the child table's stocid to a variable cstocid and then search for that in the parent table. I've tried searching the index on the parent table and even searching all the...
  16. Samalia

    Indexing on an expression

    I have two tables that are linked upon a stocid, which in the child table is one field, and in the parent table it is 5 fields, account, nursery, seedlot, type and age. When I navigate through a form that has the parent on top and the child in a grid it had no problem navigating through both...
  17. Samalia

    Using multiple databases in FoxPro

    I've tried the new code as well, but when I run the form at the bottom of my screen I get a message that says MASTER INDEX, then points at the wrong database and the form loads with the fields all containing data from the wrong database. I've never heard of a master index before, and was...
  18. Samalia

    Using multiple databases in FoxPro

    I'm still having trouble making it work, is there a trick to it when creating the form? Do I need to create fields that are linked to a field in my table but not have any tables in the data environment? I'm using all the code that i've been given but the form still goes back to the original...
  19. Samalia

    Using multiple databases in FoxPro

    I'm trying to create an application that allows the user to have multiple companies each with their own database. The initial form the user sees allows them to pick which copany they want to work with. The form runs off a table with its own database, the table contains the company names and...

Part and Inventory Search

Back
Top