Warning: Cannot modify header information - headers already sent by (output started at /home/excel13/public_html/blog/wp-content/themes/cordobo-green-park-09-beta-09/functions.php:2) in /home/excel13/public_html/blog/wp-includes/feed-rss2-comments.php on line 8
Comments on: My first VB.NET application http://www.excelguru.ca/blog/2009/06/29/my-first-vbnet-application/ More geeky stuff from the author of www.excelguru.ca... Mon, 31 Oct 2011 15:51:25 +0000 hourly 1 http://wordpress.org/?v=3.3.1 By: Ross http://www.excelguru.ca/blog/2009/06/29/my-first-vbnet-application/comment-page-1/#comment-160669 Ross Wed, 01 Jul 2009 16:04:07 +0000 http://www.excelguru.ca/blog/2009/06/29/my-first-vbnet-application/#comment-160669 Hi Ken, I think you will find writing code in .NET really cool, its a great IDE, and the framework is very powerful. As for deployment, well, don't count your chickens just yet! MS have made a huge effort to make it smoother, but it's still a PITA, - when we are talking COM/.Net interop. VSTO is much better than it was. Hi Ken,

I think you will find writing code in .NET really cool, its a great IDE, and the framework is very powerful.

As for deployment, well, don’t count your chickens just yet! MS have made a huge effort to make it smoother, but it’s still a PITA, – when we are talking COM/.Net interop. VSTO is much better than it was.

]]>
By: Mike Rosenblum http://www.excelguru.ca/blog/2009/06/29/my-first-vbnet-application/comment-page-1/#comment-160551 Mike Rosenblum Tue, 30 Jun 2009 23:12:38 +0000 http://www.excelguru.ca/blog/2009/06/29/my-first-vbnet-application/#comment-160551 ROFL, Ken. You code like a Canadian checking the boards. :-D Ok, j/k, I had never even seen the Project Properties > Publish tab before. Very cool, thanks for pointing that out. I'll have to try to play with that some time. If things get more complicated, you might have to add a Setup Project to your solution. But I'm going to try your Project Properties approach at some point, it looks like it's great for handling a basic install. ROFL, Ken. You code like a Canadian checking the boards. :-D

Ok, j/k, I had never even seen the Project Properties > Publish tab before. Very cool, thanks for pointing that out. I’ll have to try to play with that some time.

If things get more complicated, you might have to add a Setup Project to your solution. But I’m going to try your Project Properties approach at some point, it looks like it’s great for handling a basic install.

]]>
By: Ken Puls http://www.excelguru.ca/blog/2009/06/29/my-first-vbnet-application/comment-page-1/#comment-160528 Ken Puls Tue, 30 Jun 2009 20:35:05 +0000 http://www.excelguru.ca/blog/2009/06/29/my-first-vbnet-application/#comment-160528 Mike, LOL! I had a hard time figuring out where the completed build went. I didn't realize that there was a bin\release folder that takes the completed version. I'll have to re-compile it and upload it later. So, to answer your question, I did it by accident. To mess yours up too, you'd go into the Project properties --> Publish tab, and set your directory. I just happened to set it to something within my documents folder. Doh! Mike,

LOL! I had a hard time figuring out where the completed build went. I didn’t realize that there was a bin\release folder that takes the completed version. I’ll have to re-compile it and upload it later.

So, to answer your question, I did it by accident. To mess yours up too, you’d go into the Project properties –> Publish tab, and set your directory. I just happened to set it to something within my documents folder. Doh!

]]>
By: JP http://www.excelguru.ca/blog/2009/06/29/my-first-vbnet-application/comment-page-1/#comment-160512 JP Tue, 30 Jun 2009 18:19:04 +0000 http://www.excelguru.ca/blog/2009/06/29/my-first-vbnet-application/#comment-160512 The same thing happened with my .NET Bingo number generator. Small program, but turns into a big download if you don't have 3.5 SP1. FYI the full .NET 3.5 SP1 package is around 250 MB, but I assume that is if you didn't have .NET on your computer at all. The same thing happened with my .NET Bingo number generator. Small program, but turns into a big download if you don’t have 3.5 SP1.

FYI the full .NET 3.5 SP1 package is around 250 MB, but I assume that is if you didn’t have .NET on your computer at all.

]]>
By: Mike Rosenblum http://www.excelguru.ca/blog/2009/06/29/my-first-vbnet-application/comment-page-1/#comment-160497 Mike Rosenblum Tue, 30 Jun 2009 15:34:59 +0000 http://www.excelguru.ca/blog/2009/06/29/my-first-vbnet-application/#comment-160497 Nice work Ken! Welcome to the .NET club. :) Deployment of a straight .NET application is really simple, as you found. I don't have VSTO experience, but VSTO deployment used to be very complicated, and may still be, I don't know. I'm hoping it is not to bad by the time I am ready to use it. In between can be deploying an add-in for an MS Office app like Excel. It's not generally too bad, but your add-in is .NET, but has to be exposed to, and registered for, COM. This is normally handled by the Setup Project for you, but complex cases can require some manual tweaking and some headaches until you know what you are doing. By the way, why didn't you install into the Program Files directory? It looks like you installed into a temporary folder, I guess? (Actually I don't even know how you did that... how did you do that?) Anyway, a great first foray into .NET, Ken. Very cool... Mike Nice work Ken!

Welcome to the .NET club. :)

Deployment of a straight .NET application is really simple, as you found. I don’t have VSTO experience, but VSTO deployment used to be very complicated, and may still be, I don’t know. I’m hoping it is not to bad by the time I am ready to use it.

In between can be deploying an add-in for an MS Office app like Excel. It’s not generally too bad, but your add-in is .NET, but has to be exposed to, and registered for, COM. This is normally handled by the Setup Project for you, but complex cases can require some manual tweaking and some headaches until you know what you are doing.

By the way, why didn’t you install into the Program Files directory? It looks like you installed into a temporary folder, I guess? (Actually I don’t even know how you did that… how did you do that?)

Anyway, a great first foray into .NET, Ken. Very cool…

Mike

]]>
By: Ken Puls http://www.excelguru.ca/blog/2009/06/29/my-first-vbnet-application/comment-page-1/#comment-160426 Ken Puls Tue, 30 Jun 2009 03:37:34 +0000 http://www.excelguru.ca/blog/2009/06/29/my-first-vbnet-application/#comment-160426 LOL! Hmm... fireworks... that would be interesting... LOL!

Hmm… fireworks… that would be interesting…

]]>
By: Dick Kusleika http://www.excelguru.ca/blog/2009/06/29/my-first-vbnet-application/comment-page-1/#comment-160421 Dick Kusleika Tue, 30 Jun 2009 03:00:49 +0000 http://www.excelguru.ca/blog/2009/06/29/my-first-vbnet-application/#comment-160421 Congrats. So I only need a 35MB download to run it? :) As for excitement, you need Solitaire like fireworks for correct answers. Congrats. So I only need a 35MB download to run it? :)

As for excitement, you need Solitaire like fireworks for correct answers.

]]>