Programs From VB6 To VB 2008 Express?

Sep 21, 2011

I am trying to move my programs from VB6 to VB 2008 Express. My initial problen is with getting data from my Jet database. I've searched for samples but haven't been able to find anything to help me. I would like to be migrate the Jet database to the vb 2008 system.

View 3 Replies


ADVERTISEMENT

VS 2010 Creating Install File With Additional Programs In VB Express?

Mar 16, 2012

I'm sure there is an easy answer to this, and it may be "no," but is it possible to create an install file in VB Express 2010 and have that file deploy additional .exe files?

I developed a windows form program that calls fortan routines (in seperate .exe files) for different purposes. I would like to create an install file that deploys not only my VB program, but all of the supporting code.

Is this possible with VB Express 2010? I tried to search for threads about this, but didn't find any that explicitily answered this question.

View 2 Replies

Will Publish Programs Still Work With Expired Registration (VB2008 Express)

Oct 18, 2010

would like to know if the Publish Programs will still work if the VB2008 Express registration has expired

View 2 Replies

Visual Basic 2010 Express Trial - Keep The Programs And Distribute Them Freely?

Jan 22, 2011

If we made programs in Visual Basic Express 2010 Trial are we allowed to keep the programs and distribute them freely on our sites and if we unistalled visual Basic can we keep the programs etc...

View 2 Replies

Build A Class Or A Part Of A Program That Can Be Add Into Other Programs To Be Used In That Programs?

May 27, 2011

I am sure this can be done, as Visual Studio is basically built this way. What I want to do is simply make a class that my other workmates can use. But rather than have it in a code form, I want to build it (partially), and then my workmate can add it into their programs (sort of, like the add reference for the .NET stuff).

View 4 Replies

Implement Calendar With .net Express 2008 And MSSQL 2008 Express?

Sep 21, 2009

how I can implement my calendar with VB .net express 2008 and MSSQL 2008 Express. How do I get it to work with datasets, binding source etc.If I go to Properties>settings my connection string is:

Data Source=.SQLEXPRESS;AttachDbFilename=|DataDirectory|CalendarDatabase.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True

and I have a table with fields:-

CalendarID
Subject
Location
Purpose

[code]....

I can Add the event to the calendar I have the necessary items on my form linked to my table and I can save them to my table:

Me.Validate()
Me.CalendarTableBindingSource.EndEdit()
Me.TableAdapterManager.UpdateAll(Me.CalendarDatabaseDataSet)

But I cant keep the event displayed on my calendar when I close it and open it again.

View 1 Replies

Proper Update And Delete Code For SQL Express In 2008 Express Edition?

Oct 3, 2011

I'm just using the default SQL Server Express in my vb 2008 express edition as my database server for my database operation. When I tried to update the records on my table I got a runtime error which indicates the error on this line 'myCommand.ExecuteNonQuery()'and it highlights a yellow background on it. The runtime error says "SqlException was unhandled: An expression of non-boolean type specified in a context where a condition is expected, near 'Number'. ".

Imports System.Data.SqlClient
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
Dim myConnection As New SqlConnection
Dim myCommand As New SqlCommand

[code]....

View 3 Replies

Unhandled SqlException In VB 2010 Express Thta Does Not Occur In VB 2008 Express?

Oct 16, 2010

I tried to start using VB 2010 Express with a program I originally developed with VB 2005 Express that I moved to VB 2008 Express successfully a couple years ago. It uses a database file (*.mdf) that is on the computer ( not out on a server). When attempt to run the program in debug mode, I get the following error "An attempt to attach an auto-named database for file C:Documents and SettingsTomMy DocumentsQuizzing StuffQuestion Database 2010QuizQuest ionGameQuizQuestionGameinReleaseQuizQuestionDB.mdf failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share."

I first made a copy of the entire project folder that was working in VB 2008 Express and gave it a different name. In VB2010 I opened the project in the copied folder and it said it successfully converted the project. I am able to open the Data Source inthe Designer and see the database structure as I expect. I think the project is still using SQL Server 2005 Express (because it is what is checked in the list of prerequisites on the Publish tab).

Note, I have programmed off and on for many years, but fairly new to using databases and SQL Server.

View 3 Replies

Connecting VB 2010 Express To SQL Server 2008 Express Database Via IP

Feb 29, 2012

