Create With A Third Party Program A Setup To App?
Feb 4, 2012I create with a third party program a setup to my app.Do I need to install this files too?
[Code]...
I create with a third party program a setup to my app.Do I need to install this files too?
[Code]...
I have developed an application which includes CR to display reports. I just found out to run these report, CR runtime engine needs to be installed. I would like to know if possible to include the installation of CR Runtime Engine in the set up of my application? I have noticed the pre-requisite option in VS 2010. But how to add CR Runtime Engine installation to my set up?
View 2 RepliesI must create a setup program and the programm is done with Vb net 2010 + sql server 2008.
Do you know a programm to create a setup, possibly free and that included prerequisites?
im using vb2008 exspress edition and just finished my project.I need to create a setup wizzard for my program.
How do i do this? BTW in exspress edition, windows dont let you have Setup And Deployment
Anyone know of any programs that do it for you? ( free )
I created a new Windows Service and a stand alone set up program for it. To the solution I added a set up program project and included both programs as outlined in [url]... However, when I run the Setup program, I do not see the my new service in the services window after the set up program completes. Is there additional work that needs to be done to have the program install the windows service correctly or do I need to include the [url]... program and a batch file to get it installed?
View 2 RepliesI am trying to open multiple files using a third-party program, by calling it from VB.NET. By default, the program I am using, through command line, only opens one file at a time - and if I call it again, it opens a new instance. (when started in GUI, I can drop many files on it).
Now I open it with
Shell("program file")
If the program is running, I want to add "file" on top of the running instance instead of starting a new instance.
Something like:
If Not procExists then
Shell("program file")
else
[Code].....
Unfortunately, just like Shell("program filename"), it opened lots of instances of "program", instead o loading all the files in the same instance.
I am developing an application and I use a 3rd party library which is basically Native excel. The problem is that this library does not implement an event which is able to notify me when the value of a cell value changes.
[code]...
my program launches a 3rd party program with a few switches to update itself.Once these updates are complete I need to manually click save from the applications menu. This can be done via the keyboard (Alt Gr + M then Alt Gr + S)
The application will take several seconds to load at which point the application will open maximised and the save option will be enabled.
I'm just wondering if it is possible to create an vb.net application to compress files, without using a 3rd party app. If yes, can you please point me in the right direction, give me some tips, tutorials or sample code?
View 5 RepliesI'm trying to create a DLL injector (merely for 3rd party option-toggling), but for some reason this code doesn't work.It will always return "Failed to create thread!"Here are the contents of the (Form1.vb)
Public Class Form1
Private Declare Function GetProcAddress Lib "kernel32" (ByVal hModule As Long, ByVal lpProcName As String) As Long
Private Declare Function GetModuleHandle Lib "kernel32" Alias "GetModuleHandleA" (ByVal lpModuleName As String) As Long
Private Declare Function LoadLibrary Lib "kernel32" Alias "LoadLibraryA" (ByVal lpLibFileName As String) As Long
[code]....
I am trying to write an application that will get the X and Y coordinates of a 3rd party application like Notepad or Word in VB.NET, but I am unsure how to accomplish this. I know some VB.NET but I am still a novice.
View 7 Repliesi have to develop a project..that is requirement for my graduation this october... b
3 to 4 software that can monitor network activity.. and put it in one program....
its like 1 vb program for all of the software...
I have an application in VB/C# .NET which needs to interact with a third party API, but I would like to interface it out so I can use a mock API for testing purposes.[code]...
View 2 RepliesI am trying to create an interface between a third party application which can make use of C/C++ DLLs, but no interface directly to .NET. What I was hoping to accomplish (not sure if possible though), is create a very basic C++ DLL (not .NET), which the third party application would call directly. This DLL would contain a basic method such as "DoSomething()". Somehow, from my .NET application, I want to "listen" to this DLL and "takeover" the DoSomething() method, and then returning the result back to the DLL, which will in turn return the result back to the calling third party application.
I don't even know if this is possible because I'm sure I would somehow have to get a hold of the memory space of the DLL as initiated by the third party application. Also, it seems that creating a managed DLL does not work, based on feedback from other individuals who have tried this.
Is it possible to put a "3rd party program" (an already compiled EXE thats added as a resource), into a MDI Parent form?
View 2 RepliesIm trying to make a program in vb that will remind Me To fill out twitter party's. Where you Put the date and the time its at. hit the enter button Save the info then i messege pop up on your screen when it time for the party. And how to make it run when your computer start up.
View 10 RepliesI have to write a program that will allow a usert o track the invitation list for a party. The user can enter the name of a person to be invited. When the send Invitatin button is clicked, the name appears in the checked listbox. This counts as an invited person.When an invited person confirms that they will be attending, the user will check the name in the checked listbox. this counts as a confirmed person.
What I am having a hard time figuring out is the codes! What would I declare my integer variables to hold the count of invited persons and the count of confirmed persons? And how would I code a loop to check if the name enetered in the name textbox already appears in the list box, if so, display a message telling the user that this person has already been invited?
I am having a problem with my program that is desinged to read a 3rd party text file database. I posted previosuly about a problem inserting an item in a new row and the column was expectig a different data type. It appears that sometimes the column is being determined to be of decimal value, I dont understand why. the fields contain information such as
Col1
F123456
CLW-12321 etc....
So my column fills with
123456
12321 the letters just get chopped off
So I added MaxScanRows = 0 to my schema file and that took care of the problem
Except now several of my columns that contain Date Values are coming back
9/24/2010 00:00:00
without the setting MaxScanRows = 0
The date returned 9/24/2010
Here is the code for my schema ini file I am creating:
HTML
Dim fs As New FileStream("Schema.ini", FileMode.Create, FileAccess.Write)
Dim writer As New StreamWriter(fs)
[CODE]............
I have been trying different settings hence the dimmed out lines
Here is the code to fill the datatable:
HTML
[CODE].............
I am thinking that without the MaxScanRows = 0 setting the datatype for Col1 is being incorrectly determined
I am not sure what is happening with other columns that contain date values. Apparently If i use MaxScan Rows=0 all columns are being pulled over as string value which creates numerous problems. If I dont use maxscanrows then all columns appear to be correct except Col21 MLSNUM which is being pulled in as a decimal. Can I change that in the schema file?
I need to create Encrypted "PayNow" paypal buttons on the fly for a website. I read all the documentation I can find on the paypal website. I understood that I need to use the BMCreateButton ButtonManager NVP API. But I've been unable to find any information, nor any reasonably simple and documented sample code, about HOW I'm supposed to call these API.
[Code]...
I've been looking online on how to setup a "Setup.ext" to install my app, but cant seem to find one for vb.net 2010 express
View 3 Repliesi have written a code in vb.net which makes use of SQL server management studio. i want to create a setup for this software so that i can install it in other pc.
View 2 RepliesI created a small application that uses various things such as .NET GDI Graphics, Text to Speech etc. I want to create a full fledged setup for my application so that the end user would install and start using the application.
View 6 RepliesIts two programs that work together called Script Writer and Script. My problem is, I need something that will install it on other peoples machines and will be easy to install and use to make. or possibly a way to manipulate the publish option under Vb 2008 to make a setup.exe for the file that won't install it in a funky place. It also needs to install both programs in the same directory. Because Script pulls its information from output.txt which Script Writer, writes information to output.txt. I can share the Vb scripts if you like. But I'm kinda perplexed on this. I've tried installing it after publishing it, then I go to the installation folder and copy its contents, then paste them in a seperate folder on my desktop. It works on my computer but not other peoples computers. Also when publishing my program from VB 2008 it won't publish anything in my debug folder, so html.txt and output.txt doesn't get published with the setup and doesn't install when the setup is ran. So I'm having a few problems here.[url]...
View 19 RepliesI am trying to create my exe file, so I go to build and build my project. Then I take the files in the bin else folder and try to run the exe file in another computer and it tells me that itīs missing some files like form designers and even dll files. It is trying to locate those files in the visual studio folder.
How can I make VB to include all the necessary files in the building proccess so I can run my exe file anywhere.
cn = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data source=C:solutionvs10 est estinDebugdb2.mdb;**Jet OLEDB:Database Password=secret**")
cn.Open()
''# codes
cn.Close()
I used V S 2010 The above is my code u can see that it is Ms Access DataBase(password protection)How i can create a setupb that can be easy to install other computer.
Project.
Imports System.Management
Public Class Form1
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles
[code]....
I have create a program in vs 2008 (vb.net).When i finish the program i buildit and i create an msi file with shortcut in the desktop.I have run the setup and everything is gona be OK When i check my program i found an error and when i fix it a buildit again (Same Name) and i create also i new msi and setup file.In the second setup the program Override the old install and create a new shortcut.
View 2 RepliesI have develop one project in VB.NET I want create setup file with serial key also i want to install this setup on perticular machine.
View 2 Replies1. What tools do I need to set up/create a database?
2. How do I set up/create a database?
3. Lets say I have some sort of "text" in my database. How would I get another one of my programs to connect to my database, and download the "text".
4. How would I "host" my database? I want my program to be able to connect to my database without having my computer on 24/7. must be free
I want to create a file setup for my project that combine such as sql express,crystal report and .NET framework.
View 5 Replies