Search results

  1. E

    Hide Access Window and show form on startup Windows 7 64Bit

    This means that the declaration should be like the following Private Declare PtrSafe Function ..........
  2. E

    Error if filter doesn't match

    Thanks London , your code makes the trick, but i modified it to the following because I will make the error message as a "label" under Textboxes "username and password" Here is the code I use now Private Sub txtUsername_AfterUpdate() Me.Form.Filter = "UserName = '*" & Me.txtUsername & "*'"...
  3. E

    Error if filter doesn't match

    I have a login form that has : "txtUsername" "txtPassword" It linked to table:"tblUsers" that contain a filed "UserName" I set a form filter to filter the "UserName" like "txtUsername" Everything works fine if the typed username already exists in "tblUsers" but if the typed username doesn't...
  4. E

    Form direction

    Finally I found the solution: I just assign the .Left property of my reference as following: Me.txtBoxName.Left = 5 * 1440 and I adjust the (5) according to my form. Thanks Solved
  5. E

    Form direction

    Dear All, I know I'm stupid enough But really I can't get the meaning. :banghead:
  6. E

    Form direction

    I'm Sorry, can you clarify more how to use this. I put the code in the form on Load, but no change happened. Thanks
  7. E

    Form direction

    I made my database to run into 2 languages (English - Left to Right) and (Arabic - Right to left) Access only assigns one direction by default. What I want is to shift the direction of the form from LTR to RTL by VBA . How can this be done?????
  8. E

    Open Form problem

    Thanks for your help actually you did a lot to me. I decided finally to solve my problem by creating one main form which is linked directly to the table and then I added some some forms do [Id] field is unique Sent from my G-TiDE E77 using Tapatalk
  9. E

    Open Form problem

    This also does not work
  10. E

    Open Form problem

    I also tried adding = but still the same problem
  11. E

    Open Form problem

    I have two forms - frmVList with ID (from tblV - Table) -frmVDetails (with ID as "tblV.ID) as tblV is the table name that contains the ID. (That is because i made a query between some tables in the control source of [frmVDetails] I want to click ID in [frmVList] to open [frmVDetails] where ID =...
  12. E

    Get External Data - Prevent - Security

    I saw the same in a sample database offered by someone for free but he locked importing external tables. He assigned a password to the VBA codes. I don't know if this is the solution or not, but at least it worth trying.
  13. E

    Filter subform from another subform (within a navigation form of a main form)

    Sorry Again, It was my mistake, I followed your tutorials again carefully and it worked like charm Private Sub TestMGroup_Click() Forms![frmMain]![NavigationSubform].Form![frmTSGroupList].Form.Filter = "TestMGroup =" & Me.ID...
  14. E

    Filter subform from another subform (within a navigation form of a main form)

    Thanks for all of you for your answers , unfortunately, tried all of them with no luck. the problem still exists.:banghead: this is the error message: Run-Time Error 2450 Microsoft access can't find the referenced form "frmTestsMain"
  15. E

    Filter subform from another subform (within a navigation form of a main form)

    I have an unbounded Form Called [frmTestsMain] which includes 3 subforms: [frmTestsList] [frmTMGroupList] [frmTSGroupList] [frmTMGroup] has a filed "TMGroup", [frmTSGroup] has a filed called "TSGroup" and another lookup filed "TMGroup" linked to [frmTMGroup].TMGroup. [frmTestsList]...
  16. E

    Access Desktop Service Template Macro problem

    I solved all problems It seemed that I needed to update all parameters for RunMacro with adding "[txtID]" parameter . Regards
  17. E

    Access Desktop Service Template Macro problem

    Dear All I downloaded Access Desktop Service Template and made some additions and adjustments to it as follow: - I added Receiving Notes forms and tables with the same criteria as Quotes. - I modified some module parameters that I coped from table "Quotes" by changing the word "Quote" to "Rcv"...
Back
Top Bottom