Recent content by misdirection

  1. M

    store one selected from the combo box into a variable.

    I did it the other way If isNull(Me!cmbFirstName) Then dskjsaldksajd it works. Thanks. This forum is extremly resourceful.
  2. M

    title for the msgbox

    How do I get rid of the title that shows "0", it's ridicilious and I can't figure it out on how to remove it. Thanks.:o
  3. M

    store one selected from the combo box into a variable.

    Like my title say, how do I store one selected values from the combo box and store them into a variable? I know how to do this via Java, but not in VB because of stupid complicated punctuations.
  4. M

    I need some help..

    bump I am still trying to figure out how to make multiple records to show up after I generate a report, not showing just one record, any input would be greatly appreciated.
  5. M

    I need some help..

    Ok.. I fixed it! However, it's only showing one report at a time, not mutiple reports. For instance, there could be multiple person with the same document type. How do I resolve that? One to many report? If so, how? Thanks.. :o
  6. M

    I need some help..

    The main menu is where I generate the reports. I have two other forms where the user inputs the information and add it to the record. The main menu form is just to generate the report - so I just want to user to enter the date range, doc type, and the report type --> then I will generate the...
  7. M

    I need some help..

    Ok, I am very annoyed with the parameter value box which requires me to enter a value and it was unintentional and wasn't suppose to happen. On the main menu, I am trying to generate the report based on the date range, report type, and document type, here's my VB code: If...
  8. M

    sigh

    Your submission could not be processed because a security token was missing or mismatched. If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error. I don't feel like typing all over again. SIGH. YOU MUST ENTER A...
  9. M

    filtering out informations on the form

    != or <> doesn't work - Microsoft Access sees <> as parameter.
  10. M

    filtering out informations on the form

    One more thing What is the SQL statement for negaation operator? NOT IN or what? I am not sure which negation operator M$ access use.
  11. M

    filtering out informations on the form

    nevermind, I got it. Thanks.
  12. M

    filtering out informations on the form

    I need some help.. SELECT tblResturant.FirstName, tblResturant.LastName FROM tblResturant WHERE Branch = "McDonald" AND BranchAssigned= "PizzaHut" This is just an example. I am trying to execute that query and then put that the information on the form without just showing the results. Is...
  13. M

    filtering out informations on the form

    I do know how to use the SELECT statement: SELECT firstName,MiddleName,LastName FROM tblEmployee WHERE firstName = "Bob"; I took Introduction to Database and Relational Modeling at RIT (Information Technology). I managed to filter out the information that a USER should see. On the property...
  14. M

    filtering out informations on the form

    Hi, I am a new member here and I would like to welcome myself here :)! Anyways, to the point, I am having a hard time implementing some important features in Microsoft Access. I already created a form and all of the information is populated on the table. However, I am making a database for...
Back
Top Bottom