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 strongm 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: *

  • Users: Samalia
  • Content: Threads
  • Order by date
  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

    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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. Samalia

    copying records from one table to another

    I have this temporary table that I dump records into that meet specific conditions, and I pull them from another table. I take them from my main table, and put them into my temp table, the records are all within a week of the date that the user selects. The problem I have is that when the...
  12. Samalia

    creating a date

    I have three different parameters and I want to combine them into one. I want to create a date field from the day, month and year parameters. I've tried some code, adding the parameters together, storing them to another parameter but it ends up blank. I dont get it. This is what I've got so...
  13. Samalia

    showing an event in a calendar

    Is there anyway to have the activex control Calendar Control 8.0 show an event for specific days?
  14. Samalia

    Formset

    How would you programmatically call a form in a formset? I want to build a calendar that when you click on a specific date it calls the other form to enter an event with the date already looking at the one the user clicks on. But there are no help files I can find on formsets or the activex...
  15. Samalia

    distributing a project

    I want to make a program out of the database that ive created so that my users dont have to have foxpro on their computers. I've made an executable, but when I install it on a user's computer and try to run a report I get an error message because I don't have foxpro on that computer. Is there...
  16. Samalia

    passing parameters

    Im trying to pass a variable between two forms with a parameter. I want to be able to double click on a field and go to another form with it looking at the same customer number. In my double click event I have LParameter tncustomernumber SELECT customertable DO FORM customerform with...
  17. Samalia

    parent tables in 9.0

    I want to link two tables, the main table has a field called custnum, which can have many of the same values, so I have to index it regular. But the customer table has the same custnum field, but it cant have repeat values so I have to candidate for primary for the index. I want the main table...
  18. Samalia

    editing grid contents

    I'm using foxpro 9.0, but made the form in 6.0. Now that it is in 9.0, all the grids in my forms no longer work. When I try to edit the grids, I cannot click on them. but if I browse and append records then I can view those records when I run my report, edit them, but I can't add any other. In...
  19. Samalia

    grids in reports?

    I've been trying to create a report that can show data from multiple tables. I have a header that has only one set of data and only prints once on each page, but it had about three table that all have multiples sets of data that all correspond to the same header. I can get the tables to show all...
  20. Samalia

    property not found?

    I'm trying to write some code that will make it so that when the user clicks on one checkbox, that the other can't be selected as well, and if the user then tries to select the other one, the first checkbox gets unselected. This is the code I'm using, and foxpro, during runtime, tells me that it...

Part and Inventory Search

Back
Top