how to create a notification or PopUp window

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • squrel
    New Member
    • Jan 2008
    • 143

    how to create a notification or PopUp window

    Hello everyone..
    I need to create a notification window or popup window in my project to display some discription.. i have no idea how to do tht.... is there any notification window availabe in the component which i can add to my project and write the code for it... i can not find tht :(
    i m using VB6 and sqlserver 2000
    i need help here how to create tht and how my code wil be..
    thank u
  • squrel
    New Member
    • Jan 2008
    • 143

    #2
    i need help here... i need to make a notification like microsoft outlook or and ballon notification for my vb project...
    anyone can help in tht or any code sample..
    thank u

    Comment

    • QVeen72
      Recognized Expert Top Contributor
      • Oct 2006
      • 1445

      #3
      Hi,

      Check This Link :
      Visual Basic Tutorials - Adding A Notify Icon In VB6 | DreamInCode.net

      Regards
      Veena

      Comment

      • squrel
        New Member
        • Jan 2008
        • 143

        #4
        i have checked lots of links bt cldnt get anything in them.... i want a simple notifcation window...
        do we have any notificationwin dow in the component tray tht i can use At design-time?
        do u have any simple code sample for tht??

        Comment

        • QVeen72
          Recognized Expert Top Contributor
          • Oct 2006
          • 1445

          #5
          Hi,

          NO, VB6 dosent have Inbuilt System Tray Component. (VB.net does have)
          You have to use Either Third Party Control or use API's as suggested in the above Link..

          Regards
          Veena

          Comment

          • squrel
            New Member
            • Jan 2008
            • 143

            #6
            Ok...
            thanks a lot for your help

            Comment

            • 9815402440
              New Member
              • Oct 2007
              • 180

              #7
              hi
              i have the code. but tell me how to send files through this forum so that every body could get due benefit.
              regards
              manpreet singh dhillon hoshiarpur

              Comment

              • squrel
                New Member
                • Jan 2008
                • 143

                #8
                i think u have to use the mapi control for sending the files...

                Comment

                • 9815402440
                  New Member
                  • Oct 2007
                  • 180

                  #9
                  i meant i have the code to show notification window. but it is a large file. i want to send the file to you such a way that not only you but every member of this forum could see or download the file.

                  Comment

                  • squrel
                    New Member
                    • Jan 2008
                    • 143

                    #10
                    zip the file and attach it.. attachement option is thr
                    if u send me the file u wil help me a lot
                    thank u

                    Comment

                    • squrel
                      New Member
                      • Jan 2008
                      • 143

                      #11
                      hi..
                      r u going to send me the file??? i really need to look at the code.
                      thank u

                      Comment

                      • 9815402440
                        New Member
                        • Oct 2007
                        • 180

                        #12
                        yes i want to send a file

                        Comment

                        • squrel
                          New Member
                          • Jan 2008
                          • 143

                          #13
                          then plz send me the file as soon as possible..
                          thank u very much

                          Comment

                          • 9815402440
                            New Member
                            • Oct 2007
                            • 180

                            #14
                            hi
                            sorry for the late reply. let me know your email id. because file size is 8 kb, so it exceeds maximum upload quota 7 kb. so no way i could upload file here.
                            could moderators please tell me another way if there is?

                            regards
                            manpreet singh dhillon hoshairpur

                            Comment

                            • cubekid
                              New Member
                              • Nov 2008
                              • 6

                              #15
                              Re

                              Hello. I hope this is what you are looking for.

                              Code:
                              Private Sub Command1_Click()
                               
                              Dim msg
                               
                              msg = MsgBox("Notification", vbOKCancel)
                              If (msg = vbOK) Then
                              MsgBox ("OK")
                              Else
                              MsgBox ("Cancel")
                              End If
                               
                              End Sub

                              Comment

                              Working...