CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 15 of 30

Hybrid View

  1. #1
    Join Date
    Nov 2007
    Posts
    11

    Restaurent table booking sms systems(urgent)

    Booking your table no. through sms... i need to do a project regarding this using vb 6.0 any help from any pros' here.. mayb u can edit from my attached file.
    My dead line is in 2 weeks time
    Attached Files Attached Files
    Last edited by Jaysentan; December 5th, 2007 at 07:52 PM.

  2. #2
    Join Date
    Jul 2006
    Location
    Germany
    Posts
    3,725

    Re: I have a project on visual basic-sms

    Well, jason, there's a lot of files mising. You only sent the .vbp and there is nothing in it for us to edit.
    You have to send all files from your projects folder.

  3. #3
    Join Date
    Nov 2007
    Posts
    11

    Re: I have a project on visual basic-sms

    Err what file do i need to upload too can name them? cause i only open the whole project using this file...

  4. #4
    Join Date
    Jul 2006
    Location
    Germany
    Posts
    3,725

    Re: I have a project on visual basic-sms

    Well, there is at least the form file missing. It seems to be named Lab3_2.frm If graphical elements are contained, a file Lab3_2.frx would be there, too.
    You should have the complete project in one folder, so best put everything in zip and upload it.

  5. #5
    Join Date
    Nov 2007
    Posts
    11

    Re: I have a project on visual basic-sms

    Wof here's my file sry for e late reply....
    Attached Files Attached Files

  6. #6
    Join Date
    Jul 2006
    Location
    Germany
    Posts
    3,725

    Re: I have a project on visual basic-sms

    Ok let's get started somehow.
    First a few suggestions:
    For my modem works with different settings I'd have to rewrite every
    Code:
        MSComm1.CommPort = 1
        MSComm1.Settings = "115200,n,8,1"
        MSComm1.PortOpen = True
        MSComm1.RTSEnable = True
    Put this code in a Sub InitModem() and call it from Form_Load().
    Use MSComm1.PortOpen = False to close the port only once, in Form_Unload(), so the port stays open all the time while the program is running.
    This eliminates the many port initialisations and if I get another upload from you I only have to switch to my settings to test it, once.

    As how to organize an SMS program I have attached you a neat and easy sample from another guy here from the forums (can't remember who it was).
    It is not too complicated and maybe gives you a clue or another. Please try to study it.

    The main difference is, you are directly sending to the modem and then listening for the answer.
    The sample works with the _OnComm() event of the MSComm control. It is executed whenever a character is received. The complete answer is assembled like that and then interpreted.

    I hope this helps you as a first step. If you have difficulties in understanding the concepts, come back for more. Meanwhile I will try to find some time to get your sample working with my modem.
    Attached Files Attached Files

  7. #7
    Join Date
    Apr 2013
    Posts
    5

    visual basic-sms - HELP

    Hello WoF

    Regarding VB6 and SMS

    I need to contact you, I didn't found any way to send you a private message to you on this forum. Please email me at ... [email address removed]



    Kind regards
    Last edited by DataMiser; April 25th, 2013 at 03:28 PM.

  8. #8
    Join Date
    Jul 2008
    Location
    WV
    Posts
    5,362

    Re: I have a project on visual basic-sms

    If you have a question then you should start a thread of your own rather than post in one that is several years old, also you should not post your email address in the public areas, unless of course you like to get spam.
    Always use [code][/code] tags when posting code.

  9. #9
    Join Date
    Apr 2013
    Posts
    5

    Re: I have a project on visual basic-sms

    Thank you for the email removing ! I tried it but without sucess.
    I tried to contact a member that I think has the solution for my problem.

    Kind regards

    I'll start a new thread to know if someone can help me !
    Regards

  10. #10
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: I have a project on visual basic-sms

    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured