User Profile

Collapse

Profile Sidebar

Collapse
chembuff1982
chembuff1982
Last Activity: Oct 28 '07, 05:30 PM
Joined: Mar 9 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • chembuff1982
    replied to put a record in a drop down box
    I'm going to try to go to the local college to get help. It seems like nobody on here can figure the last part out. I called already, just going to talk to a professor who has a degree in computer science.
    See more | Go to post

    Leave a comment:


  • chembuff1982
    replied to put a record in a drop down box
    Nope both changes didn't work. I think we came upon a mystery of computer programming.
    See more | Go to post

    Leave a comment:


  • chembuff1982
    replied to put a record in a drop down box
    The new tests are being added by a command button.
    Add New Test
    See more | Go to post

    Leave a comment:


  • chembuff1982
    replied to put a record in a drop down box
    my rowsource for combo29 (tests) is filtered by companyID number, however if we add a new test for a company, or add a new company, I want to be able to put that new test from add test in the Combo29 (tests) box before the form is submitted.
    See more | Go to post

    Leave a comment:


  • chembuff1982
    replied to put a record in a drop down box
    So frustrating, it's the last button on the form. I have it sending to the table, just need ot repopulate my combo29 box which is for client tests. I want it to do it from the add test button. So if a current client has no selection or they are a new client it will allow them to enter test parameters.
    See more | Go to post

    Leave a comment:


  • chembuff1982
    started a topic label and goto? Loops?

    label and goto? Loops?

    Do loops work in ms access, I'd assume they would, what is the setup for them.
    See more | Go to post

  • backup you database, remove all relationships from that table, than you will be able to change it around. It worked for me in a similar situation. You have to make sure your relationships are removed. If that doesn't work, copy your table and after relationships are removed delete it, and create a new table with the same name and paste your old table information in and make sure that the new replacement table is set to number.
    See more | Go to post

    Leave a comment:


  • chembuff1982
    replied to put a record in a drop down box
    That doesn't work, I did try that a while ago, see the table, is updated by the form, but I'm trying to sort of refresh the new drop down box with the new selection. Would some form of acLast work? I got aclast to pull up a number for the new record, but I need a string value.
    See more | Go to post

    Leave a comment:


  • chembuff1982
    replied to put a record in a drop down box
    anyone? Almost there, almost there, so close to being done.
    See more | Go to post

    Leave a comment:


  • chembuff1982
    replied to put a record in a drop down box
    http://i147.photobucke t.com/albums/r301/chembuff1982/form.jpg

    that's a picture of my form I took a snapshot of, not an advertisement. It's in my photobucket.
    See more | Go to post

    Leave a comment:


  • chembuff1982
    started a topic put a record in a drop down box

    put a record in a drop down box

    Here's my code, combo27 is working fine, however when I update my table Test (field Test) which works fine, I can't get Combo29 to update to the added test I just put in. I need to use the acLast or something like it to bring my record up, which works, however, it's numeric. I need to know how to bring the string value in the cell back to my drop down Combo29 here's my full code and form for the whole database, take a looksee if you want.
    ...
    See more | Go to post
    Last edited by chembuff1982; Mar 30 '07, 05:05 PM. Reason: putting in picture

  • chembuff1982
    replied to frustrating
    Sorry about that I figured it out the other day. My program is pretty complex so it gets confusing at times. I'm programming a complete database for a lab with drop down menu selections, bench sheets, records etc. I defined a string

    strCustomer well I'll show you my code I got it working most of the way.



    Private Sub cmdprint_Click( )
    On Error GoTo Err_cmdprint_Cl ick


    ...
    See more | Go to post

    Leave a comment:


  • chembuff1982
    started a topic frustrating

    frustrating

    I still am having trouble passing a value to a field in a table.

    It's all one database in access. I have my form, tables etc. They filter to combo boxes. Than I sent the value to a text box like someone told me. That works fine. I now want the textbox to send to my field in the table.

    I just need an example of how to send, from a textbox on a form, to a cell in a table. Let's make the textbox (mytextbox) and...
    See more | Go to post

  • They are new records I'm storing them, taking them originally from a table, and upon selection, through the drop down boxes, sending the submitted results to a new table to store the selections. Just pretty much for record keeping of clients and tests that go on....
    See more | Go to post

    Leave a comment:


  • chembuff1982
    replied to passing string to table
    I honestly forget how to bind a field in a table to a textbox, I clicked on the wizard and than on textbox clicked on table and dragged it to form but it is saying subform, I want it bound to the field not be a subform report.
    See more | Go to post

    Leave a comment:


  • Here's my code
    Code:
    Private Sub cmdprint_Click()
    On Error GoTo Err_cmdprint_Click
    Dim stDocName As String
        Dim MyForm As Form
    
        stDocName = "tbldate"
        Set MyForm = Screen.ActiveForm
        DoCmd.SelectObject acTable, stDocName, True
        DoCmd.PrintOut
        DoCmd.SelectObject acForm, MyForm.Name, False
        Text54.Value = Now()
        Text54.Visible = True
    ...
    See more | Go to post

    Leave a comment:


  • I sort of gave up on that attempt, I have two tables each giving one drop down box it's selections, upon selecting I now have it passing the selection to a string value. I want to send this string value back to a new table now, called table print. Is this possible?
    See more | Go to post

    Leave a comment:


  • chembuff1982
    replied to passing string to table
    I bound the combo box (drop down) to another table, it filters clients, I sent the selection from the dropdown to a string called strCustomer, I want to send this to a new table, just the string value. The thing is, I don't want all the selected values being entered into the table I print, maybe an overall table of records that were chosen, but I want to be able to print one instance of the selection out for a bench sheet. It looks sort of like...
    See more | Go to post

    Leave a comment:


  • chembuff1982
    replied to Best programming language for game design?
    in C
    c++ or visual c++ is the best way to go.
    See more | Go to post

    Leave a comment:


  • chembuff1982
    started a topic passing string to table

    passing string to table

    I set a string value up and took it from my drop down box, I now want to send this value to a field in my table. How can I do this?
    See more | Go to post
No activity results to display
Show More
Working...