i have two textboxes where a numeric value will get entered into both, these values will then be taken and the first value divided by the second value. The problem i am having is that if for example the first value is 11 and the second value is 10, when i divide 11 by 10 the result is 1. I have tried setting the output format to have 2 decimal places but it still displays 1 instead of 1.1. [Code]
i have written my code to to insert data that has been entered into my textboxes n my form into my access database. i am gettin an error message saying: OLEDBEXEPTION OCCURED...Syntax error in INSERT INTO statement.
i was wondering if someone could look over my code and tell me where im going wrong the code is written for when the button on the form is pressed.
my code is... OleDbInsertCommand1 = New System.Data.OleDb.OleDbCommand OleDbConnection1 = New System.Data.OleDb.OleDbConnection OleDbInsertCommand1.CommandText = "INSERT INTO Admin,(Employee_Forename,
I have this program I'm working on, and I was wondering if it was possible to disable/enable TextBoxes when specific words are wrtten. I tried doing this, but it errored. I'm a new programmer to VB, I just started a month ago, and I'm doing this for fun.
If TextBox1.Text = "Shutdown" then TextBox2.Enabled = True
I also want it so that you don't have to press a button to identify if it is the right text, so it could "scan" automatically.
I hv to create a login for my windows appn(this is the first tym i am creating a login in visual studio) i am unable to figure out exactly what should i do
I tried the following:
Public Function User_Login(ByVal unam As String, ByVal pwd As String) As Boolean ada = New OleDbDataAdapter("Select * from UserProfile where UName='" + unam + "' and
[CODE]...
Now i called this function on the button click of my login form and passed the values of username and password textboxes as parameters to it. But the problem arising is that it is logging in by simply clicking the button irrespective of what is entered in the username and password textboxes.
I think this is because ds.Tables.Count is never 0(whether the username and password match or not) Use code tags when posting your code. Code tags are used like so =>
Trying to do some Maths in vb and have it all out put in lblCost.text
Private Sub btnAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAdd.Click Dim decTax As Decimal Dim decTotal As Decimal Dim decSubtotal As Decimal
I am trying to make a calculator (how original) but I am also trying to make it like a console. I have a textbox in which you enter a command and a list in which the lines appear.
My question is how can I translate the plain text which the user enters i.e 3*(2+4) to a maths command so that VB can display the answer?
I ve done the main main page which includes a button which when pressed will go on the next page etc etc.
The problem that i am facing with is the concept behind creating the main function of the game.
I.e. Once the main screen comes up it will show a formulae eg 3 + 3. After the forumale is shown the user will input the answer and then when they want to go to the next question that click the next button which inturn shows a different question if the answer is correct, if not it will stay on the same forumale. I would also like to add a skip button that will allow the user to skip the question if they cant figure it out.
So yeah my main issue is programming it ( i mean i can add buttons and program them to link to places (and show messages) but that is all lol) .
incase i didnt menmtion earlier, i am using Visual Basic 2005
I am fairly new to programming so please bare with me. For my coursework, I am making a maths quiz which allows the teacher to add or edit questions and solutions. then these solutions and quetsions form a quiz that students can access.But I dont know how to allow the teacher to use the weird maths symbols. The quiz is only going to be about algebra so no complex symbols are required, I saw some of these symbols in unicode. But dont know how to make that symbol appear in textbox which the teacher is going to use to enter questions etc.
I would like to develop an application that involves a lot of tables and maths, and then displaying the results. I can visualize how this would work in SQL, as far as creating the stored procedures and tables required, however the front facing application would be a completely new experience to me.I would probably be sharing the built application with friends, but completely as a no profit tool. I assume that the developer edition of dot net is a suitable option? My main query is, is dot net really the best way to develop this tool? I have a strong feeling that I will not be able to use SQL as this would require a server to be run, and this is not practical. Can the tables be implemented into a DLL or similar to be used by the application for example?
I'm going to start delving into maths in vb Now want I want to do is convert the distance between two coordinates. I've found this linke below on the web. Does anyone have a link to good tutorial for this conversion?
I'm using oracle data provider for .net :Oracle.DataAccess.dll vesrion : 2.111.7.2Now just fire a select all statement usind OracleDataAdapater to generate the BUG (Attempted to divide by zero)
Dim conn As new OracleConnection(sConnectionString) Dim dt As New DataTable conn.Open()
I want to divide to bigintegers, but with standart division it only gives a result with only the integer part, not the floating part. How can I get the all result with floating part?
I am creating a Calender application using the monthly calender control.I am trying to implement a search for the calendar so a date can be entered into a text box which intern moves the calender to show the date entered. I have been try to figure this out with no luck, is it even possible to do?
How to divide a wav file into two parts. I don't very know how to implement this functionality. If possibly, can you give me detailed code snippet or other some useful link.
Is there a function in VB.net that allows me to divide a really long String into a specific number of characters? [code] The length of this string is 18 and I'd like to group it by 3, so each group would contain 6 characters. Is there an easier way of doing this? Is there a predefined function in VB.net? I'm already thinking of doing it manually, like converting the string into characters and storing them inside arrays.
I am quite sure I am gonna feel real dumb when I found where I am screwing up but I am ALMOST done with a fraction calculator (part of a complete algebraic calculator I am making) and am stuck when trying to reduce my fraction because when I hit the reduce button, it only divides the answer by the first number in my listbox instead of all of the numbers.[code]...
Dim fault As Double Dim ng As Integer Dim input As Integer
[code]....
Halo, may i ask how can i save my answer fault into database after i done division. I am taking the data from textbox(input data) and done the back coding division.
If strOperand = "/" Then intLast = intFirst / Val( Me.TextBox1.Text)
I'm not getting a remainder like I would have hoped. I'm new and I'm sorry for the lack of intelligence on the subject. To my understanding the Val( function will convert the string to a number, but when I divide it gives me a single number instead of an integer.
Let say I had a project contains 10 forms and 10 reports and typed dataset (xsd)I am trying to divide my project forms into dlls, so when the client had a problem or asks for modification in single forms, I had to build the project all over again and the exe size will be large.
in my current project, the exe size is 4.8 MB, and I am working with customers by internet and remoting, so every time I make small changes (change the back color of textbox in one form) I had to rebuild and send the whole 4.8 MB to the customer. And not forgetting the increasing size of the exe with time.I know that converting my project to class library and built it will convert it to dll, so I had to create a second project to manage it.
1 - Can I convert 3 or 4 forms / 10 forms total in my current windows application project to dll?
2- What is the best recommended method to divide the project into smaller entity.