Search results

  1. J

    In desperate need of Grid!

    Thanks for the reply, Initially that was my design but doesn't look good since you have to switch a lot of control upon manipulating a record. For now I just want the user to see the previous records in my DB without having the liberty to Edit or Delete any record. Thanks.
  2. J

    In desperate need of Grid!

    Hi Guys, I posted before regarding grid but still need some info. to implement it correctly. The Project I need to create an application to record Job Assignments, so the tables are created (normalized thanks for all you insight). The Plan Initially I created a DATA ENTRY form it works...
  3. J

    Job Report Database

    Hi, My new task is to create an application that stores Job Reports on a daily basis, what I have in mind is to create the following tables: 1. Employee 2. Client 3. Client category 4. Job Category 5. Master with the ff: fields: a. EmpCode (linked from Employee) b. Date c...
  4. J

    New Record

    Thanks a lot!!!!!! Exactly what I needed.
  5. J

    New Record

    Hi, Is there a way for my Datasheet View not to show a blank record not unless the user click the Add button? Thanks in advance! Happy Thanksgiving :) Jeff
  6. J

    Passing parameters on report

    Hi, Can someone help me on this one, I was trying to print the current user logged on my application; I tried to reference an unbound txtbox via an open form but no luck, also tried to set its value on the "on Activate" event but still can't get it. Hope somebody can help. Thanks.
  7. J

    Grid

    Hi, Thanks for this info, that is what I needed but that's what I'm trying to apply on my new project and doesnt know how to implement. Thanks
  8. J

    Data or information?

    Hi guys, As for my views regarding "Data or Information" is this, "Data" is a RAW facts of Information, while Information is a collection of related data. Been teaching that stuff for over 8 years back in my home country :) Thanks.
  9. J

    Grid

    Hi, I would like to seek guidance again on my new project, I wanted to create a data entry form that the user can input records using my unbound label boxes, then upon hitting an add button it will go automatically on a subform below or a GRID so that the user can see all the records at a...
  10. J

    Adding tables in a Front/Back End Apps.

    Hi Bob, Thanks, thats exactly what I needed! Btw, how come I cannot add a reputation on you? Cheers!
  11. J

    Adding tables in a Front/Back End Apps.

    Hi Guys, Thanks for all your help on my last post, again have a problem to update the application, Everything works well but then I need toadd an extra table on my app. At first I thought I can add a table on my Back-End but when I open the Front-End it wont update. Can someone out there help...
  12. J

    OpenArgs always Null value

    Hi Paul, Thanks for your time, I've assigned the value of the combo box on Form1 to varUserName before opening Form2. But I can't seem to get the value I passed.
  13. J

    OpenArgs always Null value

    Hi Guys, I have 2 form (Form1) is a log-in form, (Form2) is the Data Entry. After Authenticating the user on Form1 I used DoCmd.OpenForm "MyFormName", , , , , , varUserName, then open Form2 with following code on OnOpen event: If Not IsNull(Me.OpenArgs) Then Me.txtUser.Value =...
  14. J

    Creating Application on a network

    Hi Garry, Still the form doesnt refresh, any more alternatives? Thanks for your patience.
  15. J

    Creating Application on a network

    Hi Zigzag, I need to close the form and then reopen it again before I see the updates on the table, I tried making command buttons for "Refresh/Re-Query etc. etc." but I cant figure out how to refresh the table in run-time. Also can you show me how to do the split thing from scratch maybe I am...
  16. J

    Creating Application on a network

    Hi guys, I was given a task to make an application that will enter/monitor job assignments of our technical staff on a daily basis (roughly 15-30 assignment per day), so I created a table which has all the fields and it worked well. So after the dressing up the database, I split the table and...
Back
Top Bottom