|
-
Jan 25th, 2010, 06:25 AM
#1
Thread Starter
Member
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
-
Jan 25th, 2010, 06:28 AM
#2
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
-
Jan 25th, 2010, 07:45 AM
#3
New Member
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
-
Jan 25th, 2010, 07:46 AM
#4
Thread Starter
Member
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.
-
Jan 25th, 2010, 07:47 AM
#5
New Member
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
-
Jan 25th, 2010, 08:26 AM
#6
Thread Starter
Member
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.
-
Jan 25th, 2010, 08:31 AM
#7
New Member
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.
-
Jan 25th, 2010, 07:18 PM
#8
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
-
Jan 26th, 2010, 04:17 AM
#9
Thread Starter
Member
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 .
-
Jan 26th, 2010, 04:26 AM
#10
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,...
-
Jan 26th, 2010, 04:31 AM
#11
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
-
Jan 26th, 2010, 04:39 AM
#12
Re: Need Help in Installing VB application on server
 Originally Posted by westconn1
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,...
-
Jan 26th, 2010, 04:56 AM
#13
Thread Starter
Member
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
-
Jan 26th, 2010, 04:57 AM
#14
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
-
Jan 26th, 2010, 04:59 AM
#15
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,...
-
Jan 26th, 2010, 05:49 AM
#16
Thread Starter
Member
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.
-
Jan 26th, 2010, 05:52 AM
#17
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,...
-
Jan 26th, 2010, 06:22 AM
#18
Thread Starter
Member
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.
-
Jan 26th, 2010, 06:30 AM
#19
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,...
-
Jan 26th, 2010, 06:36 AM
#20
Thread Starter
Member
Re: Need Help in Installing VB application on server
How can i provide here means on this site .??
-
Jan 26th, 2010, 06:39 AM
#21
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,...
-
Jan 26th, 2010, 07:13 AM
#22
Thread Starter
Member
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
-
Jan 26th, 2010, 07:40 AM
#23
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,...
-
Jan 26th, 2010, 08:20 AM
#24
Thread Starter
Member
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.
-
Jan 26th, 2010, 08:29 AM
#25
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|