Get The Counter To Work And Displays The Results In A Text Box?
Apr 25, 2010
I'm nearly finished building a Black Jack game for college I've just got one small problem that I need some help with. It's probably just something really basic that I'm missing, but I've not been using VB for a very long time.The problem is with counting up the results after each game. I can get the counter to work and displays the results in a text box like so...
dealerCount = dealerCount + 1
txtDealer2.Text = dealerCount
This works fine but I also need an Overall total which holds the overall score and saves it each time the game is loaded. But when I added...
overallDealer = dealerCount
overallDealer = overallDealer + dealerCount
overallDealer = My.Settings.dealerOverall
txtDealOver.Text = overallDealer.ToString
It seems to keep the counter at 1 and it wont add up. Am I missing something real simple?
View 3 Replies
ADVERTISEMENT
Jun 24, 2012
Basically. I enter a name and a score. And my program will store them in an array. Then i press "grades" and it provides me with a grade for each name and score entered.BUTi now need an array that will give me a count of how many numbers are in the array.e.g.
1 | James | 56 | Pass
2 | Bob | 98 | High Distinction
..
[code].....
View 7 Replies
Jun 8, 2011
How to make my counter work. I keep feeling like I'm putting it, or maybe just part of it, in the wrong place so I've been moving it all over the place but haven't found anything that works yet. I'll paste my code below and it will be the code that seems to not stop when it reaches the end of my counter. Other ways I've tried it make it stop after one or two, depending on what I did to the code at them time.
Here's what I have at the moment:
Public Class mainForm
Dim guessCounter As Integer
Dim correctAccumulator As Integer
Dim totalAccumulator As Integer
Dim answer As Integer
[Code] ......
View 1 Replies
Nov 16, 2009
Im trying to make a counter/timer but cant get it to work,
i have a timer and a label
ive been trying to get it set to "00:00:00" Hours,Minutes,Seconds
It justs needs to keep counting up each time.
View 3 Replies
Oct 28, 2009
I have created a test application to display data in a datagrid, using the Dataset Wizard per the help. All fine - data is displayed.
I then added insert, delete and update queries by selecting Edit Dataset with Designer, selecting the table and adding a query for each action via the TableAdapter Configuration Wizard. In Advanced Options, all boxes are checked, and on the last screen of the wizard it says it has generated SELECT, INSERT, UPDATE, DELETE statements, table mappings, Fill, Get and update methods. The TableAdapter shows four entries: Fill, GetData(); DeleteQuery; InsertQuery; UpdateQuery. On the DataGridView Tasks page, Adding, Editing and Deleting are checked and the data preview shows data.
When I run the application, I can update, add and delete data, but this is not saved.
View 14 Replies
May 29, 2011
How would I be able to make a textbox (counter). text = to something. Following an earlier example, I came up with the code below but it returns an error
CODE:
View 2 Replies
May 20, 2010
I have this code sample from a book I'm reading which looks to be incorrect:
Imports System.Diagnostics
Sub Main
Dim pc As New PerformanceCounter("PerfApp", "Clicks", False) 'excepiton here
pc.Increment()
counterLabel.Content = pc.NextValue().ToString()
End Sub
There excepion message I get is: The requested Performance Counter is not a custom counter, it has to be initialized as ReadOnly. I looked for a property to see if I can set it but couldn't find one.
View 3 Replies
Feb 24, 2011
I have two forms (form1,form2). Now I have button in form1 that executes to display text into label1 at form2. How to call it? Do I need to have module for this?
View 5 Replies
Nov 18, 2010
If in the label the default text is 10 then ten textbox controls will be generated in webform ...
View 1 Replies
May 12, 2012
I want to when you press the start button or stop that it displays a message output to the textbox 1
here is code from another member
HTML
Private Sub OnCheckedChanged(ByVal sender As Object, ByVal e As EventArgs) Handles togglecheckbox.CheckedChanged
Dim cb As CheckBox = CType(sender, CheckBox)
[Code]...
View 1 Replies
Jan 21, 2010
I am creating a program which displays text to the screen.I would like to be able to set the program to have a timer so that when the user has selected the letter, after say 5 seconds a new letter appears.I have added the current code below.
Public Class Form1
Private Display As Boolean
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
[code]....
View 7 Replies
May 28, 2011
How can I update the text in tab control so that it displays the title of a webpage?
View 12 Replies
Apr 23, 2010
I'm trying to make a calculator that adds from two text boxes and displays the answer in another box, but It gives an error when someone enters a character. What can I do to display a string error message in the third box if a letter is entered in one of the first two boxes instead of a number?
View 1 Replies
Jul 30, 2009
my text box will not respond to vbcrlf insted it displays 2 vertical bars (||)[code]
View 4 Replies
Jun 21, 2010
1. How do I make it so a listbox displays a files contents once loaded?
2. How do I save a textboxs text?
3. what does this error mean?
An error occurred creating the form. See Exception.InnerException for details. The error is: Failed to initialize because CategoryName is missing.
View 4 Replies
Jun 11, 2011
Ok so here is the HTML of the page:
<!-- Generated by F12 developer tools. This might not be an accurate representation of the original source file -->
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"><head>
<meta content="text/html; charset=utf-8" http-equiv="content-type">
[Code].....
View 1 Replies
May 12, 2012
how I can control the tool tip popup or make calls to the text that displays based on a integer value. I'm wanting it to display a text based on a interger value inside an if statment for a picture box. So if the ingteger = 1 then tooltip.text = "" else tooltip.text = "" but that is not the correct syntax.
View 2 Replies
Jun 22, 2010
I want to make a deskband app that displays some text and buttons like windows media player when minimized on taskbar. What is the necessary imports / dll i need to use ?
View 1 Replies
Oct 4, 2011
I am making a program, where the user enters 6 numbers in 6 different text boxes, and it displays the larger of those 6 numbers. But I also want to make it where if the user enters a string value (like S for instance) in the text boxes, it gives an message and says "please enter the numbers again" and the user gets to enter the 6 numbers again. But when I do try to do that, it gives an error message saying conversion from "w/e the user entered" to Double is not valid. If the user just enters the numbers, it works fine. However, I am trying to make it if the user does enter non numeric value, it gives a message window and the user can reenter the numbers again.
Here is my code Example
CODE:
This is where I am trying to use IsNumeric to show a message if a user does not enter a string so the user can renter the numbers again, but when the user does enter a string value (say in textbox 1) it gives me an error message saying conversion from "S" to 'double' is not valid.
CODE:
Then right here this is where I have my series of ifs statements, this part works fine, it displays the largest numbers of the 6 textboxes every time. Error free.
CODE:
And do this with variable number 2, 3, 4, 5.
I know there are easier ways to do these with arrays and stuff. But I am not there yet. I am still learning about ifs and stuff.
View 8 Replies
May 25, 2012
Label1.text += textbox1.text doesn't work, say they is 0 in label1 and i enter 1 in the textbox1 it adds it to the label like this
0111111111111
But i need it like add up whatever is in textbox to whatever is in label1 This works
Label1.text += 1 but thats not what i need I got this to work once before, but i cant remember because its been long time ago.
View 4 Replies
Jun 21, 2010
How could I add array values and populate the results in a specified text box?Then repeat for each line after. Then get a final total.
For example:
1 2 3 4 5 (15)-text box
1 2 3 4 5 (15)-text box
2 4 4 3 5 (18)-text box
-----------------------
(48)-text box
View 3 Replies
Jan 19, 2011
ill get the obviuose out of the way. I have XP Pro, VB2010, query(read only) to an ODBC db, displaying several results in a text box. How can I make the data display w/o the the numbers displaing decimal places. These are quantities that are to be displayed not pricing, ie. the result would say 7.0000 qty on hand, and it should say 7 on hand. The code is below,
[Code]...
View 1 Replies
Apr 5, 2010
How can I display only the most current results from a text file? I have a button the user can click that needs to display only the most current results from the text file.
View 9 Replies
Aug 26, 2011
Simply put, I have a text file full of reg values. I want to search the text file for X number of reg values. I want to then, have those values and their dword values (whole line + next 3 to 4 lines in the file) listed in either another text file or an Excel spreadsheet. Regardless of the format, I would like to have the values sectioned off for each of the values searched (probably tables of some sort).[code]...
View 1 Replies
Nov 25, 2011
I have been taking a class in Visual Basic and am currently working on my final project which I am having some trouble with. I am using Visual Basic 2010 express The project is to create an application that will store data in a text file, specifically, Last Name, First Name, Customer Number, Address, City, State, ZIP Code, Telephone Number, Account Balance, and Date of Last Payment. I have gotten everything done except the ability to search the file by Last Name or Customer Number. I have no idea how to go about this? I was thinking of ways to use indexof or Readline to be able to search the data, but I'm not familiar enough with the code to come up with a good solution. Below is a picture of how my form looks..As you can see, I'm currently using 2 separate forms to get the data from the user. Here is the code for Form1 which is the "Customer Accounts" form in the picture.
Imports System.IO
Public Class Form1
Public customerFile As StreamWriter ' Object variable
Public customerFile1 As StreamReader ' Object variable
Public strFile As String
[Code]...
There isn't enough room to post the code for my secondary form, but you get the idea. I would like to be able to enter a search term in the textbox on the bottom right of the form, and either search the data as its displayed in the listbox, or search the actual file? I was thinking that the results would be displayed in a messagebox?
View 3 Replies
Oct 4, 2011
I'm trying to make a simple tool to format SQL code so that I can use it in VB.When I put in the following:
USE master
CREATE DATABASE netGuest
GO
I get...
"USE master" & vbCrLf & _"
CREATE DATABASE netGuest" & vbCrLf & _"
GO" & vbCrLf & _"
So it almost works. Really the only thing not working is that the lines are ending with the " rather than starting with them.Here's my code:
Protected Sub btnConvert_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnConvert.Click
If txtVB.Text IsNot Nothing Then : txtVB.Text = "" : End If
Dim input() As String = txtSQL.Text.Split(vbCrLf)
[code]....
View 1 Replies
Jun 20, 2011
On a image file (PDF), the OCR has recognised the picture and text. However on Visual Basics, how do you search for a text on this image file? The primary goal is to allow a text search (i.e POxxxxx) on all the image files (PDFs). The returns of the search will be the assciated image files where the text (i.e POxxxxx) is found on.
View 1 Replies
Oct 21, 2009
I am writing my own script for a simple calculator that determines if a number is prime, and its prime factors.[code]The loopcount = compare - 2 means I want the loop to be 2 less than the square root of the answer so that when do a descending calculation (loopcount = loopcount - 1) it doesn't see if 1 or 0 is a factor of the answer. for the calculations after that, I want, every time n1 = n2 (a whole number factor of the answer), I want to report those results to a text file (n2 and n3) in this format "(n2, n3)" then go to the next line. and continue to execute the loop until the loopcount is zero. Currently, when I run the code, the application closes when I click the prime button (button that runs this code) and I don't know why. This is my first semester in school, and have never coded before, so I am a definite laymen with code, but I really really want to learn it (hence why for fun im just creating algorithms for different things).
View 2 Replies
Apr 12, 2009
At present i have an interface which displays a string of sql code in a rich text box.
I also have my microsoft access database connected to the form.
How would i go about getting the sql code in the rich text box to produce the results for the query??
View 2 Replies
Feb 3, 2011
I have a data table that has thousands of entries. The table has employee production information: YearMonth, Employee ID, Pages worked and Jobtypes (e,k,o and r). I need to calculate a sum of each jobtype and a sum of pages worked for each jobtype, for each individual employee. I am pulling this data from an Access database and so unfortunately I am unable to use LINQ.[code]...
View 4 Replies