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 Chriss Miller 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: tomhughes
  • Content: Threads
  • Order by date
  1. tomhughes

    Calling a Function Within a Function

    I am trying to call a Function from within another Function, but it doesn't work. The button named "Init" is supposed to call the "Output_Key()" but the values in the OUT Text boxes are not displayed in the Variable boxes var1-4. File available at...
  2. tomhughes

    calling a function from within function

    Is there any way to call a function from within a function? *************************************************** Here is the Function I am calling from: SET.onRelease = function() { in1_txt.text = "C"; in2_txt.text = "F"; in3_txt.text = "G"; OUT1.text = "C"; OUT2.text = "F"; OUT3.text =...
  3. tomhughes

    Selecting Diff Files from FileListBox

    I am working on a program that operates on different files. After selecting the first file, the program operates on the file, but when I change the file seletion from the FileListBox, the program does not select the next file I click on. I have to completely close out the program and re-open it...
  4. tomhughes

    Returning Values from Standard Modules

    How do I return several Values of different types from a Standard Module in VB6? From the script below I am only returning a string,but I need to return several different String values, and ineteger values. Public Function GetTopBM(ByRef strL, ByRef strR, ByRef y) As String < User Code >...
  5. tomhughes

    Concatinate an Object Name with String Variable

    tomhughes (Vendor) 16 Feb 07 9:38 I am trying to concatenate an object name with a string Variable. The last letter of the Text Box name changes. If I hard code the letter in the name the string returns the proper value. This text string returns the proper value. str = " '" &...
  6. tomhughes

    Concatenating a string variable with an object name

    I am trying to concatenate an object name with a string Variable. This text returns the proper value. str = " '" & Forms!frmMain.TopicHeadA & "'" I have tried numerous string arrangements, with no success, it would seem to me that this string arrangement should work. strTabNo = "A" str = '"...
  7. tomhughes

    Concatenating variable in SQL statement

    I am trying to use a string Value in an SQL statement. The string Value is "strTabNo". When I hard code the value in as shown below my code works. strSQL = "SELECT tblData.* FROM tblData WHERE tblData.TopicHead" & strTabNo & _ " = '" & Forms!frmMain.TopicHeadA & "'" But I have not been...
  8. tomhughes

    Passing Values in Standard .bas Modules

    Can someone please direct me to some good information on passing values to and from Standard .bas Modules. I am using Access 2000. My program calls a standard module where the string values are declared. I have used the following code in the past to pass a string value back to the procedure...
  9. tomhughes

    Using DAO Populate a Combo Box with Delimited String

    I need to know how to populate a Combo Box with a Delimited String using DAO, not ADO. Can anyone help me?
  10. tomhughes

    AddItem in Combo Box for Access 2000

    Is there any way to fill a combo box with data with script when you are using Access 2000 ? I know you can do it with Access 2002, using .AddItem , but is there some way of getting the values into a combo box in Access 2000, or do I need to get Access 2002 ???
  11. tomhughes

    Concatenate Combo Box in Recordset field

    I am trying to concatenate the value of Combo1 into the recordset field. The Combo1 box contains the letters A,B,C,D.... When the program executes, it doesn't get the value of the item in the combo box but the position. i.e. 1,2,3,. How do I get it to recognize the value of each position in the...
  12. tomhughes

    TextBoxes update table whose record determined by Combo Box

    I need to update 2 fields in a Table ("TableName") using two textboxes (txtBox1, txtBox2) whose unique record is determined by ComboBox2. ComboBox1 selects a query which populates ComboBox2. Can anyone help me with this ???
  13. tomhughes

    Selecting Record with Combo Box

    I am trying to use a combo box which contains Field2 data of TableName to select a record from Field1 and put it into a TextBox. Here is the code I am trying to use. Can anyone please help me ?? Private Sub Combo11_Click() Dim dbs As Database, rst As Recordset, strSQL As String Set dbs =...
  14. tomhughes

    link one form to many tables

    I would like to link one form to many tables. I am using a combo box to select the table to link to. The table that is linked to shows up in a text box on the form. Is this possible? If possible I would like to use Visual Basic programing.
  15. tomhughes

    Capture the count of an array

    Does anyone know how to capture the count of an array when the array value matches the value of a text box. I have tried looping through the array with a "for" loop, and using an "if" statement and a break command to get out of the loop, but I cannot figure out how to get the count value of the...
  16. tomhughes

    Match a value in an array

    I am trying to match the count value in an array with the value of a variable in a text box.When a match is found I would like to save the value of the counter, or the value of the Array. ---------------------- var m; for (i=0;i<23;i++){ if ((KeyArray[i]) == (varSecond1)){ varSecond2 =...
  17. tomhughes

    Remote Database connection

    I am using Dreamweaver MX, connecting to a remote server, which uses a MS SQL database. I can connect to the database sometimes, and sometimes I can't. In other words when I go to the Application, Database, Tables, it shows none, but they are there, and they ae working on the web site.
  18. tomhughes

    NoClassDefFoundError

    Does anyone know what this means, and how to correct it? This is what I got when I ran the JBuilder 7.0 tutorial for developing a JSP. javax.servlet.ServletException: sun/tools/javac/Main root cause java.lang.NoClassDefFoundError: sun/tools/javac/Main
  19. tomhughes

    package does not match directory error

    I am using JBuilder 7.0, and am getting the error package _____ does not match directory ______ I don't know what I am doing wrong, but I get the same error for every java file I have.
  20. tomhughes

    Dreamweaver / Apache Tomcat

    Does anyone know how to set up Dreamweaver to work with Apache Tomcat? How do you put the htm files in the htdocs folder, and the JSP pages in the context folder, and have them link correctly. I have an htm page that references three JSP pages. What would be the proper URL, or link script be, to...

Part and Inventory Search

Back
Top