Search results

  1. Prince

    SubForm Prob

    Good day to u, I made form that displays table information in two formats which are tabular and then I added subform of the same table in worksheet format. but the problem that there is no relationship between the tabular records and the sheet records although both are from the same table. Is it...
  2. Prince

    Louts Note

    Good day to u I would like to linke MS access with Louts Note I would appreciate any one can help me to do it. Best Wishes
  3. Prince

    Current Record

    Good day to you (everyone). I developed several forms in my system. Most of my forms use Requery to dispay records that match user's rquest. I need to make two text boxes one to show the current record position and the second to show the record count. I made these two text boxes but I don't know...
  4. Prince

    Movefirst in Subform

    Happy New Year... In one form of my system I added subform to diplay the data of search fields in the main form and this subform has nivgation buttons. If I nevgate using the the nevigation buttons then I made another search, the subform diplays data starting from the same position where I...
  5. Prince

    Batch processing

    Hello I would like have a deep understanding of Batch processing. anyone knows excellent sites about Batch processing?
  6. Prince

    Executable file

    I had developed a complete system but when I copy it to any other PC I face a problem with its liberies(refrnces) Is there is way ot include these references with the system. In other words, make the executable file of the system?
  7. Prince

    Error Messages

    Hello Everyone I'm currently developing as system. I tried to take a copy of that system to another PC put when I open some forms The following message appear this form have the following code Private Sub Form_Load() On Error GoTo Err_Form Cal.Value = Date Err_Form: End Sub...
  8. Prince

    Error message

    I made report from a query and I used mid function on that query fisrst It was working probably but now when I diplay that report it diplays mesage saying: undefined function " mid" in expression anyone have any idea how to fix this problem?
  9. Prince

    Blank Form

    Goodnight Everybody I made a form to display and search some data from table. I added two fields where user can Inter keywords for search (ex. Account# or Username) to move to data record. Everytime I open taht form It diplays the first record in the table. Is it possible to diplay balnk fileds...
  10. Prince

    Common Dialog

    Good Morning Everybody I had used common dialog (save as and Open) in one of my forms through draging and droping the component (common dialog version 6) then I wrote some code to deal with it. Is there is a way to use only visual Basic Without having to drag and Drop that component. In other...
  11. Prince

    Error Message

    Hello everyone I had developed complete system using MS access 2000. I copied that system to different PC and after I run that system in the new PC the system doesn't work and error message says: Can't find project or library appear?? any body has any idea how to manage and fix this problem?
  12. Prince

    Server side and Autorun??

    Hello everybody..... I had done a project that reads text files in sahred folders and then generate reports. I need to let my MSaccess system to work autmically by itself every day at a specific time. Also, It sould work at the server side. Anyone have a suggestion how to do that ?? Thank u...
  13. Prince

    Copy text file to other folder

    Good morning I have made a module that imports a text file and then over right the file. I need to make a copy of the text file in another place before over writing that file. any one can help.
  14. Prince

    Move to next field automatically

    Good night I have made three text boxs next to each other. the first holds 2 didgits and the other two holds three digits each. Here is the question: Is it possible to make the curser moves automatically from the first text box to the next when the user enters the two digits of the first field?
  15. Prince

    Processing Chart

    Good afternoon everybody When we install a program we see a chat contains a link of moving tringles showing that the PC is processing the installation I had created a button in a form to import a file and this file is a huge one. here is the question: Can I add a animated chart like that we...
  16. Prince

    Array in two forms

    Good night everybody I would like to use an array in two forms to validate some data . I tried to declare it using public but an error message appear? anyone have a suggestion. Thanks for any help.
  17. Prince

    Group summery

    Good morning In reports there is a feature that allows to add (e.g) textbox to diplays (e.g) the number of the previus group. So , if you have 4 groups at the end of each one it will displys the count of that group. Can we do the same with a form?? If yes How? Thanks for any help.
  18. Prince

    Control tip text

    Good Morining I have created form from Query. It contains several fields from different tables. here is the question: How to make the control tip text displays the source of the field(table name). Thanks for any help
  19. Prince

    Search For Field

    Good Morning Two questions 1-I have created a text field form and to search for account number which is Dim N As Boolean N = IsNull(Text40.Value) If N = False Then Me.Recordset.FindFirst "AccountNumber = " & Text40.Value Else MsgBox "You didn't Enter Account...
Back
Top Bottom