Loading

ask : tip of a a day form

1 post / 0 new
Offline
Joined: 01/23/2010
ask : tip of a a day form

dear all, i am a newbie in programming
in my application i am trying to add tip of the day form. and in MDIform1 i give menu (named show tip). at the first step, the frmTip is shown. After i checked the
"Show Tip at Startup" (chkloadtipatstartup), and then i clik my show tip (showtip_click menu in menubar, the result is eror 364 and the information is object was unloaded loaded.

the code of showtip_click()

Private Sub showtip_click()

Dim ShowAtStartup As Long

' See if we should be shown at startup
ShowAtStartup = GetSetting(App.EXEName, "Options", "Show Tips at Startup", 0)
If ShowAtStartup = 1 Then

Load frmTip
frmTip.Show
Exit Sub
End If
end sub

i modified the code from frmtip_load() ...but i didn't work
does any one can explain how to load and show again the tip of the day form ?
thank your for your help.

Add new comment

Filtered HTML

  • You may insert videos with [video:URL]
  • You can enable syntax highlighting of source code with the following tags: <code>, <blockcode>, <asp>, <c>, <cpp>, <csharp>, <css>, <html4strict>, <java>, <javascript>, <mysql>, <php>, <python>, <sql>, <vb>, <vbnet>. The supported tag styles are: <foo>, [foo].
  • Lines and paragraphs break automatically.

Plain text

  • No HTML tags allowed.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.
CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.