VS 2008 Moving Database Vb Exe File To Another Computer?

Jun 14, 2010

I have done a database system using microsoft access 2007 which connected to a form of vb2008.And now i want to transfer the system to another computer but as i tried it's not work.I already build the file and copy whole folder that contain the bin, obj and my project to the new computer. I tried to run it on the new computer but it show me an error that "selected collating sequence not supported by the operating system".What should i do to overcome this?

View 1 Replies


ADVERTISEMENT

Moving Exe File To Other Computer

Jun 22, 2010

I am very new to vb 2008 and have create a simple window forms application which link to microsoft access 2007 database.I build the application exe file already. The exe file is run well on my computer, but when i transfer it by copy and paste the whole folder to another computer it cannot run. I am wondering why this happen? the error is as below : "selected collating sequence not supported by the operating system".

View 18 Replies

VS 2008 Moving Project To New Computer?

Oct 26, 2011

I have been developing my program using Vista on my laptop, and I want to move it to my new desktop with windows7. I had many errors when building the project on the new computer,which I thing I have been able to fixed. This is the last error I am getting when try to debug on the desktop:

View 2 Replies

Unhandled Exception - Moving Database File?

Feb 9, 2012

I'm creating this VB 2008 application and I want to make it into a CD so it can be installed in other computers. Problem is, after I create the setup and start it even from the computer that created the application in the first place, it gives me the "unhandled exception has occurred in your application. If you click Continue, the application will wignore this error and attempt to continue. If you click Quit, the application will close immediately." and "The following file could not be found: "C:UsersMyNameAppDataLocalApps2.0Data\VHMGGXM7.8K8..." errors.

Since my first "form" is a login system, I am not sure if this problem appears because of the database search, or just the transition between forms (unlikely, I guess, since there is sort of an introductory video before the login system which uses the same logic to transition between forms)... So I tried moving the access database to a different path and I wanted to know how to tell the program (through v.b.) that the database is now in "this path" without having to re-connect and create a new DataSet, which will make me have to start the whole project again. I set up the whole project in Program Files (a place all computers must have). The video before the login system works fine, but I can't really find any other problem.

View 3 Replies

Moving Program To New Computer

Aug 15, 2009

I have been working on a program on my old computer. Now, I have gotten a new computer and would like to continue to work on it there. The program is not yet finished. I would like to copy my program to my new computer. How can I do this? I tried copying the folder from my old computer to my new one and it opened the project, but I could not edit it as there was no permission given to edit it. It shows it as a read-only.

View 3 Replies

Moving Vb Project From One Computer To Another?

Jul 30, 2009

I have developing a program on one computer and when I try to move it to another computer running vb2008 express, I always get an error message saying "the project file (directory path, project name.vbjproj) has been moved, renamed or is not on your computer." The files etc. are in the same folders as other projects that run properly. Can't figure out how to correct the path etc. or figure out why the message as the files are where they should be.Cancel the question. I found my problem and it was me that caused it.

View 2 Replies

.net - Object Reference Message After Moving To Another Computer?

Feb 29, 2012

The Error I get is "Couldnt show any because: Object reference not set to an instance of an object"While on the development machine it works.Both running Win7, I inclluded all sql files as stated on the deployment instruction for datafile and sql-ce dll's from the msdn.The datafile is fine and connection is good, becuase a "cmd.ExecuteNonQuery()" runs without problems.

Public Sub LoadFolders()
Dim ds As New DataSet
Dim da As SqlCeDataAdapter = New SqlCeDataAdapter()

[code]....

View 2 Replies

Opening Project After Moving Files To New Computer?

Dec 4, 2010

I am having trouble opening my vb.net 2005 project from a backed up copy on a hard drive. The original files are on my old XP computer which I no longer have access to. I am trying to open the project in vb.net 2010 on Win7. I have converted the project to vb.net 2010 and when I open the file, nothing shows up, when I try to open them, it tells me the form isn't found in the project directory because it's been moved or deleted. I know that the software on the hard drive didn't back up .exe files, I'm not sure if it did back up other kinds of files. I don't want to restart the project because I've spent over a year on it and have written over 3000 lines of code on it.

View 5 Replies

VB2008 Transfer Vb Database Exe File To Another Computer?

Jun 14, 2010

I have created a simple window forms application which link to microsoft access 2007 database.

I build the application exe file already. The exe file is run well on my computer, but when i transfer it by copy and paste the whole folder to another computer it cannot run. I am wondering why this happen? the error is as below :

