Private Sub CreateNewCustomer_Click()
DoCmd.RunCommand acCmdGoToNewRecord
Me.TabCtl58.Pages("Customers").SetFocus
End Sub
Run-time error '2501'
The RunCommand was canceled.
be gentle :o
Private Sub CreateNewCustomer_Click()
application runcommand accmdgotonewrecord
TabCtl58.Page("page 0").SetFocus
End Sub
it doesn't like that application line, so i'm newbie :P
I want to use a button to goto new record and also goto page 0 within a control so you get to the start of the fields for this data entry.
No help in macro so i was wondering how would i do it in VBA?
yeah i managed to find and fix that, now with customers DB form m i'm getting doesn't like objects and stuff.
Has to be with the search and picture, i'll thinki will just remove it and try to make it again.
ty oldsoftboss i already found a example of what you done and i'm working on changing it, i done all the form rdy but it's not linking the search data i put in.
Not sure what this covers so if someone could point me in the right direction, so I can get started.
I want to do a search of customers through a button on a form with names, and there you get a list of customer that match your criteria. When you click or double click on that customer you get...
I have a button in a form which activates a macro that goes to a new record on click
CreateNewContact : On Click >> GoToRecord
I added a line.
CreateNewContact : On Click >> GoToControl
But this is redundent. I would like to know, how do I go to page 0 where the start data is to be...
nope no blob info on that site :(
if BLOB is a pain linking is fine, I just need to be able in form view to click onthe OLE object and select the image from file.
i read up on it and understand about how access uses the file, but i'm confused on how to implement it.
I ain't even started to learn anything about modules and i don't do coding :(
I will need BLOB, is there a easier example i can use to copy into my current database and so it'll be easier to...
I wish to in a subform where you can enter a image for a item.
How do you go about having a box you click, find on your HD the image and then have it display for that record you select?
I working on subforms in page/controls
when you click on a individual row, the notes will appear at bottom for viewing/ editing or entering data, for that row.
Trying to copy the same thing into another similar page/control and this will not show the relevant info.
The linkings seem to be...