Detect Termination Of "DPInst Installation Package" Type Of EXE?
Apr 1, 2010I use a driver from a vendor that is made with "DPInst Installation Package" from Microsoft.My goal is to detect when the installation is finished.[code]...
View 1 RepliesI use a driver from a vendor that is made with "DPInst Installation Package" from Microsoft.My goal is to detect when the installation is finished.[code]...
View 1 RepliesI have developed a windows application in VB 2008. Now I want to make an Installation Package (setup) of my Project. But I don't want to create only the Setup. I want to include the .Net Framework 3.5 and Crystal Reports and all the files that are necessary to run my Application. so that when I run that setup (installation package of my application) all the necessary files installed automatically.
View 1 RepliesI need to Install a MSI Package as a Prerequisite For an Installation Using Wix Setup...How Can I do it....? I first need to install this MSI package and only want to Continue the Set up,If this Installation Would be Successful...
View 2 RepliesI have a .chm file linked to my app that is presently being called from it's actual location.HelpProvider1.HelpNamespace = C:Documents and SettingsmgfranzMy DocumentsVisual Studio 2008ProjectsApp NameCleanUp.chm
But when I package the app the directory is going to change to C:Program FilesApp Name by default. The problem arises if the user decides to create an alternate directory. Is there a way to set a $Path at setup runtime so that when the .chm file is called it knows to look in the Home installation directory? Here is the code I use to call the .chm; Private Sub PictureBox1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles PictureBox1.Click
[Code]...
I've created a setup project for a VB.NET 2010 application that I've written. The application, and the installer both work fine on my development machine.The installer works fine on other machines, but when I run my application it immediately crashes and dies without telling me anything useful. I've tried it on Windows 7, Windows XP, and Windows Vista machines... and all had the same problem, so I think it's more of a package configuration issue than a machine-specific problem.Here's the most useful information that I was able to get out of it:
[Code]...
When i try to run a msi using System.Process.Start("test.msi") in a vb app i get the following error. The installation package could not be opened. Contact application vendor. Msi file works fine when double clicked, tried System.Process.Start with text files and exe files and they work fine, problem only with msi files. Running vista. Also tried xp but no luck.
View 2 RepliesI have been working on an activeX control which works on serial port communication. Now I have completed the project and created its setup.exe using Visual studio 6 -> Tools -> Package and Deployment Wizard. Then I installed the control in another PC and in a new project included the control using project -> components. But when I click on the control in the toolbox and then include on the form it gives the following error : delete current link ? and on clicking OK, nothing happens. I tried searching a lot on google but didnt find anything. Another problem is that I have created a string array as a global array which can be accessed by all the methods.I am able to include the same activex control in my own pc when I have created the project. Here it works fine, I am able to access all the methods that I coded in the control, but the String array mentioned above can be accessed in other project. I tried writing Public before the array declaration but it give me the compile error : "Constants. fixed length strings, arrays, user defined types and Declare statements not allowed as Public members of object module." [code]
View 1 Repliesfound that Visual studio Basis not have a 'Package and Deployment' project type, andVisual studio professional Trial Edition is a temporary solution and also I remember that the license agreement says that Trail Editions
View 8 RepliesI am trying to open a project in Visual Studio. I have VB.NET and C# installed. When I open the solution, it says
"The project file D:MyProjectsComboSample.csproj can not be be opened."
"The project type is not supported by current installation"
What do I need to install? C# is already there.
ComboSample.csproj
Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ComboBoxSample1", "ComboBoxSample1ComboBoxSample1.csproj", "{6A1F1EE5-4AED-40E0-9517-3EAC47442628}"
EndProject
[Code]...
I've downloaded the MSDN "101 VB Samples" from the MS site and I'm getting an error that reads "The project type is not supported by this installation". I can open the other files that I've tried (about a dozen in other folders), so I'm wondering if it is something specific with the VSTO files, or something about my VB setup.
I thought at first it was a problem with the path where the file is sitting, but even moving it from C:Documents and Settings[my name]My DocumentsMSDN to C: didn't work...Edit: I have also tried opening in notepad and converting the file to UTF-8, changing the File Association from MS Visual Studio version selector to devenv.exe, and running devenv /setup at the command prompt, all with no luck (all these ideas were found through Googling the error message....).
I am trying to run the application created in the example at [URL] The code errors at the line dtsDataReader = dtsCommand.ExecuteReader(CommandBehavior.Default)
the error is A requested parameter does not exist in the package. I have checked everything that i can think of in the package Also when I try to run the package using the dtexecui utility I two errors "Error: SSIS Error Code DTS_E_PRODUCTLEVELTOLOW.
[Code]...
I am wanting to use an application to package all my files together into a setup package. I have tried InstallShield 2011, but when i click on Visual Basic .net wizard, it tells me I do not have Visual Studio.NET installed on my system. I am currently using VB2010 Express How can I fix this... or is there a better application available for packaging?
View 2 RepliesI have tried to find the sdk ('Windows Software Development Kit') mentioned in the 'GIF Encoder and Decoder Sample', but there are so many SDKs I can't find the one I need. I am using visual Studio 2005 Standard Edition on Windows XP. The language I program in is VB. Can someone point me to the right SDKs for the sample and OS and VS version?
View 3 RepliesI have an application which I wrote in vb.net. When the application starts it connects to mysql database online to get some data and once done it proceeds.The problem is that at times it gets stuck in the mysql thing, I mean after requesting nothing happens and this causes my program to lock up. This can be because of internet problem or server.
Is there a way the program can determine that x seconds has elapsed and it has not got any data, so self terminate it. I tried using timer to perform this action but as the program requests for data, it gets stuck, I mean it locks up and thus timer also locks up and only after task is done everything resumes.
I wanted that when the program is about to start request, I can start a timer and determine that x seconds has elapsed, so now terminate the application.
I'm trying to detect if a value is a decimal type and insert it into a DB. If the value is a decimal, I want to continue with the inserting. If the value is not a decimal I want to insert "0" as a value to the DB.
For this I created a function seen below... What is wrong with it?
Function IfNotDeci(ByVal Arvo) As String
If Arvo is Decimal = True Then
Return Arvo
[Code]....
The problem is on the first "If". How to know if the value is a decimal?
(I need this code because my values are read from different excel-files that are not always correct. So if a human didn't write a decimal value to a cell, the program should not respond with an error, but just insert a "0".)
How do you detect the RAM speed and type?
E.g. DDR3, PC3 10600, 1333Mhz
I already know how to detect slots, total ram etc...
I just made an application using MySQL for the database. I use WAMP.Can I combine WAMP and my application installation into one packet installation ?
View 2 RepliesSo, let's say I have this code (VB.Net)[code]...
What I don't like is:
- relies upon reflection
- loosely typed (no compile time checking)
- I'd rather store the binding information somewhere other than ID, but don't know where else it could go within the aspx definition. Moving the binding declaration to the code behind would be better in some ways, but worse in others.
if I create a variable like
dim DT as new Datetime
automatically the date is set to 01/01/0001
is there a better way to check that no value has been assigned to the variable a part to compare the datatevalue?
I just wanted to know that When our Vb.net application terminates are all our foreground threads automatically terminated.I read that all our background threads (worker threads) are all automatically terminated once the application shutsdown (when we dispose it)H/owever i wanted to know about Foreground threads , I know that wehn we use
dim t as thread
t = new thread (address of blahblah)
t.isbackground = true ; //This makes it a worker thread ... which will terminate when the form is disposed
t.start()
my question is now suppose i dont set the background property and make it run as a foreground parallel thread. Will it close when the application disposes...
At the moment, I am writing a class that deals with starting an application in a thread, as well as being able to monitor the closure of the thread and process, and the creation of the thread and process through events. I have absoloutly no problems with monitering the creation of the thread and its internal process within the subs that create them. I placed notifications within the "myprocess_Exited",(for the process closure) and "myprocess_Disposed"(for the thread closure) events.
The problem comes when I terminate the outside application manually; these events do not appear to fire when the application is closed by the user, rather than by code.I thought, since the application closes with an error code when it is terminated in such a way, that it raises the "myprocess_ErrorDataRecieved" event. But this doesn't appear to happen either. Here is some of the code from that class:
'Some of the decleratoins
Event ProcessStarted(ByVal Process As Process)
Event ThreadStarted(ByVal Thread As System.Threading.Thread)
[code]....
I have the need to either prevent, or restrict, the termination of a VB.Net application. I have no problem with Admin killing the application, but not a user. I've been unable to come up with a solution for this. Is there maybe even a way to set local policy to prevent termination by non-admin?
View 2 RepliesI'm trying to track down a problem on our test environment. Previously it was set to use InProc Session State Type, but I've added in the SQLServer type for one specific Web App. I did this because we use the SQLServer type in our production environment and I want our test env to match as closely as possible.
However, after changing it to SQLServer I do not get any errors when trying to store unserializable data in session like I would expect. It works just fine, even though I would think it shouldn't. I'm a relative newbie when it comes to configuring this, but from the various tutorials I googled, I thought I covered all the bases.I was wondering if there's any code snippets to verify which session state type an application is actively using.
How do I determin if a user has given me what I am asking for in terms of data type.
Example if my prompt to the user say "Give me a number of double data type"
How can I tell that the user entered a double xx.yy?
Or if I am testing for integers and I get user input ABC.GH?
I know about CDbl and CInt and CStr but these don't work unless data is provided. Also how do you test if the conversion took place? Also how do you differencate between 12.00 being integer?
I may have a difficult question here. I am working on a Generic class that is meant to work specifically with Enum's. Right now, I get the type of the Generic on instantiation and make sure that it is an Enum and throw an exception if it is not. So:
[Code]...
I created a simple VB application in Visual Studio 2010.My computer, which I am using to create the program, is Windows 7 Pro, and SQL Server 2008 is running on a Windows Server 2008 Enterprise, which I have full access to.
I want to click a button and have an SSIS package execute.I looked around on the Internet and found examples, but they do not seem to work for me.I try to add a reference, Microsoft.SqlServer.ManagedDTS.dll, as a few sites advise, but it is not listed when I go to PROJECT>ADD REFERENCE.
I also type:
Imports Microsoft.SqlServer.Dts.Runtime but all I get is a squiggly green line, which when hovered over states "Namespace or type specified in the Imports 'Microsoft.SqlServer .Dts.Runtime' doesn't contain any public member or cannot be found." Below is some code I copied from one of the websites and pasted in my button click event (the path is correct), but a get blue squiggly lines under "Package" and "DTSExecResult":
Dim pkgLocation
As String
Dim pkg As
New Package[code]....
What can I do to make the SSIS package run when I click the button on the Windows application a created?
I just installed VisualStudio 2010 Express and Windows phone SDK 7.1. I downloaded Phonegap 1.4 and added the PhoneGapStarter to the projectTemplates folder. When I hit new project I get the Phonegap icon. When I double click it to start a new project I get this error:
[Code]...
I am working on a client/server based application and I have run into quite a few snags stumbling my way through I have resolved quite a few issues, and need help with something new. I am using a TCPIP client/server and I find that at the end of each loop when I am reading the data from the network stream it appends a character to the end. I have tried removing the last character but I am not sure if it is getting the whole character successfully because I still get lots of different errors both in binary and xml deserialization whcih I think is related to this. Does anyone know the ascii code for the termination character for TCPServer/Client communications?
View 15 RepliesI'm attempting to communicate via USB to a hardware device. So far I can use CreateFile, ReadFile and WriteFile to communicate with the device efficiently, but occasionally the WriteFile call will hang because there is no device located at the port where it was installed. I have the WriteFile and ReadFile calls in a managed thread that I use the Join() method on to return control to the parent thread.
View 17 RepliesConsider the following vb.net code for an office add-in (for access):
td = db.TableDefs(objectName)
For Each fld In td.Fields
For Each fldprp In fld.Properties
[code]....
the variable "db" is a .net representation of the access vba return result from "Application.CurrentDB()". "td" is of type "DAO.TableDefClass".This code throws an exception of type "InvalidOperationException" when the value of the fldprp.value property cannot be determined (in Visual Studio, it shows the value as {"Invalid Operation."} in the watch window). fldprp.name, however, is available.
There are only a few properties which this occurs on. I'd like to be able to loop through all the fld.properties and output the values, but ONLY if it is not an exception. I am pretty sure why it is happening (certain properties are not available in this context). What I need to know is how to detect this at run-time so i can skip the property.