"selected collating sequence not supported by the operating system".

Will it cause by the different .NET Framework version? How can i solve this? Or any others way to transfer the exe file to another computer?

View 4 Replies

VS 2008 Why Is Not Moving The File

Feb 25, 2010

I'm trying to move a image.

Dim txtfilename As String = OpenFileDialog1.FileName
My.Computer.FileSystem.MoveFile(txtfilename, "C:WindowsSystem32oobeInfoackgrounds")
MsgBox("File Moved")

View 8 Replies

VS 2008 - Moving File To Recycle Bin

Aug 25, 2010

I am writing a program to manage some of my files. I already know when I want to send a file to the recycle bin, so I don't need the system to prompt me each time. How do I tell it to back Off, and just do it?

Here is my
Sub RecycleBinFile(ByVal strFilename As String)
My.Computer.FileSystem.DeleteFile(strFilename, FileIO.UIOption.AllDialogs, FileIO.RecycleOption.SendToRecycleBin, FileIO.UICancelOption.DoNothing)
End Sub

Some of my research has pointed me to FileIO.UIOption.AllDialogs.

View 8 Replies

Copy A File From A Local Computer To A Remote Computer On The Network?

Dec 19, 2006

I need to copy a file from a local computer to a remote computer on the network, if i try to use File.Copy without logon i get the following error:"Logon failure: unknown user name or bad password."How do I provide user name and password for file copy?

View 2 Replies

VS 2008 Computer Restarts And Mapped Drive Appears Under My Computer?

Mar 31, 2009

Problem:When my computer restarts my mapped drive appears under My Computer. When I try to use it from code I get errors. If I open the mapped drive by double clicking it, and then try the code, it works. What I discovered is that when my computer starts the status, using net use, is

[code]...

View 5 Replies

Execute Exe File Locates In Computer B From Computer A?

Nov 4, 2010

I have exe file that lunch a program takes 5 inputs. this exe locates in computer B and I need to execute it from computer A using VB.net customized application that pass the inputs through it.

View 3 Replies

VS 2008 My.Computer.Network.DownloadFile - Get Rid Of The File When A Users Cancel

May 7, 2011

I use this line to download files: My.Computer.Network.DownloadFile(VideoFilename, SaveLocation, "", "", True, 8000, True But if a users cancel the download my application crashes. I searched Google but there's very little info about this problem. I tried with: My.Computer.Network.DownloadFile(FilenameMP3, SaveLocation, "", "", True, 8000, True, FileIO.UICancelOption.ThrowException, FileIO.RecycleOption.SendToRecycleBin()) But that line of code doesn't work. I need to get rid of the file when a users cancel

View 1 Replies

VS 2008 - Share Files From A Computer To A Computer That Are Connected In?

Dec 21, 2009

How do you share files from one computer to another that are connected in one wireless internet connection? I mean, it's possible using shared folders this means it could be possible in vb.net too..

View 1 Replies

DB/Reporting :: OLE Database Access - Move My Programs And The Database To Another Computer And Hard-disks

Apr 21, 2008

I want to move my programs and the database to another computer and hard-disks. It looks to me as though I nearly have to re-create the controls and rewrite some of the code to make it so the programs still work after the move. At least with ODBC all I would change was the DSN definitions external to the programs. Is there an easy way to move or rename a database without loads of work?

View 3 Replies

Deployment :: Moving MS SQL Database To Another PC?

Feb 25, 2012

I'm happy to register in this forum , and here is my first question..I have developed an application in Visual Basic.Net 2010 and i used MS SQL Database My question is how do i move the database to another computer in order for my program to run???

View 6 Replies

Moving A Dataset / Database

Jul 27, 2009

I am currently working on a program (VB.net) that use a database (SQL server 2005)that is on a server. I am using a dataset to store queries and update the database.If i was going to copy the database and move the copies location, what would i need to do to make sure that my dataset points to the copy and it's new location.

View 2 Replies

DB/Reporting :: Moving Through Database Records?

Feb 2, 2009

I am a high school student and i am teaching myself VB, C# and C++... it is a slow process containing mainly trial and error, looking up things online, and when the time is right asking assistance from people who know more then I.

I am currently creating a VB program that creates a database of questions, and the same or separate database. using them questions it can initiate a quiz that will save results in a different database for each student. I am having difficulties getting the code right for reading the databases, and getting it to move to the next portion of the database for each question... a little more info:

Question # = Primary key (there will not be more then 1 of the same # problem)
Question Type = i am using different integers right now to specify if the question is a T/F, Multiple Choice, Open info Et Cetra.... Question Answer = Correct answer Alt answer (x3) = option to add other answers for multiple choice problems...

I don't know exactly how to get it to read a problem and when clicking a next button on a form to have it go to the next question in the database..

View 3 Replies

VS 2005 Moving Rows From One Database To Another?

Feb 23, 2011

I have a live database and an Archive database. I want to do a selct on the live and basically create a new row in the archive database table and insert all the columns then delete the row from the live. Here is the code that creates and deletes:-

Private Sub MoveToArchive(ByRef oleDRClean As DataRow, ByRef oleDSArchiveCleans As DataSet)
Dim oleDRArchiveClean As DataRow
oleDRArchiveClean = oleDSArchiveCleans.Tables(0).NewRow

[code]....

I ran a query in access to show the same sql select and after running my routine they all say #deleted. But when I run the query again I get the rows back WHY!

View 5 Replies

VS 2008 2 Threadpool - One Threadpool For Scanning Files And Second Threadpool For Moving File's Into Drive's

Jun 4, 2011

I m trying to move all my drive's files into h drive firstly i have added all drives in threadpool for scanning and when scanning of any drive finish (Without waiting for other drive's complete ) it will move file's to h drive but it is not working as i wanted that's why i need two threadpool - one threadpool for scanning files and second threadpool for moving file's into drive's

