VS 2010 Deploying With Extra Files?

May 8, 2011

So my program works off a few templates in a folder called "Templates".So far, i have been deploying my program as though it would run from a CD. Deleting the autorun file, inserting the Templates folder myself, and then using a self extracting ZIP to make it easy for the user to install.While this works, i would like to make it easier on myself by just including the Templates folder and the two template files (both .xls files) in the program every time i deploy.I've tried dragging and dropping the folder + files into my solution explorer bin folder but it doesn't work.I'm using Visual Basic 2010 Express.

View 1 Replies


ADVERTISEMENT

VS 2010 How To Store Unlimited Multi-row Strings Without Need Of Extra Files

Dec 9, 2009

How can i store unlimited multi-row strings without the need of extra files?Example: the user enter a multi-row string into a textbox and clicks save. Then the program should save that somewhere. And then the user enters another string and clicks save. And then there is a combobox where it can choose between those 2 strings to load.Can i save them in some sort of collection like My.Settings.Collection? Where each text also has a header.

View 5 Replies

Getting Extra HEX Bytes When Concatenating Data Files?

Aug 8, 2009

I'm concatenating data files, but the problem is that I'm seeing some extra bytes where the files are joined. The new file has extra bytes. I had thought this was maybe a problem with encoding.Here are the methods that I've tried to use to concatenate the files. The first example I'm getting extra 0xA0 0x00 bytes.

Dim inputfiles() As String = Directory.GetFiles(sourcedir, pattern)
Dim bufSize As Integer = 1024 * 64
Dim buf As Byte() = New Byte(bufSize) {}

[code].....

View 4 Replies

VS 2008 2 Extra Files In Addidtion To Setup.exe

Jul 17, 2010

I created a simple BMI calculator through the guide.I have built it and published it on my laptop running Vista Home Premium with .net 3.5 SP1 installed.I can run the setup and subsequent exe file fine on my machine but when I try it on my girlfriends netbook (one of those fiddly little things) it wont install saying that some of the files are missing. It is running XP and also has .net 3.5 SP1 on it.There are only 2 extra files in addidtion to the setup.exe that vb 2008 creates and they are the application manifest and the program icon, both of which are located with the setup.exe but it still won't install. It is an offline installation but won't run.I copied the bin folder from the project to the setup folder and tried that, still no joy, yet if I try and run the actual program directly it works?

View 16 Replies

Program Installation With Extra Folder / Files / Applications

Sep 25, 2009

When my program is installed, I need to place a folder in the directory path of "C:\" in order my program to work. How do I include the folder in my project, and then durning the install Place the folder where it needs to be? Could someone be so kind as to point me in right direction to read up on something like this?

View 3 Replies

Data Storage Methods (access/sql Etc) Require The End User To Download Extra Files?

Mar 3, 2012

I'm just getting started with Visual Studio (2005), and my aim is to write a fairly simple application in Visual Basic that will need to store some data to disk.What I really want is to be able to send the application to the end users (xp, vista, win7) and have them just be able to use it without having down download all kinds of extras. For example I'm guessing that if I use an SQL database in my application they will need to download SQl server express or some other sql downloadable?

If so is there a similar downloadable for MS Access?I'm just in the 'seeing how things work' stage at the moment and I don't want to waste time going down the SQL track just to find it won't actually work unless my users all download SQL to their machines (which they won't want to do).

View 4 Replies

Deploying VB 2010 App With Access Database?

Jan 9, 2012

I've tested an application (one that I'm developing) that utilizes MS Access database (.accdb) on a backup machine. And I consistently get an unhandled exception error saying 'The Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine. I suppose I get this error because the backup machine doesn't have a driver or whatever to read the Access database file. Reading

this topic titled "How to deploy VB 2010 application as a standalone without MS Access", I understand that I can just specify a prerequisite for this component (driver or whatever...) in the project designer window in reference to this page. I wonder if there is a simpler way of delivering the database component to users? Or should I abandon the Access database and use a different one for easier accessibility?

View 5 Replies

VS 2010 Deploying A .NET Application With A Font?

Aug 5, 2011

Im wondering if anyone would be able to point me to a very well detailed tutorial as to how to Embed a font into my deployed application , So when its installed on an end user,s computer, they can see the font.

I currently have this code and have embedded the font.ttf into the resource under the files option.

