Recent content by 2ippy

  1. 2ippy

    copy field to form

    thankyou i found what i didn't enter. Private Sub Form_Load() If Not IsNull(OpenArgs) Then Me.CustomerID = OpenArgs End If End Sub
  2. 2ippy

    copy field to form

    Private Sub CreateCall_Click() Dim Msg, Style, Title, Help, Ctxt, Response, MyString Msg = "Do you wish to create a item for this customer?" Style = vbYesNo + vbCritical + vbDefaultButton1 Title = "Confirm Create Item" Help = "DEMO.HLP" Ctxt = 1000 Response = MsgBox(Msg, Style, Title, Help...
  3. 2ippy

    custom yes/no textbox

    well sorry i already been through and read that and it's still doens't work, go fig.
  4. 2ippy

    Access 2007 Trial - Form Sizing

    well treat it as a beta -it's MS at the end of the day. TBH stick with 2003 because the new licensing terms theyhave are not gonna get much sales.
  5. 2ippy

    Access 2007 Trial - Form Sizing

    beta for ya. Best to get feedback off to MS and it'll get sorted.
  6. 2ippy

    custom yes/no textbox

    I trying to setup a custom yes/no. In the table I set the yes/no format "Made";"Recieved" » lookup 'text box' I made the form and in the textbox and did value list with made and recieved. but it's giving me the could be text when number should be used and vise versa thing.
  7. 2ippy

    problem with form

    Private Sub PrintCustomer_Click() DoCmd.RunCommand acCmdSaveRecord DoCmd.OpenReport "Customers", , , "[CustomerID] = " & Me.CustomerID DoCmd.Close DoCmd.OpenForm "FrmCustomers", , , "[CustomerID] = " & Me.CustomerID End Sub it doesn't like line 5. Anyone got any ideas? This form with this...
  8. 2ippy

    Hell if I know what to do with it...

    having no luck with either i'm affraid - stuck as a dodo
  9. 2ippy

    comfirm yes no popup

    brill thxs
  10. 2ippy

    comfirm yes no popup

    How do i go about making a confirm yes and no dialog. I know i can do it with a form, but would rather have a proper one :D
  11. 2ippy

    Hell if I know what to do with it...

    Well that went st8 over my head. I'm only got basic knowledge atm of VBA. It's a work in progress
  12. 2ippy

    Hell if I know what to do with it...

    i was given them 2 codes for changing text in my DB fields. Now i believe they can be used on the lost focus part of a form textbox. I just can't implement it.
  13. 2ippy

    Hell if I know what to do with it...

    Public Function ReplaceAbbreviatedNames(Address As String) As String Dim PositionOfLastSpace As Integer PositionOfLastSpace = InStrRev(Address, " ") ReplaceAbbreviatedNames = Address Select Case Mid(Address, PositionOfLastSpace + 1) Case "st" ReplaceAbbreviatedNames = Left(Address...
  14. 2ippy

    form issue.

    yeah the item is autonumbered and the autonumber for that customer is copied into the item form to link them.
  15. 2ippy

    form issue.

    well that code works i guess as it should but the item record is still being created.
Back
Top Bottom