Results 1 to 25 of 25

Thread: Need Help in Installing VB application on server

  1. #1

    Thread Starter
    Member
    Join Date
    Dec 2009
    Posts
    58

    Need Help in Installing VB application on server

    Dear Experts i have an existing VB application and i have its source code also now if i want to modify in that application then how can i do this can anybody help me on this.
    We are having database server on that this application is running and i have the source code with me so then after changing the code what is the procedure to install this application on server can anybody guide me regarding this.

    Thanks in advance

  2. #2
    PowerPoster
    Join Date
    Dec 2004
    Posts
    25,618

    Re: Need Help in Installing VB application on server

    what type of server? webserver or lan server

    if you only make small changes to the code it may only be necessary to copy the exe over the previous
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  3. #3
    New Member
    Join Date
    Jan 2010
    Posts
    3

    Re: Need Help in Installing VB application on server

    U need to change the connection string in which u need to specify data base server name. Run the application and make sure no errors are there. Save the application and create a package (Set up file).

    I do give support to VB application by visiting to the concerned places.

    Edit by admin: no contact info permitted on the forum, thank you

  4. #4

    Thread Starter
    Member
    Join Date
    Dec 2009
    Posts
    58

    Re: Need Help in Installing VB application on server

    Dear sir it is a lan server.my application's setup file is there on server and code is with me here on my desktop now i think previous programmer used deployment wizard or something .i am not able to understand and in code there is no project file only forms and modules are there. please suggest me what to do next.

  5. #5
    New Member
    Join Date
    Jan 2010
    Posts
    3

    Re: Need Help in Installing VB application on server

    U need to change the connection string in which u need to specify data base server name. Run the application and make sure no errors are there. Save the application and create a package (Set up file).

    I do give support to VB application by visiting to the concerned places.
    atha.blr1(at)gmail.com

  6. #6

    Thread Starter
    Member
    Join Date
    Dec 2009
    Posts
    58

    Re: Need Help in Installing VB application on server

    Thanks for your response but as i told you my situation that i have only forms and modules so in this case how should i begin for editing the code.

  7. #7
    New Member
    Join Date
    Jan 2010
    Posts
    3

    Re: Need Help in Installing VB application on server

    create a new project add all the existing forms then look for a connectionstring. change the data source name to ur database server name.

  8. #8
    PowerPoster
    Join Date
    Dec 2004
    Posts
    25,618

    Re: Need Help in Installing VB application on server

    create a new project add all the existing forms
    you will also need to add any references or components required for the forms or modules
    you will get errors for any that are missing, you will then need to find and add
    as the application is already running on the server, any connection strings etc, should already be correct
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  9. #9

    Thread Starter
    Member
    Join Date
    Dec 2009
    Posts
    58

    Re: Need Help in Installing VB application on server

    Thanks a lot for your continuous support one more thing i want to ask that is there any way to find what are the components getting used or referenced in application .

  10. #10
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    Re: Need Help in Installing VB application on server

    When you open your .vbp file using Notepad, you will see the references used.....

    Example::
    Code:
    Type=Exe
    Reference=*\G{00000205-0000-0010-8000-00AA006D2EA4}#2.5#0#C:\Program Files\Common Files\system\ado\msado25.tlb#Microsoft ActiveX Data Objects 2.5 Library
    Reference=*\G{420B2830-E718-11CF-893D-00A0C9054228}#1.0#0#C:\WINDOWS\system32\scrrun.dll#Microsoft Scripting Runtime
    Form=frmMain.frm

    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

  11. #11
    PowerPoster
    Join Date
    Dec 2004
    Posts
    25,618

    Re: Need Help in Installing VB application on server

    as there is no project file you will just have to look for missing references or see what errors you get
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  12. #12
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    Re: Need Help in Installing VB application on server

    Quote Originally Posted by westconn1 View Post
    as there is no project file you will just have to look for missing references or see what errors you get
    I think going through the code, line by line, looking for the Objects created, will help him in identifying the references(to some extend)...

    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

  13. #13

    Thread Starter
    Member
    Join Date
    Dec 2009
    Posts
    58

    Re: Need Help in Installing VB application on server

    Ok i found most of my missing references with your help but i am having problem with LVbuttons display so regarding this can u suggest me anything

  14. #14
    PowerPoster
    Join Date
    Dec 2004
    Posts
    25,618

    Re: Need Help in Installing VB application on server

    or try to run, will error for each missing component

    if lvbuttons is a custom control, it may not b installed on your local machine, but should be registered on the server
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  15. #15
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    Re: Need Help in Installing VB application on server


    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

  16. #16

    Thread Starter
    Member
    Join Date
    Dec 2009
    Posts
    58

    Re: Need Help in Installing VB application on server

    Dear Team thanks for your continuous support but still i am having problem with LVbuttons.Can you help me more or give me some more details about it.

  17. #17
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    Re: Need Help in Installing VB application on server

    still i am having problem with LVbuttons
    What's the problem...??? We are happy to help you....

    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

  18. #18

    Thread Starter
    Member
    Join Date
    Dec 2009
    Posts
    58

    Re: Need Help in Installing VB application on server

    Actually as i said you that this application is running over lan
    and here on my pc i m having its source code.I have added components and libraries required nad also LVbuttons then also it is having problem in display i want exact display as we r having in our existing application.

  19. #19
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    Re: Need Help in Installing VB application on server

    it is having problem in display i want exact display as we r having in our existing application.
    Can you provide a screen shot of the app..??? (Previous and Present)

    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

  20. #20

    Thread Starter
    Member
    Join Date
    Dec 2009
    Posts
    58

    Re: Need Help in Installing VB application on server

    How can i provide here means on this site .??

  21. #21
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    Re: Need Help in Installing VB application on server

    Upload the pictures to some free picture hosting sites (eg: photobucket.com). Then post the link here...

    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

  22. #22

    Thread Starter
    Member
    Join Date
    Dec 2009
    Posts
    58

    Re: Need Help in Installing VB application on server

    Dear Team

    here are the links for my application display
    1 this is the one currently it is showing on running the app

    http://rapidshare.com/files/341320604/Showing.bmp.html

    2 this is the one Required

    http://rapidshare.com/files/341326517/Required.bmp.html

    Thanks in advance

  23. #23
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    Re: Need Help in Installing VB application on server

    Those buttons and the status bar seems to be the problem...!!!
    Have you downloaded the lvbutton.ocx...??? Link posted in post #15
    (Due to the absence of that OCX file in the PC, that buttons seems to be replaced with pictureboxes.. That's why, it looks grey boxes... That's what I think...)

    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

  24. #24

    Thread Starter
    Member
    Join Date
    Dec 2009
    Posts
    58

    Re: Need Help in Installing VB application on server

    yes i have downloaded that ocx and i am already having it also but still no progress.

  25. #25
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    Re: Need Help in Installing VB application on server

    Copy and paste it to the system folder(Windows --> System32).
    Then use Run (from Start menu). Type the following:
    Code:
    regsvr32 lvbutton.ocx
    This will register that OCX file. Then, you will be able to use it in your program.

    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

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