newPDF.addTrueTypeFont("..
esources" & fontName & ".ttf", fontName)

View 11 Replies

Winforms - Deploying A VB 2010 Win Forms Application

Nov 16, 2010

I am deploying a VB.net 2010 winforms application, and when I install it on the client's machine, the install process also installs an instance of SQL Server 2005 Express. The application connects to a central SQL database on the server. To install, I am using the "Publish" option in VS 2010. Why does it do that? There should be no need for a local instance of SQL Express. Is there a way to avoid installing SQL 2005 Express (I know it is free, but I would rather not have it installed if possible).

View 1 Replies

VS 2010 Extra Pages In ReportViewer

Feb 12, 2012

1. I get an empty page at the end of a report. I have 4 pages instead of 3, 8 instead of 7 and so on. I see and print these empty pages. The report width less than the page width minus margins, so this cannot be the reason of my problem. How can I get rid of these pages?

2. If I have a few controls ReportViewer then to print the report I must to press each print button on each ReportViewer, and each ReportViewer prints with a new page. Have I possibility to print all the ReportViewers consequently pressing one button and to continue the report?

View 5 Replies

VS 2010 An Extra Click To Get Out Of A While Loop Using .DoEvents() ?

Mar 15, 2012

I wrote a small API gui to communicate over foundation fieldbus.I've used a While loop that constantly reads some parameter values from the bus. At the end of the While loop, I put Application.DoEvents()so that I can use another button to stop the reading process. It all seems good and easy.. but there's one problem: when I get the While loop running and wish to stop the process, I have to first click somewhere on the form, anywhere, before I could click any buttons(either 'stop reading' or 'reset' button mostly). That extra click makes my form seem unresponsive and lame.I wonder whether this is a problem pertaining to DoEvents() or my use of Foundation fieldbus.

View 1 Replies

Deploying An Application Express 2010 With A Sql Server 2008 R2 Database?

Apr 10, 2012

I have recently developed a back end database in SQL server 2008 R2 and attached it to a application in VB express 2010.Everything works fine and when i publish the application, it works fine on my machine, but once i try to setup up the application on another machine i get the error message: A network related or instance specific error occurred while establishing a connection to SQL Server. Server was not found or not accessible please verify the instance name is correct or allow remote connections.I have read numerous forums on this saying about changing the connection string and instance name.but with being novice i dont understand what needs to be changed etc.The sql server allows remote connections, but i am unsure what else needs changing to allow the application to work with the database on another machine.

View 5 Replies

VS 2010 Extra Blank Page On Rdlc Report

Oct 21, 2011

I have an rdlc report that always produces the last page in blank. In this page, the header and the footer are printed but no data is shown (all data finishes in the previous page). I already checked and re-checked the horizontal and vertical printable areas and all the report definitions fit into these areas (if not, a blank page will be produced in between each page, I guess). If the report has one page, two pages are printed, if there are ten pages with data, eleven pages are printed

View 4 Replies

VS 2010 Make A Code That Unzips Files And Then Move Those Files Into Another Zip File?

Feb 23, 2012

How do i make a code that unzips files and then move those files into another zip file?

View 2 Replies

Deploying A VB With SQL?

Jun 24, 2010

I have writen a program using vb.net 2005 and used SQL Server 2000 as the database. I also used DataSet to process the records. When I try to run the program on a peer-to-peer network it fails and returns the error message

System.Security.permissions.FileIOpermission, mscorlib, version2.0.0.0, culture = natural, PublicKeyToken = b77a5c561934e089

Then on the dialog box there was OK button when click on it, the error message

System.Data.SqlClient.SqlClientPermission, System.Data, version2.0.0.0, culture = natural, PublicKeyToken = b77a5c561934e089 failed

Was also displayed.

View 1 Replies

Deploying .net With Access?

Feb 10, 2012

i would like some advice on how I would go about deploying my application I coded with vb.net and access.The problem I have been facing is that I cannot install it on another machine . It gives me an error saying that It cannot find the database in C:\Users\Weighbridge2\AppData\Local\Apps\2.0\Data\. database.accdb when you install access runtime and access runtime sp1 and copy the database to that location then it works.Is there a more efficient way of going about this. I suspect it has something to do with the refferences and prerequisites but up to now i've tried almost all we know .

View 1 Replies

Deploying .Net With Ms Access?

Jun 6, 2011

I have designed a simple form in vb.net with MsAccess as the backend .The form is used to search for a data and diplay it.I need to create an .exe file of it and distribute it to many users without any errors .I have surfed a lot in search of deploying such applications but ended up nowhere . deploying my application(VB.NET with MSAccess) by detailing me all aspects of deployment ?

View 6 Replies

Deploying App Without Framework?

Jul 10, 2009

I have just completed an app, but i dont want to inculde the redistributable framework... What .dll(s) are required with the apps(so no framework is required)
or can i just integrate framework and my app into 1 setup.exe.

View 7 Replies

Deploying Application On Other PC?

May 31, 2010

I have made a Database application using SQL Server 2005 and Visual Basic (V Studion 2005). The problem is: the SQL server name on my PC is different from the name on my brother's PC.....i want to run the application in his PC......however, all database adapters, objects i have used are linked to my SQL server...hw can i run my application on my brother's PC, with minimum changes and effort?

View 4 Replies

Deploying ASP.NET App To Web Server

Jun 22, 2011

I have been getting an error when moving my application from my local machine to a web server. (I have not been getting the errors on my local host)[code]The first of the exceptions is the first error that came up using SQLOLEDB.1 as my provider, I started playing around with different providers and got the second 2nd exception.

View 2 Replies

Deploying With D3DX?

Aug 5, 2011

I am developing my application using d3dx functions. but when I deploy it to a fresh PC (which has no SDK installation) it doesn't run.

View 1 Replies

VS 2010 - Build My Project (or Publish) VB 2010 Makes And Exe And A Couple Ddl Files

Jun 6, 2012

The situation: when i build my project (or publish) Visual Basic 2010 makes and exe and a couple ddl files. when i run the project with the .exe and the other files the program works perfectly.

My problem: I want to share it with friends and it is just a verry little program ( a n internet radio) so i want it to be 1 .exe with out any other instalation needed so i can easly share it to anyone who wants it. when i make an even smaller program and Debud->build it, it is only 1 exe and no instalation needed. so is there a way to make my program to 1 exe only?

View 4 Replies

.net - Error In Deploying Asp.net Project?

Dec 3, 2011

Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.

[Code]...

View 1 Replies

Deploying .NET Windows App That Contains Access DB?

Jul 21, 2011

I built this vb.net windows application that uses an Access DB for data storage and it works fine in visual studio. The problem is, when I deploy, install it from an MSI, i get this error: (see below)If I right click on it and run this program as administrator, it works fine. I thought it was a permissions problem so I gave user, administrator and system full rights to all the files in the directory. But I still get the error.Isn't giving all the files in the program directory full rights the same as making it run as admin?

[code]...

View 5 Replies

Deploying A Debug Version Of App

Mar 29, 2010

I have developed an application in vb.net.I use a dll that I build as part of a different project in my solution. For some reason I don't get the full functionality of my application with the dll built as a "release" version, but it does work if the dll is built as a "debug" version (that's a whole different problem).I don't have a problem, for now, using the debug version.However, the problem I'm having is I am trying to deploy the application to another system and if I deploy the debug version of the dll I get a runtime error (see below).I have the .net Framework installed. I'm just wondering what has to be installed in order to allow me to use the debug version of the new system? [code]When JIT debugging is enabled, any unhandled exception will be sent to the JIT debugger registered on the computer rather than be handled by this dialog box.

