InputBox Function - Program - Allow User To Input 5 Payrolls For Store 1, Store 2, And Store 3
Mar 22, 2012
I am coding a program that will allow the user to input 5 payrolls for Store 1, Store 2, and Store 3. The total of the 5 payrolls are then added together and shown in the respective Store's labels. A total label is also there to add up all the totals into one number. The numbers in the label must be in currency form. My problem is the numbers don't add correctly when I hit calculate. The first two numbers add together, but then after that the number just seems to subtract a random amount.
So far I have this --
Public Class Form1
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Me.Close()
End Sub
[CODE[...
View 14 Replies
ADVERTISEMENT
Oct 23, 2009
how to pass user entered data (from a textbox) to an array? All the examples I have found show how to populate an array with predefined values. Heres what I've got, its messing and not close to what I want.
Private Sub AddButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AddButton.Click
Dim AddNumInteger As Integer
[Code].....
When the users clicks the add button the value they entered in the NumAdd textbox is sent to an element?
View 1 Replies
Feb 21, 2012
I have a web page that reads xml files to display server statistics. Ideally i want the users to be able to setup and save multiple connections to different servers. They would then be able to choose which server they wish to view through a asp.net web page.
View 2 Replies
Feb 24, 2011
? How do I use an array to store user input collected instead of storing the data in individual variables?
View 3 Replies
Mar 3, 2011
I have a web page that reads xml files to display server statistics. Ideally i want the users to be able to setup and save multiple connections to different servers. They would then be able to choose which server they wish to view through a asp.net web page
View 7 Replies
Jun 24, 2010
I have a field that the gets a case title. Requirments are to be able to use any of these special characters in any order in the title.
,,.,:,;,",(,),'
i.e. (test, case.) "title" with; 'special: chars'
I can't just take that string from the test box and put it into the sql statement. It will error.
I need to be able to 'escape' the special characters to play nice with sql server 2005
Public Shared Function Format(ByVal str As String) As String
'Format = Regex.Replace(str, """", """""")
'Format = Regex.Replace(str, "'", """'")
[Code]....
View 4 Replies
Feb 19, 2009
i know that integer is a variable to store whole numbers and that a string is a varialbe used to store any text, but what variable type would you use to store a number that has decimals?
View 7 Replies
Apr 15, 2012
"Create a class called Invoice that a hardware store might use to represent an invoice for an item sold at the store. An Invoice should include four pieces of information as instance variables--a part number (type String), a part description (type String), a quantity of the item being purchased (type Integer) and a price per item (Type Integer). Your class should have a constructor that initialize for each of the four instance variables. Provide a property for each instance variable. If the quantity is not positive it should be set to zero. If the price per item is not positive it should be set to zero."
I attached the code I have. obj is underlined and says "Argument not specified for parameter 'Invoice4' of the 'Public Sub New (Invoice1 As Object, Invoice2 As Object, Invoice3 As Object, Invoice4 As Object)' and so the program won't run. What am I doing wrong?
Public Class Form1
Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs)
Dim obj1 As New Invoice(Val(TextBox1.Text))
TextBox1.Text &= obj1.Invoice1 & vbNewLine
TextBox1.Text &= obj1.Invoice2 & vbNewLine
TextBox1.Text &= obj1.Invoice3 & vbNewLine
TextBox1.Text &= obj1.Invoice4 & vbNewLine
[CODE]...
View 14 Replies
Oct 20, 2009
This is my code, and when I run it, it says type mismatch, and when I try to debug it, it highlights this line "If strVowel = Chr(65) Or Chr(101) Or Chr(105) Or Chr(111) Or Chr(117) Then"
Dim intX As Integer
Dim intY As Integer
Dim strVowel As String
Dim strInput As String
Private Sub cmdCount_Click()
[Code] ....
View 2 Replies
Mar 28, 2011
I'm creating a desktop application in visual basic using an online mysql database, i have the login script done but how would i save the users id into a session and then use there information for there profile page?
View 13 Replies
Sep 10, 2010
I'm pretty new to WinForm Development (Normally just do Web Dev)... Anyhow, what i'm trying to do is store information about the logged in user so it can be used throughout the App...Normally in WebDev you could use Session, Cookie Etc..
View 4 Replies
Nov 26, 2011
Since some of my users log on as non-administrators, (without administrator priveleges), where would you reccomend I store their programs data files. For example, the program Test Prog would store user data in: [code]The problems is permissions file access when they are not signed on as the administrator and they need read write access to their data files. Also is there a universal system directory name I could use so it would be the same on all users computers, like %Documents% or something?
View 2 Replies
Aug 7, 2011
I am trying to store confidential encrypted user information for my program on a single computer. I do not want the application to be copied on to another computer and be usable. So I was thinking about storing the information in the Registry but I read that that is a very unsafe location and is bad for more reasons then one. I started storing the information in the programs Settings.config file but I am not sure how to encrypt that information. The only thing I have gotten to work so far is storing the information in a XML file and encrypting that which has worked but I want the information to be more hidden and more secured.
View 9 Replies
May 21, 2010
In the past I've used a Singleton Pattern to load the connection string when the application starts via the global.asa file.
I have a project now where each user has a unique connection string to the database. I would like to load this connection string once. The issue is that the singleton pattern will not work for me since each user has there own connection string. Basically the connection string is created dynamically.
I do not want to store it is session. If anyway has a clever way of doing this in .NET let me know ?
View 1 Replies
Sep 17, 2011
I would like to develop a program to create a report after reviewing a facility's processes (Quality Issues). The reports are to be created using Microsoft Word 2010.
I'm OK with developing the forms and controls to access the form and the user inputs.
What I need guidance on is the best way to save the input information from the user forms (over 100 total) as it relates to that facility, and to retrieve the info in case clarification is needed. Also, each user may have several facilities to review.
View 5 Replies
Dec 14, 2011
I have a question about static strings and so forth, in an ASP.NET MVC.I need to hold a string(a value), when the user goes through the application.Problem is, I feel like that would be a violation to the MVC. I just need to store a string per user, so it seems like a violation to the MVC separation.
View 3 Replies
Jan 8, 2011
I'm trying to make a application with a login system. I want to store user and password information, into the application. So I can access it from my administrator account. I have tried to make a textbox for every username and password,And then save it into my.settings And then I run the finished application, it works fine to store the information. but if I copy the application after I had entered some user/pass information. All textboxes I blank on the other computer.
View 4 Replies
Feb 1, 2011
VS 2008 crashed for about the 3rd time today. I had added several task list shortcuts and User tasks to my task list and they all disappeared. Where did they go? Doesn't VS save this stuff somewhere? If you close VS do you lose all your tasks that aren't in TODO comments?
View 1 Replies
May 21, 2010
I'm making a program that uses XML to store data and I'm having problems retrieving the data. Here's an example of how I'm storing data:
<?xml version="1.0" encoding="utf-8"?>
<main>
<category>
[Code].....
View 4 Replies
Jul 18, 2010
I m trying to create a windows app that will store employee working hours of everyday. Is there any way to store a week much data in some sort of file or somewhere else beside database ? Or I have to use some sort dbms.
View 6 Replies
Nov 26, 2009
i am new to VB.NET and am creating an application for twitter, my problem is that i have a datagrid on my form. On my code i have created a dataTable to store the user messages in one column and the usernames in the other column. My problem is that i cannot add a third column to the dataTable to store the user images, how do i do this? my sample code is as below :
[Code]...
View 5 Replies
Aug 20, 2009
I need to have the ability to have a Global variable/class that stores some basic information about the currently logged in user including that user's preferences, security rights, UserID, etc. This information will be needed by any/every part of my application. In the past I have either used a Public variable/class in a vb.net module for this purpose. I'm trying to get away from my old ways of doing things and was curious what people currently do for this functionality.
I am thinking a singleton or 2 regarding preferences and security but am not sure if that is the best way to go.
EDIT: I asked this when I was too sleepy last night. This is an n-Tier WinForms application.
View 2 Replies
Sep 7, 2009
I want to store some information of the form in such a way that if the user quit/exit the application it stores the information. When user runs the application next time the information should be available to him. It also involve the restart of the computer. The application is in vb.net 3.5 framework. The one way that i can think of using flat files and encrypted data, but i can not do this. I do not to store any kind of data on client side and I can not store this information on server side. The problem is of getting client machine information and storing it on server.
View 3 Replies
Jan 30, 2011
I am creating a windows application using visual studio. I want somehow to insert an excel file into the application so the user will be able to download it from the program and save it to his computer. This means that the file will be a part of the program. There will be a button that will prompt the user to save the particular file somewhere so he can then view it.
What should I do in order to "embody" the excel file to the application? And what code should I write to link the file with the button?
View 8 Replies
Feb 1, 2010
I am currently developing an application that will require each end user to specify a rather large set of tabular data specific to his/her own preferences. Each time the user starts the application, it will load this set of data.
what is the best way to store this data locally on the end user's local machine? Should I use XML, Access mdb, flat text files?
View 2 Replies
Apr 10, 2011
I am trying to learn VB.NET and I've written a user entry screen to store and retrieve information. I keep getting this error. I understand that I have to either change the ref value from the calling code, but my problem is where is the calling code? Here is the error I'm getting (the program is underscoring udtTrans in the FileGet line in this segment).
Private Sub viewRecords()
'open the file and read fields of the first record into the textboxes
Try
FileOpen(1, strFilename, OpenMode.Random, OpenAccess.ReadWrite, OpenShare.Shared, Len(udtTrans))
FileGet(1, udtTrans, intCurrentRecord) 'gets first record
[Code] .....
View 2 Replies
Apr 27, 2012
I need to store specific information about a user in a file of some sort. Something like an old ini file?
I will need to save a file for each customer.
CustomerName
OrderDate
DeliveryDate
[Code]....
All things point to a database but for several reasons I can't use a database.
View 2 Replies
Oct 23, 2009
i grow familiar with statements queries of SQL. Now, i have to start writting a store produce and function in SQL Management studio express.
View 1 Replies
Sep 26, 2011
What is the PC unique ID? How could we get the PC unqiue ID? Is it about Hard disk or motherboard? I'd like to store PC ID in my window program.
View 3 Replies
Feb 22, 2006
I am having a problem storing an image as a Blob in a SQL linked table. Our system uses an Access 2002 frontend and linked to a SQLServer2000 database. I have a form that I want to display a unique client jpeg photo for each client record. Our client HIPAA concerns means we have to store the image not the path in the database field. I am using an Image control on the form. Initially I have been able to load an image from a Windows Dialog into the control and save the path no problem.
My issues are surrounding how to actually save and load the jpeg as a BLOB in a VBA byte Array after the image has been loaded to the form from the dialog box.(Is there some sort of binary conversion needed or does the Append and GetChunk methods handle all this)?:
All the code examples I have been able to find on the subject have a line of code to set the Image control's data source to the open recordset with this statement ---> Set imgDBImage.DataSource = rs. Does this statement work with VBA because DataSource does not show up as a property of an Access 2002 Image Control. So how do I point the Image Control to the table field which contains the BLOB in VBA code?
Finally, how do you convert the string path of the image to binary for storage in a byte Array in VBA. I have the syntax for a VB 6.0 which is..... .Fields("ImageBLOB").AppendChunk bytBLOB. Is the .Fields portion of the code relevant in VBA to tell what table field to write to and does the AppendChunk method handle all the conversion?
View 2 Replies