package & deployment

  • Thread starter Thread starter rom
  • Start date Start date
R

rom

i created a vb.net windows application and it's working
great on my computer. i tried to run it on another
computer and i'm getting an error. i guess it has some
dependencies problem (eventhough i am not using any! the
form has only several standard controls such as listview,
comboboxes, textboxes, buttons). why does it happen and
how do i "package & deployment" like vb6?
 
rom said:
i created a vb.net windows application and it's working
great on my computer. i tried to run it on another
computer and i'm getting an error. i guess it has some
dependencies problem (eventhough i am not using any! the
form has only several standard controls such as listview,
comboboxes, textboxes, buttons). why does it happen and
how do i "package & deployment" like vb6?

Deploying the .NET Framework in a setup package
<URL:http://dotnet.mvps.org/dotnet/faqs/?id=deployframework&lang=en>
 
i created a vb.net windows application and it's working
great on my computer. i tried to run it on another
computer and i'm getting an error. i guess it has some
dependencies problem (eventhough i am not using any! the
form has only several standard controls such as listview,
comboboxes, textboxes, buttons). why does it happen and
how do i "package & deployment" like vb6?

You must have the NET Framework installed on each PC you use it on.
This comes with the SP2 CD for XP which is useful.
 
ok, i made some further investigation -
1. the other computer has .net framework 1.1 installed.
2. some other vb.net windows applications run on this
computer with no problem...
3. i tried to put and "End" as first line in the form_load
function but i still get the same error!

thanks
 
changing the opacity of the window made 1 problem, i
removed it. using a class that i find somewhere over the
net that prevents users from resizing columns in listview
also generated an error. i removed this also. now the
application starts but only with half of the
functionality!!! and it is not all! almost every button i
click on generated another error....even a simple button
that adds a new row into the listview.
 
Back
Top