ComboBox Results Equaling A Answer?
Feb 4, 2011
I have 3 ComboBox, I need the selection of the combobox to equal a number, (for example, the first option would = 1, second option would =4 and so on).the numbers will then be added up to show the sum.
View 2 Replies
ADVERTISEMENT
May 28, 2011
I have a simple database comprised of one table (called "Plants") and one form (called "Plants To Use"). In the "Plant To Use" form there are two fields: Plant ID (a nine-digit ID) and Paired Plant ID (a combo box pulling all of the Plant IDs). I want to limit the Plant IDs in the combo box to only IDs that match the 3rd, 4th and 5th digits of the "Plant ID" on the form. For example, if I pull up the record of 99874234 on the "Plant To Use" form I want my combo box to list all other Plant IDs that have 874 in the 3rd, 4th and 5th digit (e.g., 778746320, etc.).
View 6 Replies
Jan 9, 2009
Im using a combobox that bound to a DataSet. The Dataset retreives it's values from SQL.
I can retreive the values fine. However only displaying (1) Column. Which is fine.
Here's where it gets complicated for me. The dataset has 2 other columns that get filled. I need the resulting columns to be sent to text boxes when I select a value from the combobox.
View 2 Replies
Apr 17, 2009
populate a simple combobox with a query to a MySql database. I Just want the combobox to show the results of the query:
SELET DISTINCT models from Cars
I am using VB 2008 with Datasets, how can I achieve this?
View 2 Replies
Jan 11, 2012
I'm having a devel of a time getting what I figure is something simple to work.
I need to set up a Combobox where the list of items is created by accessing a stored procedure.
The SQL code is simply (I left off the code to create the sp);
SELECT ItemCode
FROM vw_CodeList
GROUP BY ItemCode
ORDER BY ItemCode
View 1 Replies
May 5, 2012
I've populated my DataTable will all the results from a SQL search. Upon a button click I want to populate a combobox with all the results where a condition is met. My DataTable as a column called UserID and I want to add all results where the UserID is equal to a set value (for example 12). I can do this to add all results and I guess I could add a if statement inside this to be If Entry.Tag = 12 Then but is there a better way?
[Code]...
View 2 Replies
May 28, 2010
I'm trying to create a Windows form application which uses a few data grid views to pull data back from a SQL Server database. I've managed to get the data back okay from the tables but what I want to do is filter that data dynamically based on values input by the user from a combo box and a date time picker. Each of the data grids display production data for a machine but the combo box and date time picker will allow the data to be filtered by shift and date respectively - how to I pass the values of these to the SQL query returning the data?
View 4 Replies
Dec 9, 2010
I am currently having a headache on how to solve this problem that i am facing.here is the situation:I have a combobox and a list box on the main form. The combobox will get the data from the ms access database.In the database, i have the details of a person's IC, Name and DOB say for eg on one entry I have D215311523C,SHAWN,13/04/1987
So now, my combobox on form load will show the list of dates in the database to allow the user to search base on the date itself by clicking on the selected date. So when the user clicks on the particular date say 13/04/1987, people in the database whose birthday is 13/04/1987 will be shown on the listbox.Meaning to say if i have 3 entries whose dates are the same 13/04/1987, 3 entries will appear. If there is only two entry, then two results will be shown.
[Code]...
View 1 Replies
Sep 28, 2010
I have a form that allows users to select file and then it reads the contents, parses the data and then executes a sql insert statement to add it to a database. What I am having issues with is showing real-time results. Currently, I have the import operation take place on the import form within the OnLoad event. The problem with this is it only shows the final results instead of the results real-time. Is there anyway to do this without creating a seperate thread and delegates?
View 1 Replies
Jul 11, 2011
I wrote my first program today and it works like I want it to Except when the Message box pops up there is a zero there untell you press the OK button then the answer displayes. How do I get rid of the zero or replace it with "Answer"?the program consist of 2 buttons, a labes, and a text box, when you enter a number in the text box then press button 1 the answer displayes in the label. If you press button 2 the answer displayes in a message box.I am new to programing and this is the first program i wrote without following a tutorial or book.[code]
View 14 Replies
Feb 22, 2009
I've googled like crazy and tried MSDN but I can't get a clear answer what to use ToString for.
View 11 Replies
Apr 27, 2011
In the user input of a textbox I would like that the user can input a formula to make it easier for him. So instead of inputing 400 I would like the user to have the possibility to input as 8*50. Is there a command for vb2008 to calculate the answer of this formula inputed by a string ?
View 2 Replies
Jul 2, 2009
[Code]....
As this Loops round, the answer for formula will eventually become the same as what was input, X. How can I get the Loop to stop when it has the same answer twice in a row? The counter will count how many times it has had to Loop before finding the repeated answer.
View 3 Replies
May 29, 2010
I'm new to the server and I'm making a quadratic calculator with my friend. I have my calculator coded, but whenever i click the calculate button the answer comes up as "NaN". Here is the code.
TextBox4.Text = (intVarB * (-1)) + (((intVarB ^ 2 - (4 * (intVarA * intVarC))) ^ 0.5) / (2 * intVarA))
The Variables "IntVarA", IntVarB, and IntVarC are defined as public variables in a code module.
View 4 Replies
Apr 8, 2010
i am going to create one system which is related to test skill and it is in VB.Net and access database it has a question and four answer. both are coming from database,my problem is how do i change answer sequence everytime.whenever user tried for the test, answer sequence should be different.
View 14 Replies
May 2, 2012
Dim energybar As New Rectangle(9, 154, energy, 21)That is my new rectangle, now when I draw it e.Graphics.FillRectangle(Brushes.Blue, energybar)It says there is no width but the integer energy is = to 100...now, how do I fix this? It but be somewhat simple.
View 1 Replies
Jun 3, 2011
I have installed the fax service in windows. I want to write a code in vb.net program that start receiving from a fax call.
View 2 Replies
Mar 3, 2011
I have a working dropdown box that gives the answers yes & no.When "yes" is selected I need to create a message box that displays a simple message and allows the user to click ok, to get back to the survey.I have been working with it, and tried several things but no luck. What would the code look like, and where exactly would I place it to fire at the right time.I am working in VB, with an aspx & aspx.vb page.
View 3 Replies
Apr 1, 2009
I am writing a program for FEMAP API interface in VB 2008 Express. Some API commands open user dialog boxes which requires yes or OKcancel inputs. So much for automation "Sendkeys" do not work, because code execution stalls at the line which opens the dialog boxes. I need stg that runs in parallel, watches for these dialog boxes, and sends the right keystroke at the right time.
View 7 Replies
Jan 24, 2012
I have several buttons in my form and they each need to add, subtract, divide and multiply certain values together but I seem to be having problems with this. I didn't expect anything to go wrong and its probably a rookie mistake, but take my first calculation for example; a user must enter a value in a textbox (txtDays) and and also when one of my various radio buttons are pressed a value shows in a label (lblDailyHireCharge). I now need a way of multiplying these values to give me my answer shown in a label. I have done this by adding a button when which pressed multiplies the txtDays value with the lblDailyHireCharge and then shows it in the label, however it keeps on showing "0" when i click it.
Below is my code, I am basically saying that the value of both of those figures is intDuration and that lblDuration is where I want it to go when the button is clicked.
Private Sub btnDuration_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDuration.Click
Dim intdays As Integer
Dim intDailyHireCharge As Integer
Dim intDuration As Integer
[Code] .....
View 10 Replies
Oct 10, 2010
This might be a basic question but I am just starting in VB. How can you change the color of the text of a form if a person selects they are a boy or girl. I want the text to be blue if they select boy and pink if they select girl.
View 2 Replies
Mar 22, 2011
In our school theres a programming class and the teachers gone for the week and the sub is starting to get very frustrated, so I offered to help in any way i can. I have never programmed Visual Basic but I have programmed Ms-Dos, Javascript, HTML, *.vbs, *.ahk, *.gml, and a variety of other languages.
The class is going to build a program that calculate how many rabbits are born in a family. So when they click the button it shows in a text box the actual equation and then the answer after the equal sign that where i assume concatenation comes in.Here's the code I've thrown together for when the buttons pressed:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim RabitAmount As Integer
Dim ShowEquation As String
[code]....
I got the equation to answer it self and show in the text box but it won't show the equation?
View 7 Replies
Jun 19, 2009
I store a formula in the database such as the following:GrossIncome+(Overtime/0.5)-Deductions=BasicNetIncome
I am able to substitute the string representations with actually values entered, thus:1000+(150*0.5)-100=BasicNetIncome
Then I remove the '=BasicNetIncome', thus:
1000+(150*0.5)-100
How can evaluate the above equation to return a result:
[Code]...
View 1 Replies
Apr 12, 2010
I am just starting to learn this programming. But of this is very challenging. The question is:Explain what the code in the GuessLetter procedure you added does.Add your answer as a flowchart drawn at the end of your answer document. You can use the Word Draw tools to draw the flowchart. HINT: Your flowchart should have four decision points. Here is the code for Hang Man.
[Code]...
View 3 Replies
Feb 4, 2011
I Have a textBox on a form to give me my IP address (but I have 3 anwser's going into 1 textBox) When I use a button to revile The anwser's,all in one Textbox .How can I seperate Each anwser's with a space. Code Below: (TextBox5 is the TextBox I need to seperate the Answers) [code]
View 12 Replies
Sep 27, 2009
how I could do an if statement based on the yes or no answer of a message box...as follows
messagebox.show("do you wish to discard all information?" "Discard", MessageBoxButtons.YesNo)
if messagebox = yes then
...
else
...
end if
View 3 Replies
Mar 17, 2009
I have a radio button. Four in fact. All connected to a database. The Radio buttons are the answers to the questions. Button A, B,C, and D. Now in the database some of the answers are very short, one or two words, but some can very lengthy. So, my answers seem to disappear if lengthy (argh), I cannot make them shorter. How do I squeeze the answer in the Radio button? Can I add what.I do not want to change from radio button to something due to the extreme low knowledge of VB08.
View 9 Replies
Oct 16, 2009
I've got this code to get the decimal and groupseparator settings on a computer:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim NumFormat As New System.Globalization.NumberFormatInfo
[Code]....
The problem is that on my computer NumberDecimalSeparator should return "," and NumberGroupSeparator should return ".", but it's just the other way around when I try to get both separators from my system. What could be going wrong, and even more important, how to get the right strings? I did check my locale setting to make sure I'm not crazy and I also didn't switch the textboxes.
View 2 Replies
May 7, 2009
I'm currently creating a maths game for primary school children and have questions based on addition, subtraction, division and multiplication.I tried it out yesterday and if I type in the correct answer, I get told it's wrong, but if I type in the in the number I'm dividing by, as the answer it comes up as correct. How do I change this so that the correct answer is actually the correct answer?
View 2 Replies
Mar 19, 2009
I'm trying to make a quiz application with Visual Basic at the moment. I want to write a routine that asks five questions to which the answer must be either Yes or No. It must add up the number of Nos and if the number of Ns is less than two then print out "pessimist", otherwise print out "optimist". So far this is the design of what I've done. [URL]. However, I have no code which I've produced on my own.
Code:
Public Class Form1
Inherits System.Windows.Forms.Form
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
End Sub
End Class
I really don't know how I can kind of add up all the results from each individual question, seeing as radio buttons are used.
View 2 Replies