View 11 Replies

VS 2008 Settings.INI - Write To An INI File Like "My.Computer.FileSystem.WriteINI"

Aug 23, 2009

IS there an easy way to write to an INI file like. My.Computer.FileSystem.WriteINI(Filename, Section, 1st part, 2nd part)??? Or if not how can i write to an ini file easy and how to read them?

View 5 Replies

New Computer - How To Use Old Database

Nov 1, 2010

Visual basic 8.0. I used Access to create a datbase and am using it without a hitch in a program that I wrote. However, I am about to replace my computer with a new one and wish to know how a move the existing database into the new computer. I used Microsoft's "one key (?)" distribution vehicle to deploy the program after compiling it. The database has been updated using the .exe version of the code. With enough work, I think I can find the execution data base by looking in the place Microsoft hid it. I will re-deploy the program on the new machine but how do I handle the database?

View 1 Replies

Moving Selected Data From Access Database To Create Wmp Playlist In Visual Studio?

Jun 9, 2011

I have a form with a data connection to my access database that shows my music collection, Artist,title,year,chart position, media location & filename.It is set to show only artist & title I have a list box that i can manually load files into to create a wmp playlist i would like to be able to do one or both of the following:

1. drag and drop data from my dataset to the list box to provide a playlist

2. create a playlist from this database that will auto play

View 2 Replies

Making Moving Percentages Into A Moving Graph?

Oct 5, 2008

I have this:

Private m_PerformanceCounter As New _
System.Diagnostics.PerformanceCounter( _
"Processor", "% Processor Time", "_Total")

[code]......

View 4 Replies

Moving And Then Renaming A File

Apr 19, 2009

I am using Process.Start to run a command line application. The log for the app is automatically saved in a predefined location that I can not change. Also, I can not specify the name of the log.I need the log to go to a specific directory and the be renamed. I thought I could do it this way:[code]When I run the code, it tells me that it can't fin the file "Test2.txt". When I isolate the code and only run the first part, it moves the file to the second directory just fine. It only errors on the RenameFile line.

View 9 Replies

Moving File To Directory?

Nov 19, 2009

At the moment the user browses for a file they want to install and then they have to save the file manually I want the program to install the file the user chose into the direcotry there selves.

View 19 Replies

Access Database Other Computer In LAN?

Jun 21, 2010

i'm finish to develop a registration system using vb 2008 exp edition. so, i want to connect my standalone system with LAN network. i want to access database from other computer and be use in my system. i'm use crosscable to connect with 2 computer. before this, i'm just change connection string: 'server = ip address of second computer but it's didn't work.

connectionstring = "server=localhost; user id=root;password=123456;database=vrs;"

View 3 Replies

Connect With Database From Another Computer?

Jan 14, 2012

I'm using vb2008 with DB Msaccess 2003 in the first my language it's not very well so I'm sorry fro bad expression I have two computer ( Pc1,Pc2)I put the program(exe) with DB on the PC1 , then I put the program(exe) on the pc2 the pc1 connect to pc2 how do I deal(connect) with DB from Pc2 ?

View 13 Replies







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