Search results

  1. L

    Creating unique Reports

    That is exactly what i needed. It works very well, i do no why i was trying to complicate finding another solution. but that works thank you for your help.
  2. L

    Creating unique Reports

    I want to create a new report for each student that i have in my database, so i can see the student's information in a report and print it if i want, but only one student per report. I have a form called StudentDetails, on that i have a ComboBox called GoTo where i can easily access every...
  3. L

    Control image through combobox

    That was great JANR, Thanks a lot It works properly Do you think if i could use some of this codes to control image in a "report"? Thanks again
  4. L

    Control image through combobox

    Thanks for reply again and try to help me. I tried this code before but with that the image in the form doesn't change. When i put just "Private Sub Form_Current()" it showed me in the properties of the form the event On Current, but when i change the code to OnCurrent it doesn't show anything...
  5. L

    Control image through combobox

    Could somebody help me with this code please? I still having problem with that.
  6. L

    Control image through combobox

    Thanks for reply, the code is pretty big because i'm using 13 different comboboxes to control the images. I did some changes at the programming. i tried to put only one Private Sub Form_Current() instead 13 different, but did not work very well. I also have two different programs at the end...
  7. L

    Control image through combobox

    I tried this before but still giving me some error messages: The expression On Current you entered as the event property setting produced the following error Ambiguous name detected: Form-Current expression may not result in the name of a macro, the name of a user-defined function, or...
  8. L

    Control image through combobox

    OK JR. Thanks for your reply. i still having some problems. i don't know if there is some relationship but i'm using the access 2007 to do this program I did this code: Private Sub Student_Detail_OnCurrent() Call Combo_MED_AfterUpdate If Combo_APP.Value = "Complete" Then...
  9. L

    Control image through combobox

    Hy everyone. I'm having a problem with my programming hope somebody can help me. I want to control an image using a combobox and i'm using the following code: Private Sub Combo_MED_AfterUpdate() If Combo_AI.Value = "Complete" Then Figure13.Visible = True...
  10. L

    Bring selected information to report

    Ok now i got it, Thank you so much I was breaking my head trying to solve this problem you were very helpful
  11. L

    Bring selected information to report

    Ok Thank you for reply But I'm still having some problems when i change the data source to the Query i already create a window appears telling "Enter Parameter Value" then Query 1 (the query I created)
  12. L

    Bring selected information to report

    I'm having some problems with my report and i will try to explain what is happening: I have one table with information about student, including the column "STATUS" that is represented by the value list with the row source: "Current", "Applicant", "Graduated", and "Transferred"; I'm trying to...
Back
Top Bottom