Use IE8 In Program 2010?

Apr 3, 2011

How can I use IE8 in VS 2010? It is using IE7..

View 2 Replies


ADVERTISEMENT

VS 2010 : Program To Save Settings To Another Program Without Running The Program That Is Being Edited?

May 5, 2012

is it possible by 1 program to save settings to another program without running the program that is being edited?

View 6 Replies

VS 2010 Program Crashes As Published Executable, Not As Program Running In Studio Or Express?

Jun 6, 2012

I wrote this VB program to be able to throw a device we developed into programming mode where we use an ATMEL Flip installer to upload new firmware. I can program one device after another running the application off of Visual Studio Express 2010 or Visual Studio 2010, but when I go to publish this file and run it on another machine, it becomes unstable and crashes after each upload. On those same computers if I run the raw unpackaged program under Visual Studio Express, the system does not crash, and I can program devices repeatedly.

View 5 Replies

VS 2010 Program Program That Generates A Batch File Stops Responding?

Sep 26, 2011

I've been working on a program that generates a batch file, then when you press a button, it executes that batch file. There are multiple batch files attached to each item in the list box.

[code]...

The only thing that it does when I press the button, is starts the batch file, then goes to function searchtitle, which executes the batch file again when it finds out it didn't work properly.The button text doesn't change, none of the items are being added to my first list box, and I can't do anything to the window after pressing the button. It constantly opens the batch file every 5 seconds or so.

View 2 Replies

VS 2010 - Wide Search -program Allows Users To Insert Documents Along With A Bunch Of Their Attributes Into The Program

Apr 14, 2011

The program allows users to insert Documents along with a bunch of their attributes into the program. The documents are stored in a relational database. One of the required functionalities is allowing the user to look for such documents. The User normally search directly for the obvious attributes of the document, like a unique ID, or it's Title. The problem is that from the search parameters is not allways known which ones will the user fill. For example the user inserts the name and version of the deocument, another time the user enters part of the Title and the person that delivered the document, or might just enter the document number and nothing else. Some of the data might even be incomplete, like title, name of the person who created the document and so on. The idea from the person who designed the system (I'm only reimplementing it) was to allow easier searches for the user, and allowing the user to search for more parameters tod with the idea that "the more parameters, the more specific results", since the results are always group of documents instead of single documents.

View 14 Replies

VS 2010 Program Will Need To Store Some Settings For When The Program Gets Closed Then Opened Again?

Jan 28, 2009

My program will need to store some settings for when the program gets closed then opened again. I would then like to reload the settings?

- Flat file
- Database
- Registry
- Other

View 1 Replies

VS 2010 VB 2010 - Program For Multiple Choice Test?

Apr 2, 2011

I'm really new at programming and was looking for guidance about a project I have.I have to design a program that administers a multiple choice test to users. It delivers questions one at a time, from a predefined test file for the user to answer. It also marks and displays a score at the end of the test.

First, a QUESTION form verify's the user's registration status and access. The user provides a registration number and password and the program reads it from a "registration.txt" file to determine if the user is eligible to take the test (i.e., they are registered to take it). If it is correct, then the user presses the "Begin" button. If not, then a message appears and the student tries again to enter the information.

A read only text box will display the score at the end of the test (String with format correct/total) and the user can't retake the test.Second, a QUESTION form opens after clicking "Begin" on the entry form. The questions are going to be from a "testfile.txt" file.Each question is on multiple lines in the file. The first line consists of the question followed by possible answers followed by the correct answer ( 3 items are separated by "#"). The current question number and the question will be displayed in textboxes.'n'= possible answers; so each of the next 'n' lines provides a possible answer. All possible answers will be displayed in a Listbox.After the user selects an answer, an ''Enter'' button is pressed. This will submit and evaluate the answer. If nothing is selected a textbox should appear and display the error message (APPEARS ONLY IF THERE IS AN ERROR). After pressing ''Enter'', the next question is displayed.When all questions answered, the entry form is displayed again and displays the score.

I know that's a lot of information, but I wanted it to be really clear. Would it be best to cycle/loop the questions with a DoWhile loop? And how would I store the answers while the user goes through the test?

View 7 Replies

VS 2010 Use Program As Default Program?

Mar 12, 2011

I want to associate my program with a certain filetype. I know how to do this, but my question is: how i can i see witch file is opened?

View 1 Replies

Convert C# 2010 Project To Program 2010?

Jan 12, 2011

How can I convert a C# 2010 project to VB2010?

View 3 Replies

VS 2010 .Net 2010 Program .exe Wants Excel 2010?

Aug 4, 2011

VB.Net 2010 program .exe on PC with Excel 2007 gives error when cannot find Excel version 14, which is Excel 2010 I have developed a program in VB.Net 2010 which reads from an Excel spreadsheet. It works fine in the IDE on my computer. I built an .msi and executed it on my computer. I get "Error: 53 - Could not load file or assembly 'Microsoft.Office.Interop.Excel, Version=14.0.0.0, Culture=neutral,PublicKeyToken=71e9bce111e9429c' or one of its dependencies. The system cannot find the file specified."

The only version of Excel on my computer is 2007, which is version 12.0.6557.5000. The version the error says it needs, version 14, is actually the version of Excel 2010.I have put in MsgBox statements to find where the error occurs.

[Code]...

View 2 Replies

VS 2010 Randomizing - Program Randomly Choose Questions - NEVER Choose Same Question In Same Program

Dec 20, 2011

I am currently working on a family project which is based on "Who Wants To Be A Millionaire?" show. There is a huge diffrence between the show and my project. My project is a christmas edition and the goal is not to get money or something, since I will not add it... Erhmm... Let me get to the point. I have already designed a layout and scripted some things. I have about thirty questions but I do not want them to always spawn in the same array, if you know what I mean. I want the program to randomly choose one of those thirty questions and NEVER choose the same question in the same program run. By the way, there are four options on my project: A, B, C and D. I have got everything, I just need a code.

View 3 Replies

VS 2010 Best Way To Program?

Jan 8, 2011

I'm making a Sudoku program and I want it to be able to do 3 things:Generate a new, Valid Sudoku Check Exsisting Sudoku for Errors Solve Exsisting Sudoku This will be My Interface

what I have So far:my GUI and the text boxes only accept 1-9 Now I have never programed something that uses this type of logic (chess,reversi,sudoku) so i don't know how to start and since i'm newish with programming, oop and vb.net i think i need a little help(or a lot)

What I was thinking is I need to make one class for almost everything lets call it Sudoku and it should be able to get numbers from text boxes store in a efficient way(maybe an array of array, or List of sorts)

It should also contain methods that can solve and check and generate sudoku's

View 6 Replies

VS 2010 How To Run Program In A VPS

Feb 10, 2012

My program check the license connecting to my data base. I have several customers with VPS.

View 2 Replies

VS 2010 Program In VB?

Jul 26, 2010

I'm developing radio player in vb2010. I added some channels but i want to know how to do to offer the possibility to the user to add channels. I want the channels to be added as linklabel in a groupbox (groupbox3 in my case).

I want to do something like this: i press the "add new channel..." button, a new windows will be open. That windows must say: Enter a name for the channel and enter an URL for the channel. After that my channel will be added to groupbox3 in my case. I need my channels list to be saved.How can i do that, how do i offer the possibility to the user to add new channels, then how i save my channels list?

View 6 Replies

VS 2010 Program Won't Run

Mar 23, 2012

I use vb2010 to create a program, when I debug the program everything works fine, even when I run the program from the projects folder.

But when I installed it using installaware, the program doesn't run (even if I run as administrator).

View 12 Replies

Call Program With VB 2010?

Oct 2, 2010

My name is malky, a programming student currently learning visual basic 2010. I mostly know basic level of programmming (such as playing around with textboxes and such) and for my next project, I need to be able to call an executable file (the On Screen Keyboard to be exact) as my program first loads.

View 18 Replies

Converting An Old Program From VB 5 To Run In VB 2010

Jul 20, 2011

I have been given the task of converting an old program from Vb 5 that needs to be able to run in VB2010. I have read a few forums on the subject but whatever I try doesn't work. The .bas files convert over fine and the code from the forms comes over, but the forms do not appear. Instead there is a bunch of gibberish. How can I convert this? I tried going to version 6, which the forms worked in, and then to 2010, but I couldn't get the vbp file to show up or the forms.

View 1 Replies

Edit XML In Program 2010?

Jun 21, 2010

I am writing a program that will need to edit an XML file and replace it with new data. I currently have working code using XMLWriter functions, but the problem is that it rewrites the whole file, deleting anything it didn't write that time around. I am assuming I either need to use a different function in XMLWriter or use a different method than XMLWriter.[code]...

View 7 Replies

Opening A Program Through VB 2010?

Jul 8, 2011

Okay i know this is a noob question but what is the code for opening a program through visual basics 2010?

View 1 Replies

Spellchecking In A VB 2010 Program?

Jan 29, 2012

I want to add Hunspell spellchecking to my program

I have downloaded Hunspellx86.dll and Nhunspell.dll.

When I try to register the dll's using Regsvr32 I get the message "The ...(module)... was loaded but the entry-point DllRegisterServer was not found"

According to MSDN this means that they are not dll's!!

View 4 Replies

Upgrade 6.0 To Program 2010?

Mar 1, 2012

I have a vb 6.0 program which has .dsr forms. How do I upgrade these forms?

View 2 Replies

VB 2010 Put A Dll Inside Program And Use It?

Dec 19, 2011

I was just wondering if it is possible to put a dll file into the resources and use it as a import on that same program? So that I wouldn't need all my users to have both the dll and the .exe. since they would be combined into one.

View 20 Replies

VS 2010 Run Another Program In The Background?

Sep 30, 2011

is it possible to call another program in the background? I'n doing a project that uses .net to control a camera. the camera is nikon, which has a sdk. unfortunately, the sdk is an unmanaged dll, from the research I did, people complained that it is difficult to use it in .net. actually, no1 has example. but the sdk has sample in vc++. so, I'm thinking maybe can build the control program by vc++, then use vb.net or c# to it and run it in the background. so, I do not have to mess the dll to .net.

is this a good choice? or, not really? how to do it? if I use a console program, how to avoid popping up the cmd window?

View 4 Replies

VS 2010 - How To Protect The Program

Dec 13, 2011

I have developed a program, which will be installed by several users. How can I protect it, so, once installed, the users can use them on the installed pc, but not others. before, what I did is: create a web service, when the user use it, they need verify the account by the web service. however, it needs the user always be online, which is not applicable to this case.

View 1 Replies

VS 2010 : Program Not Running On Other Pcs?

Jun 14, 2012

I have developed a program with vb2010, created an installer with installaware and installed the program on my develop laptop and on my normal desktop pc (both win 7 64bits, but program runs on 32 bits).So on my laptop it run perfectly, but when I try to run it on my desktop pc, the only thing I see is the admin message (the program needs admin rights) and than nothing happends (even checked the taskmanager, it shows the program for a short while and closes it even as fast as it opens).I don't know what went wrong, the installer checks the framework which is needed (4.0), but I have that already installed on my desktop pc.

View 8 Replies

VS 2010 : What Is Required To Use SQL CE In A Program

Mar 22, 2011

What is required to use SQL CE in a program? Does some version of SQL Server need to be installed?

View 2 Replies

VS 2010 Cannot Run Program In Other Computer

Jul 15, 2011

I get this error :

Problem signature:
Problem Event Name: CLR20r3
Problem Signature 01: tuto.exe
Problem Signature 02: 1.0.0.0

[code]....

View 1 Replies

VS 2010 Changing The FPS Of A Program?

Sep 3, 2011

So, I want to know. What are the possibilities of changing the FPS of a given program. If the odds are anything about 0,

edit: I didn't make myself very clear. I'm just curious if it's possible change a program's limit to FPS. For example, I can change Firefox.exe to only get 10 FPS, and nothing more.

View 6 Replies

VS 2010 Creating Program For XP?

May 8, 2011

I'm a VB.net newbie and trying to write a simple program for installing in a few of my company's computers, most of which still use Windows XP.How can I specify when publishing in VS2010 that the program is for installation in XP?

View 3 Replies

VS 2010 Extract Zip From VB-Program?

Jun 14, 2011

Is it possible? And before you tell me to use SharpZipLib or something, i should warn you since i am a complete noob and cant use it without a complete, easy to understand guide.

View 6 Replies







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