Here is the scoop: I am trying to make a user account SQL database work with Visual Basic 2008 Express for login purposes, i.e. usernames & passwords. Plan is to host this server so people can login to use the the application and verify they have a valid account. I would like to host all the account information in SQL due to the possiblity of hundreds of users at any given time. I also need the ability to add data to the database for users registering for the first time. The SQL server will need to be able to access the SQL Server databases remote via WAN.

View 1 Replies

INSERT Or Update In SQL Server 2008 R2 Express In VB 2010 Express

Jan 21, 2011

I am trying to re write a VB6 program using MS Access, many years ago, using VB 2010 express and SQL server 2008 R2 Express. I have a database with several tables, which I created using the designer. I am able to connect to the database and select data and display it in textboxes etc in vb code. What I have not been able to in code is to INSERT rows DELETE rows or UPDATE any data in the tables. I can do any of these operations using the Query Designer, but I want to do it in code. I can post some code if necessiary, but I thought it might just be some property that I had not set in the designer.

[Code]...

View 13 Replies

Connecting VB 2010 Express To SQL Server 2008 Express Via IP

Feb 29, 2012

there Dream in Code Community! Im an okay programmer as far as skill right now I am still learning as we all are I need some help from some experienced VB.NET programmers in the community, Here is the scoop: I am trying to make a user account SQL database work with Visual Basic 2008 Express for login purposes, i.e. usernames & passwords.

[Code]...

View 2 Replies

Converting A VB 2005 Express Program To VB 2008 Express

Feb 24, 2010

The program I am trying to modify was initially written using VB 2005 Express. I have subsequently downloaded the 2008 version. The program creates a monthly spreadsheet from a template. The old code that will no longer (highlighted and underlined) compile is as follows:

[Code]...

View 4 Replies

Connecting To SQL Server 2008 Express From VB 2008 Express?

Mar 5, 2010

I'm using VB 2008 Express for our College Project. I'm also running SQL Server 2008 Express and have installed SQL Server Management Studio and used it to create my database. Both software have been installed and running locally. I'm trying to connect to the database from VB 2008 Express. Database connection wizard have 3 options:

connecting to Access db
connecting to SQL Server 3.5 compact db and
connecting to SQL Server db file.

[code].....

View 1 Replies

Connecting VB 2008 Express To SQL Server 2008 Express

Jan 7, 2010

I have SQL 2008 Express and Visual Basic 2008 Express runing on XP Professional SP2. When I select add new data source from VB I don't have the option to connect to SQL Server 2008 express to get at the to SQL Server Database. I also notice that the OLE DB connector is not availble as a data connector. Can somebody please confirm that VB 2008 Express can connect directly to SQL Server 2008 Express and how I can achieve it.

View 5 Replies

Use VB 2008 Express And Connect To A DB Of SQL Server 2008 Express?

Jan 7, 2009

'm trying to use Visual Basic 2008 Express and connect to a DB of SQL Server 2008 Express but ... you can tell me why in the Database Explorer and the Data menu of VB only have the following options for data source? Microsoft Access Database File Microsoft SQL Server Compact 3.5 Microsoft SQL Server Database File does not have the options Microsoft ODBC Data Source Microsoft SQL Server obs.: I have the Visual Web Express 2008 installed, and there are the options available.

View 10 Replies

Coding Programs That Interacted With Other Programs?

Feb 2, 2010

I started with VB 6.0 back when i was 14, I was mostly into coding programs that interacted with other programs. Recently I installed VB.net 2005 pro i got from school, and i grabbed few source codes that teach show interaction, I feel so dumb, i dont remember anything lol. It be great if you guys can share some source codes and other stuff in this field. also other day i was in dream spark and i am able to get copy of VS.net 2010 ultimate edition, are there a lot of major changes, cause i got 2 thick book for VB.net 2005..

View 1 Replies

Distributing Programs: Getting Programs To Users Who Might Want Them?

Feb 23, 2009

When you've finished a program and you're trying to distribute it to the mass public. How is the best way to go about doing this? What sites would you post your program on and getting the word out that there is a new program on the block and it does xyz. This is directed to freeware so there wouldn't be any advertising.

Sorry for not explaining it very well the first time.

View 2 Replies

VS 2008 : Communication Between .net Programs?

Jun 15, 2011

