Search results

  1. X

    Security for VBA

    is there anyway to set a password to prevent other people from editing the codes of my project?
  2. X

    Image Debugging

    i have entered the following codes Private Sub Image47_Click() Dim DBpath As String On Error GoTo Err_Image47_Click If IsNull([Yield Trend Chart]) Then Me.Image47.Picture = "K:\Staff Folders\JinLong\New Folder\nochart.jpg" Else DBpath = [Yield Trend Chart]...
  3. X

    Back to main(default) switchboard

    after i open a form using the switch board, i need to click a button to close the form and return back to the default switchboard.. what code do i need to put in the button to do the task?
  4. X

    Code for image

    Private Sub Form_Load() DoCmd.Maximize Me.Image56.Picture = "K:\Staff Folders\JinLong\New Folder\default.jpg" End Sub Private Sub Image56_Click() Dim DBpath As String If [Yield Trend Chart].Value Is Not Null Then DBpath = [Yield Trend Chart] Me.Image56.Picture = DBpath Else...
  5. X

    Maximize form on load

    how to maximize the form when you load it?
  6. X

    Display html/chart/image on form

    lets say i have a data field which contains hyperlink for a html file, can i display the content of the file from the hyperlink in the form when the form is loaded?
Back
Top Bottom