ahmedrashed3210 Member Local time Today, 08:53 Joined Oct 31, 2021 Messages 42 Nov 1, 2021 #21 i trying to fix it from yesterday , last update its need to enter parameter value how i fix it please ?
i trying to fix it from yesterday , last update its need to enter parameter value how i fix it please ?
Gasman Enthusiastic Amateur Local time Today, 08:53 Joined Sep 21, 2011 Messages 16,557 Nov 1, 2021 #22 Looks like you might have got your concatenation wrong?
C CJ_London Super Moderator Staff member Local time Today, 08:53 Joined Feb 19, 2013 Messages 17,398 Nov 1, 2021 #23 would help if you showed your code
ahmedrashed3210 Member Local time Today, 08:53 Joined Oct 31, 2021 Messages 42 Nov 1, 2021 #24 CJ_London said: would help if you showed your code Click to expand... Private Sub INV_DblClick(Cancel As Integer) DoCmd.OpenForm "ID Tickets", , , "TKT.INV=" & Me.INV End Sub
CJ_London said: would help if you showed your code Click to expand... Private Sub INV_DblClick(Cancel As Integer) DoCmd.OpenForm "ID Tickets", , , "TKT.INV=" & Me.INV End Sub
ahmedrashed3210 Member Local time Today, 08:53 Joined Oct 31, 2021 Messages 42 Nov 1, 2021 #25 CJ_London said: would help if you showed your code Click to expand...
ahmedrashed3210 Member Local time Today, 08:53 Joined Oct 31, 2021 Messages 42 Nov 1, 2021 #26 Gasman said: Looks like you might have got your concatenation wrong? Click to expand... how i can fix it !
Gasman said: Looks like you might have got your concatenation wrong? Click to expand... how i can fix it !
arnelgp ..forever waiting... waiting for jellybean! Local time Today, 15:53 Joined May 7, 2009 Messages 20,200 Nov 1, 2021 #27 DoCmd.OpenForm "ID Tickets", , , "INV='" & Me.INV & "'"
C CJ_London Super Moderator Staff member Local time Today, 08:53 Joined Feb 19, 2013 Messages 17,398 Nov 1, 2021 #28 looks like INV is text in which case you need "TKT.INV='" & Me.INV & "'"
ahmedrashed3210 Member Local time Today, 08:53 Joined Oct 31, 2021 Messages 42 Nov 1, 2021 #29 CJ_London said: looks like INV is text in which case you need "TKT.INV='" & Me.INV & "'" Click to expand... Finaly work > thank you so much DoCmd.OpenForm "ID Tickets", , , "TKT.INV='" & Me.INV & "'" can i add DoCmd.maxmuiz after above code to make it full screen !
CJ_London said: looks like INV is text in which case you need "TKT.INV='" & Me.INV & "'" Click to expand... Finaly work > thank you so much DoCmd.OpenForm "ID Tickets", , , "TKT.INV='" & Me.INV & "'" can i add DoCmd.maxmuiz after above code to make it full screen !
ahmedrashed3210 Member Local time Today, 08:53 Joined Oct 31, 2021 Messages 42 Nov 1, 2021 #30 Thank you so much guys I appreciate this a lot
C CJ_London Super Moderator Staff member Local time Today, 08:53 Joined Feb 19, 2013 Messages 17,398 Nov 1, 2021 #31 can i add DoCmd.maxmuiz after above code to make it full screen ! Click to expand... need to be clearer - your db is set up using tabbed documents according to post #19, in which case you need to maximise the access window - see this link https://dba.stackexchange.com/questions/57653/vba-maximize-access-application-main-window But if your form is a popup you would maximise the popup - which you can do with docmd.maximise in the form open event
can i add DoCmd.maxmuiz after above code to make it full screen ! Click to expand... need to be clearer - your db is set up using tabbed documents according to post #19, in which case you need to maximise the access window - see this link https://dba.stackexchange.com/questions/57653/vba-maximize-access-application-main-window But if your form is a popup you would maximise the popup - which you can do with docmd.maximise in the form open event