I have a Windows Form Application which has been developed in vb.net 3.5. It is a charting program and shows stock market charts to users. Now I have made another program in vb.net (same .net version) and I want this program to interact with the one I made before. The new program is like a small scripting language. So for example: if I run a script then its output should be reflected in the other program. How can the two programs communicate ? Both will be running on same systems. No remote stuff. I mean passing arrays,strings or possibly structures.

Plus I have several functions which are written in first program. Is it possible for the other program which is an .exe also to call the functions of the other one if I make sub/function public or something. The reason is we can calls functions or subs if we include a dll. But can one exe calls functions/sub of another exe (if both program are in .net).

View 10 Replies

VS 2008 Hijacking Other Programs?

Apr 1, 2011

the only way I can get reading from an instrument is through proprietary software. even though it is connected with USB. the instrument - a Cary 500, with a GPIB interface.the problem is with instrument commands, like "reset" or "change wavelength" or "instrument reading" They reside inside a primitive Basic shell provided by the instrument software. I'm looking at expencive National Instruments, is there another solution with VS/NET?

View 3 Replies

2008 Programs Won't Open On Any Other Computer!

Mar 31, 2009

They are all working on my computer,but they are not working on any other computer(I tested it on about 10 computers). They are working when i start making it,but after they are not working. When i try to run it on other computer it is not opening(there is not any error message), or there is a crash report(application crashes). So they are working on beginning of programming, and after they aren't.

View 1 Replies

Bug In 2008 Programs Running Under 64 Bit Windows 7?

May 27, 2010

I know there are compatibility problems with 32 bit code running on 64 bit machines, but this doesnt seem like it should happen.

View 3 Replies

Can't Open Existing Programs In VB 2008

Feb 22, 2009

I will do a program then save it and close it out but when I go back to open it it won't open. It just sits there. I'll click on Recent Projects and they won't open. I'll click on Open Project and select a existing file and it will just put it in Recent Projects but won't open it up.

View 2 Replies

Macbook-computers Run Programs From A Vb 2008?

Jun 6, 2009

Can Macbook-computers run programs from a vb 2008 .net, Windows Vista computer?

View 6 Replies

Running VB 2008 Programs On Windows 7?

May 16, 2010

I've coded this program in Windows XP 64 Bit. I also compiled it in Windows Vista 64 Bit. I've ran this program on 32 bit machines before and never had any problems. I purchased a new laptop with Windows 7 on it and i'm getting a "Not a valid Win32 Application" Error.

View 3 Replies

VS 2008 - Communication Between Programs (Tag Property)

Apr 19, 2010

Is it possible to get the Tag property of another .NET form running in a seperate process?

View 11 Replies

VS 2008 - Get HDD ID In Textbox When Programs Loaded

Oct 20, 2011

I am new to VB and want to make a software that as soon as the programs load, the HardDisk id of the pc appears in a TextBox...

View 5 Replies

VS 2008 API To Get List Of Installed Programs

Dec 2, 2009

I'd like to mention that getting a list of the installed programs via the registry is not a viable way to receive a full an accurate list. The two main areas where the programs in the registry are stored, are mainly MS programs. Some manufacturers put their keys here as well, but most don't. And since it's impossible to know where the manufacturer has stored the key, let alone the name of the key that would give the list and the uninstall capability, it's not ideal to use the registry.

That being said, I was told that there is a COM API that Microsoft has made and uses in the Windows OS and was hoping someone knew what that API is and how to maybe implement it in VB.

View 38 Replies

VS 2008 Get A List Of Programs From Registry

Oct 29, 2009

Is there a way to get a list of programs from the registry?

[Code]...

View 1 Replies

VS 2008 Listing All Installed Programs?

Apr 22, 2009

I'm trying to find a way to get all of the programs that are installed by accessing the information from the registry. I googled it and was able to find the following code

Private Function Getinstalledsoftware() As String
'Declare the string to hold the list:
Dim Software As String = Nothing

[code].....

View 8 Replies

VS 2008 Program To Monitor Other Programs?

Nov 3, 2010

This question may be vague but I was wondering if anyone has ever implemented an application that basically creates a UI to list and monitor all running applications you have running. This applies to many developers who might have multiple programs running continuously and it would be great to have an app that monitors these programs..or does anyone think it is just unnecessary.

View 1 Replies







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