Change The Version Number Of Program?
Jun 5, 2009This is probably an easy question: I need to change my version number from 5.4 to 5.5. This is not the assembly version, but the version (I think) of my executable.
View 5 RepliesThis is probably an easy question: I need to change my version number from 5.4 to 5.5. This is not the assembly version, but the version (I think) of my executable.
View 5 RepliesI have written a small program in VB 2010 Express and I would like to show the version number of my program on the form. I looked through the HELP files and found an example. I put the example in my code like this:'Get the version of the current application.
Dim assem As Assembly = Assembly.GetExecutingAssembly()
Dim assemName As AssemblyName = assem.GetName()
Dim ver As Version = assemName.Version
Me.Text = "1st CPC Check Deposit Program Version" & " " & ver.ToString
I am up to version 1.0.0.8 but this is what prints:
1st CPC Check Deposit Program Version 1.0.0.0
Why doesn't it print 1.0.0.8 ?
I am using an about Box in my program and the version number doenst change.Its 1.0.0.0.0 , does anyone know how to sink the version number in the box with the version number being published.
View 3 RepliesI'm facing problem while reference vb6 dll in .net project. When ever i refer a vb6 dll in .net project the interop dll is created with same version(1.2.0.0). Its creating problem for me as the setup used to deploy the application at client side does not replace the dll if the version is same as before. I want to change the version of the interop dll (created using vb6 dll). I read it cam done using tlbIMP but how to create tlb file for vb6 dll.
View 2 RepliesI wrote a programme and sent it to my client, (it was not a deployment or install file - just the .exe). He responded that it would not run and the PC reported "this program requires Net Framework 2.0". He cannot update the PC in question with Net Framework 2.0. So my question is can i somehow change my program to use an earlier version of Net Framework?
View 11 RepliesOK, anyone know how you get the version number of ImageMagick from its com?My best attempt (which doesn't work):-
Dim ImageMagick As New ImageMagickObject.MagickImage
Dim imversion As String
imversion = CStr(ImageMagick.Convert("-version"))
[code].....
I want to get the major, minor, build and revision version numbers of an EXE, not my vb project.If I do:
FileVersionInfo.GetVersionInfo(sEXEFilePath).FileVersion
I get 11.00.00003
It seems to have combined the build and revision numbers into one. In the good old days,
[code]...
Whenever I build my VB.Net project, the Assembly version does not automatically update as it is supposed to with the * in the third box in the Assembly Information. The only way I have found to (sometimes - it doesn't always work) get the version number to update is to Clean the Project, remove the *, Rebuild, reClean, put the * back in, and Rebuild again. What could be causing this issue to happen?
I should note that my coworker reports no such issue on his machine when Building the same Project; also, I must admit to some confusion on my part as to how this behavior is even possible, given that the error persists even if I remove every possible intermediate file I can think of that could possibly even be carrying the old version number, so how does it even know the old version number?
How do I programmatically increment a given version's number to the next version of the highest one?
For example if I have a file Program.exe with the following version numbers :
Program.exe 1.0.0.0
Program.exe 1.0.0.4
Program.exe 1.1.0.76
Program.exe 1.0.0.66
The next version number in this case would be 1.1.0.77
What's the easiest way to implement that?
I need to display the version number of the application on the top bar of the application. I managed to crate a setup wizard but I have no idea how to manage the verions.
View 6 RepliesI've defined two numbers. ThisVersionNumber and LatestVersionNumber, I want to compare them, and so if ThisVersionNumber = < LatestVersionNumber it will show a dialogue.
How do I receive the latest version number which is hosted at [URL]
You can get the version of your application sing My.Application.Info.Version. Is it also possible to set this version using code? This because I have a webservice that connects to a database and retrieves a version number.My application then compares that version number with his one, if it's old.. then it will download new files and change his version number.
View 3 RepliesHow they relate and differ from each? What are the best practices for version control? Is there a primer about publish online? Or a good book?
And is it possible to make ClickOnce and a msi in one solution of VS 2008? If so, is there any conflict or pitfall?
BTW I am using VB if that makes any difference.
I have an ASP app that has a string array as such (there are much more than this):
7.5.0.17 Date: 05_03_10
7.5.0.18 Date: 05_03_10
7.5.0.19 Date: 05_04_10
[code]....
How do I go about sorting these string by version descending?
I need to get the current install version for several apps installed on my machine (The same thing displayed in the Add/Remove Programs list)....how do I get this version info programatically?
View 4 RepliesI created a set up project and assigned a version number at Version property as 1.0.0.
How to:
1) Auto increase version number once rebuild? For example, next rebuild will make version number as 1.0.1 and so on,
2) Display this version number in main.vb page?
I have created a com dll in vb 2005 and used in vb6. It's working fine.
I have a question why Windows Explorer does not show it�s version number? I have properly set both the Assembly version and File version.
Again I did create a test com dll - windows explorer does show it's version number properly.
I know how to change the frame work version in one vb project.But I have a solution that has very many projects and doing that is really taking a lot of time.
View 4 RepliesIt was very practical to keep build number in VB6, as it auto-incremented that number every time that i "compiled" the program.
There is any equivalent feature in VB.Net? I am using VS 2005.
Actually i had some screens which were in SFTTree version 4.0. Now, i have converted those screens into version SFTTree 6.5.So now ,I want to change fore color (color of selection) i.e.when i select a particular line on a grid , activex shows "SKY BLUE" color.But, instead of "SKY BLUE" color i want "DARK BLUE" color. so, how can i change this through color property. Can we change color property through property list?
View 1 RepliesWell I just did an update on my application-i fixed a few major bugs and minor bugs and did some UI enhancements- my old version was 1.0.0.0 should it now be 1.0.1.1 or 1.0.1.0 or 1.1.0.0 or 1.1.0.1? I need to know when I should change each point...Should my revision increment increase by one every sing time, even if i updated the build? The Minor? Major? Please Help-I want my application to be as professional as possible.
View 9 Repliesi'm using VB 2010 Express and I want to change the Executable Version Info?
View 2 RepliesI am making trial version of my vb .net project but it is not counting the days , date and time . Can u plz give me any suggestions to make it correct. [code]...
View 1 RepliesI am developing a software and give to user sevaral time. When i give them i change Assembly version of my software. But problem is that when they update new version they lost all application setting. Application setting save with new root with version. Is they any way application version not to change with version. save only one root by application name or something.
View 9 RepliesHow can i Auto update or manual update my Software version. when i build my project on debug mode. Software version only auto increment when i publish the software. but dont want to publish my software yet. my project is developing state.
View 1 RepliesI am dynamically generating a word file, and clicking the link opens the file save dialog and it says the document is a: Microsoft Word 97 - 2003 Document.What would I need to do to programmatically generate a 2007, 2010 word document.
Code behind:
Public Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) Handles Me.Load
'build the content for the dynamic Word document
'in HTML alongwith some Office specific style properties.
[code]...
I am attempting to write a program in Visual Basic Express 2010 that uses .NET Framework version 3.5 instead of 4. (The computers that I plan to use this program on only have .NET 3.5 SP1, and are painfully slow, so I don't want to upgrade them to .NET 4.)I have seen in the documentation that the Express edition does not have the option to change the target framework in the "New Project" dialog. However, when I go to the Project Properties window, there is not a drop-down list for the target framework, either.Can I change the target framework version in Visual Basic Express 2010?
View 2 RepliesI'm trying to create a 'trial version' for a software of mine, currently it is pay-only. Basically the most efficient way I can think of is to simply change the startup form of the trial version after 15 days. The new startup form will simply be a request to register.
-How can I change the startup form after 15 days?
-How can I ensure that this cannot be changed afterwards (so it isn't easily pirated).
I need to write a program that requests a high number and a low number from the user, then the program searches the array and finds all elements within the two numbers. The program is used to search for past presidents, so if I type 43 for low number and 44 for high number, the program will display:
George Walker Bush
Barack Hussein Obama
I think I have an idea of how to search up to a certain point, but not to stop at a certain point....Here is the code that I have for that particular sub procedure:
Quote:
Private Sub btnDisplayRqst_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDisplayRqst.Click
Dim sr As IO.StreamReader = IO.File.OpenText("PRESIDENTS.TXT")
[CODE]...
I have successfully converted the FullCalendar into asp.net / VB and it works perfectly. I am struggling to change the background colour of an event based on a SQL query. I have tried many of the links on StackOverflow and on the Full Calendar Docs [URL] but I have barely any knowledge of jQuery/Javascript so this is proving very difficult for me.I have 5 Employees and I would like each of them to have a unique colour on the Calendar. In my SQL table there is a SalesPersonID field for each employee. I want to change the colour based on the ID. e.g.: (I know this will not work in this scenario, it is purely for info)
If "SalesPersonID" = "1" Then
cevent.className = "Steve"
ElseIf "SalesPersonID" = "2" Then
[code]....