View 1 Replies

Deploying A Linkq To Sql Database?

Mar 4, 2009

have been trying to figure out for weeks now how to deploy my software With database to another computer. nothing seems to work. Is there a way I can do this Automatically. the software works on the other computer but it does not find the database and cannot connect either.

View 1 Replies

Deploying A Project With Web References

Oct 26, 2011

I have a project that uses web references to make SOAP calls to several web services. When I'm working locally, the services are hosted on my local machine, so the URL of each web service is something like [URL]. When I deploy the project to a server, the URL needs to change to the production URL. Currently I am accomplishing this with a prebuild event that does a find-and-replace on each URL and overwrites it with the deployment URL before deploying. Surely there is a better way.

View 1 Replies

Deploying And Packaging In .net2008?

May 9, 2010

how to deploying and packaging in vb.net2008

View 2 Replies

Deploying Apps When Update URL Is Not Available?

Jun 1, 2011

I am having a real issue deploying applications when the URL is not available.how to do updates when the URL is not available? I guess I could always put it in code within a try/catch and do it that way.

ERROR DETAILS
Following errors were detected during this operation.
* [6/1/2011 10:37:25 AM] System.Deployment.Application.DeploymentDownloadException (Unknown subtype)[code]......

View 2 Replies

Deploying Database Not Found?

Feb 7, 2010

After deploying my project, I tried to install it on other pc , it installs well buthenever i run the .exe application my database file which is MS Access cannot be found.Well obviously the path is the problem.How would i make my path flexible and so that whenever i install it to other pc, my database will already be found. And also how can i include the database file inside the installer

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved