Change Grouping Of Radio Buttons In VB 2010 Express Edition?

Oct 4, 2010

The app I am trying to make needs a few info in the beggining, these questions include a radio button I have four radio buttons in the same frame and I want to change the grouping so there are two questions being answered

View 2 Replies


ADVERTISEMENT

Using GroupBox For Purpose Of Grouping Radio Buttons

Sep 21, 2010

I am finding it is not possible to use GroupBox (for the purpose of grouping radio buttons) in a Windows Mobile Application. Is there an alternative to this so I can group radio buttons in a Windows Mobile App?

View 1 Replies

Checkboxes And Radio Buttons In VB Express?

Sep 29, 2009

I am very new to visual basic and I am just learning how to make applications. I need to make an application that deals with carpet sizes. It is supposed to have 3 radio buttons and 3 checkboxes. The correct way it is supposed to work is that you enter a number in the room lenght textbox and a number in the room width texbox. Then it is supposed to calculate the room area in square feet then the carpet required for the room in sq yd and display this in labels. Then using a radio button you select one of 3 grades of carpet with a price per square yard. After this it is supposed to total the amount due for the carpet. Also you can check as many extras as you want which are displayed in checkboxes. When the calculate button is clicked the application is suppsed to calculate all of this at once and display an amount due. I have everything working so far.

I have problems when I get to the code for calculating the amount due. The application only acknowledges when I have one checkbox checked. It doesn't acknowledge if anything else is checked. I also think I should mention that one of the checkboxes is supposed to calculate the installation at $1.50 per sq yd. I can't get that check box to work properly either. Here is the code I have so far.

[Code]...

View 1 Replies

.net - Can Disabling A Control Cause A Radio Buttons Value To Change

Sep 22, 2010

I have a For Each loop going through the controls in a panel disabling them. When the loop reaches one certain grid control and disables it the CheckedChanged event fires for the next control in the loop which is a radio button.

The call stack is as follows:

System.Windows.Forms.dll!System.Windows.Forms.RadioButton.OnCheckedChanged(System.EventArgs e = {System.EventArgs}) + 0x15 bytes
System.Windows.Forms.dll!System.Windows.Forms.RadioButton.WnProc(Microsoft.AGL.Forms.WM wm = WM_RADIOBUTTON_NOTIFYVALUECHANGED, int wParam = 0, int lParam = 0) + 0x17 bytes

[Code]....

I don't understand how control.Enabled = False can cause the OnCheckedChanged event.

View 2 Replies

Change Colour Of Picturebox By Selecting Different Radio Buttons?

Oct 9, 2011

So I am trying to make a program that consists of a form with 3 radio buttons and a picture box. I want my default background color for the picture box to be yello and I do not want any of my radio buttons to be selected. However, when I start debugging my program, one of my radiobuttons (red) is already selected and the picturebox is red.

So I tried adding the if statement..but it kept stating "expression expected"; and it had ByVal highlighted in blue, as you can see.

View 2 Replies

Paint Program With Radio Buttons To Change Colors?

Sep 11, 2010

I am trying to create a simple paint program with radio buttons to change colors and size of the brush and draw within a panel on my form(VB 2008 Express).I cannot get the buttons to work. What do I need to put in the radion button event to change brush color and then also brush size? Following is the code I have so far, with nothing in the radio button events, because everything I try does not work.

Public Class PaintForm

Private shouldPaint As Boolean = False ' determines whether to paint

Private Sub Panel1_MouseDown(ByVal sender As System.Object, _[code]......

View 6 Replies

Radio Buttons Are Clicked The Effect Doesn't Change

Apr 9, 2011

i am having a problem with a calculator that i am making. i am using radio buttons as selectors for the operations (+-*/). i have two input-boxes. i want to do some error checking. for example if the user want to find the mod of a number, i want them to only use inputbox1 to enter the value. [Code] the problem is that when other radio buttons are clicked the effect doesn't change. how can i fix it so that other radio buttons don't have the same action. i am using visual studios 2008 professional.

View 3 Replies

Change Forms With Timer Code In Express Edition?

Mar 18, 2010

I am trying to change forms with timers, but after I got beyond 2 forms the timers would not work for a 3rd form. One time it did display third form but showed second form right after it.

View 3 Replies

VS 2008 Radio Buttons Require 2 Clicks To Change State?

Jul 8, 2009

I have placed a few radio buttons in a panel, but I have a weird problem where they require 2 clicks to change their state.If one of the radio buttons is checked, and I click once on another radio button, this will uncheck the checked radio button leaving no radio buttons checked. I then need to click the radio button a second time to change its state to checked.

View 4 Replies

Compile X64 With 2010 Express Edition?

Sep 6, 2011

I found a forum post about Visual C++, Visual C++ 2008 Express Edition And 64-Bit Targets , but how do I develop x64 applications under Visual Basic 2010 Express Edition?

View 1 Replies

Convert VB 6.0 To .Net In VS 2010 Express Edition?

Feb 10, 2009

I have downloaded VS Express 2010 edition from Microsoft website. I want to convert a VB 6.0 project into VB.Net using VS Express 2010. Is it possible to do it without the "Upgrade Wizard"? How much will it cost me to get basic VS 2010 Professional with the "Upgrade Wizard" option? What other tools (that I might require during conversion) are missing in the VS Express edition?

View 9 Replies

VS 2010 Creating Exe With Express Edition?

Aug 24, 2011

I have a Visual Basic project that needs compiling to an exe. Can you do this with the express edition or only the paid version?

View 7 Replies

VS 2010 Use Of VS2010 Express Edition?

Sep 28, 2011

When Visual Studio 2010 Express Edition starts , there is always a message (a splash screen or what so ever) saying : "Use of this software should be limited to evaluation purposes only" . What does this mean ? We must not share our programs (made with VS2010 Express Edition) not even when they are free ?

View 7 Replies

Is It Ok To Install VS 2010 Ultimate If Already Have Installed VB 2010 Express Edition

Mar 7, 2012

Is it ok to install my VS 2010 Ultimate even if I already have VB 2010 Express Edition? or should I uninstall the express edition first?

View 3 Replies

Tooltip Property - VB 2010 Express Edition

Apr 24, 2010

where have all the ToolTip properties gone in this new edition of Visual Basic Express 2010 edition? I know this feature was available in the previous versions of Visual Basic, but in the 2010 Express release I don't see this feature listed any more, did Microsoft rename this, if so what would the new name be?

View 2 Replies

VS 2010 Positioning Programmatically Generated Radio Buttons

Jul 30, 2011

I am adding a series of RadioButtons to a GroupBox programatically. By default they are all placed on top of each other. So I use a bit of math to position them all nicely and then resize the GroupBox.

However I notice that the GroupBox has an AutoSize property, but it doesn't seem to be resizing as controls are added.

Is there a better way to position my radio buttons than to specify each one programatically? I mean, can't this stuff be handled automatically by the framework?

View 2 Replies

VS 2010 VB - Assign Radio Buttons And Labels As A Variable?

Feb 16, 2011

how do I assign my radio buttons and labels as a variable? I am doing a quiz project and i want my labels to be different each time with different answers to choose from. All of my questions and answers are on Access. I need to display them on my radio buttons and labels.

View 6 Replies

64 Bit Unsigned Integer Overflow - In VB 2010 Express Edition ?

Jul 25, 2011

I have an application that deals with some rather large number values. I wanted the values to allow a roll over so I compiled the program with Remove Integer Overflow Checks turned on. The 32 bit numbers roll over just fine but the 64 bit unsigned integers still throw an over flow exception. Is this a bug in the compiler?

View 7 Replies

Download 2010 Express Edition Stand Alone File?

Jul 30, 2011

Is it possible to download a stand alone file for installing VS 2010 Expres Edition ?

View 3 Replies

Introduction To Visual Basic 2010 Express Edition?

Jun 24, 2010

I am new to Visual Basic. The only programming I have played with thus far is Perl and some Python in script writing for Paint Shop Pro. (if that is acually programming) I found a tutorial on About.com "from the ground up" with a link to download VB 2010 and when I tried to install the vb_web file I got this error:C:usersuserAppDataLocalTempSit24308reboot.ini cannot be opened. I did a computer search and found this file was not in the Temp folder. The install just hung and I could not cancel or retry. I shut down from task manager. When I looked in add emove there was not a Visual Basic listed. I couldn't tell if there were any other files that were added even though VB is not listed. There seems to be more C++ files (which came installed on my laptop) but I'm not sure if there are more of these C++ files.

I have searched for a week and cannot find a tutorial of how to install this program. I see VB 5, VB 6 and VB 2008. I also see a file for Microsoft Web Platform Installer, but it does not say if I need to download and install this file in order to download Visual Basic 2010 Express. I keep going in circles with my searches and always end up back where I started which is at the Visual Basic 2010 Express download page.

View 5 Replies

Make A Basic Roguelike In VB 2010 Express Edition?

Jun 3, 2012

I would like to know the basics of roguelike development in Basic, Visual Basic to be more specific. As stated in the title, I have Visual Basic 2010 Express Edition (fully paid). I do know about variables, if statements, basic math operators (Such as addition and powers), advanced math operators (such as PI and Sqrt), nested if statements, functions, subs, and all of the other basic stuff about Visual Basic. I am most effective with console applications, rather than windows form applications. My favorite roguelike is ADOM (Ancient Domains of Mystery), which, in my opinion, is much better than nethack. I would like to make a game similar to ADOM, but I don't even know how to make the player move around the screen and collide with walls. I am also most effective with Video Tutorials, rather than written tutorials, just cause I'm not a big reader. I have seen most of thenewboston's video tutorials on Visual Basic more than once, and I have all of the basic stuff nailed down in my brain. If anyone at all can help me, or even team up with me in my VB.Net project ATOR (Ancient Temple of Redhold), it would make me so happy I would burst out in tears of joy! Btw, I have created a bunch of unfinished text-based games before in the game engine ADRIFT 5, so I do know the basics of game development.

View 4 Replies

Receive Email Messages In VB 2010 Express Edition?

Jul 5, 2010

I want to receive email messages in VB 2010 Express Edition. I use gmail. It can be pop3 or imap. I would prefer imap but what ever is easier is fine. Then when an email is received i want it to auto reply.

View 2 Replies

Register 2010 Express Edition / Notification Pops Up Always

Mar 12, 2012

I am experiencing an issue with my copy of Visual Basic 2010 Express. I know my copy will run for about, 22 more days. But even when I try to register my product so it can run forever, a notification pops up always saying the same thing - "This product needs to be re-installed." What does that mean? Is my copy fine with no problem? Or do I not have a .dll file that I need to install? Please, help me so I can register my product.

View 4 Replies

T4MVC VB With Visual Studio 2010 Express Edition

Nov 28, 2010

I am having trouble using T4MVC VB with Visual Studio 2010 Express Edition.I can reference the T4MVC classes in my controllers, but I cannot access them in my views (where I actually need them).In the view, the following code is overwritten by intellisense as if the class MVC is invalid.[code]Which generates the error message 'Home' is not a member of 'Mvc'. It seems that in the view there is an Mvc namespace hiding the MVC class. This doesn't exist in the controller.After playing with it some more, it seems the classes aren't available in the View no matter what they're named. What decides what classes and namespaces are available in the view? The classes continue to be available in the controller, regardless of naming as well. I presume there has to be some filter or limit on what is available in the views?I was just watching this excellent video from Phil Haack, and it game me a clue.I need to modify the <pages> section in the web.config file. Now the question is, can I get that to use a class that's not in a namespace, as the MVC class is by default, otherwise I'll have to modify the T4 template to put it in a namespace and include that.

View 1 Replies

Check Boxes And Radio Buttons - Value Is Not Being Updated Until I Select A Different Radio Button?

Oct 10, 2011

trying to write a simple form for calculating professor's salaries depending on their degree and position.my problem is that the when i select a check box, the value is not being updated until i select a different radio button. it probably doesn't make much sense here,

Public Class frmMain
Private Sub optLecturer_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles optLecturer.CheckedChanged[code]....

the values being assigned to my salary label are correct, but are not being updated until i select a new radio button. im not entirely sure how to get around this so that the value is updated as soon as i select the check box.here's when the program looks like:

View 1 Replies

Deploy Project In Visual Studio 2010 Express Edition?

May 13, 2011

How do I deploy my project in visual studio 2010 express edition? I dont see any setup and deployment template

View 6 Replies

Does Not Have The Choose Microsoft SQL Server (SqlClient) In VB 2010 Express Edition

Nov 28, 2011

I have version VisualBasic.2010 Express Edition , but this version Does not have the choose Microsoft SQL Server (SqlClient) when open vb.net choose : add new data source and choose database and add connection Does not have the choose Microsoft SQL Server (SqlClient)

View 1 Replies

Game Programming :: 2010 Express Edition Usernames & Passwords

Jun 30, 2011

I'm actually a beginner in VB express. i made about 10 easy programs, now i decided to make one a bit difficult. I'm stuck at the beginning.In first form i have 2 Textboxes and 1 Button (1username, 1password, button - sign in) and then another 2 Textboxes and 1Button (1username, 1password, button - register) I want to make something like this for beginning: When you register the infos from textboxes (username & password) are saved in some file (let's say in info.txt or info.ini). I actually want to know how to automatically save these usernames and passwords in text file when you click register button, so when you want to login, you have to use registered username&password. So if there in text file is not the username you registered or typed in textbox you can't login.

View 2 Replies

Made A Chat In Visual Basic 2010 Express Edition?

Sep 9, 2011

How I can made a Chat in Visual Basic 2010 Express Edition ?

View 1 Replies

Multithreaded .NET (2010 Express Edition) Program Work Properly?

Sep 11, 2011

I'm trying to make a program of mine into a multithreaded application, but I've hit a pair of snags that I documented in the following code. I can expand this stub into a more efficient version of my existing application.

[Code]...

View 3 Replies







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