Calculate Only The Wanted Value For N?
Oct 7, 2011
I am struggling with this code that I Have to do about calculating the nth term of the Fibonacci series. The program is supposed to take the value of n and return the corresponding nth Fibonacci number.If the function is given an
invalid n value, it should return -1.
[Code]...
View 1 Replies
ADVERTISEMENT
Jul 4, 2011
I used the following code to select unique values from the database [code]And it does not retrieve the unique values, it remains the same. But if I use only SELECT DISTINCT Author FROM tblBook it works fine.
View 3 Replies
Jun 25, 2009
I have a Rich text box in my program that works well for displaying a small screen and it never has had a cursor in it.I just added a couple of rich text boxes for some other parts of the same program, they are set up in properties EXACTLY like my original but there'sa cursor that's appearing on the 2 new boxes and I can't get rid of it.
View 7 Replies
Apr 23, 2012
how can i code this?e.g : at the runtime, when i write "hello" into textbox , that text will be red color ,how to code this ?(only "hello" will be red color, other writing will not be red in text )
View 3 Replies
Jan 13, 2009
My app runs perfectly with debug but I'm having a couple of little problems with the actual build on another machine.'m getting a "safe handle has been closed" (most of the time, but not all the time) when I button click out of a certain area.The problem, no doubt, is related to the serial port and I think I can solve it but I do want to ask something very basic....I have several points in the code where I'm doing a serialport.open and serialport.close....and clearing some registers etc.....like I say, in debug all is well.
View 4 Replies
Mar 30, 2009
I am trying to calculate the number of years for my calculate age event handler, however i am apparently missing a method or whatnot because im trying to calculate the age , can anyone suggest help on this. I need to subtract years to get my age but when i try the birthdate.Subtract (currentDate) method i get an error about not able to convert from LONG?
So below is what I have.
Private Sub btnCalculateAge_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCalculateAge.Click
Dim currentDate As Date
Dim BirthDate As Date
Dim Age As Long
[CODE]
View 7 Replies
Apr 24, 2011
yeah im very far with the project right now just a day or two probably of completely finish it, but im so far that itll break alot of things if i change a textbox i have for a maskedtextbox, besides there are some things that the normal textbox does a bit differently than maskedtextbox, ive searched around the net and found nothing about this in vb express, probably because everyone uses maskedtextboxes instead xD
View 7 Replies
Jun 1, 2011
Is there an easy way to bring an item to front, instead of having to click on "bring back" the items not wanted?Clickcing on it in the property window should show it, now nothing happens
View 10 Replies
Nov 3, 2010
when i enter the date of birth using the datetimepicker box it automatically compute the age and output in a textbox.text?
View 2 Replies
Nov 24, 2009
I have the following code, the answer should be 2 though I am getting 3 everytime
[Code]...
View 4 Replies
Feb 25, 2009
I use the following columns stored in a SQL table called tb_player:
Date of Birth (Date), Times Played (Integer), Versions (Integer)
to calculate a "playvalue" (integer) in the following formula:
playvalue = (Today - Date of Birth) * Times Played * Versions
I display upto 100 of these records with the associataed playvalue on a webpage at any time.
My question is, what is the most efficient way of calculating this playvalue given it will change only once a day, due to the (today-date of birth) changing? The other values (times played & versions) remain the same.
Is there a better way than calculating this on the fly each time for the 100 records? If so, is it more efficient to do the calculation in a stored proc or in VB.NET/C#?
View 2 Replies
Dec 1, 2010
I have an openfiledialog, I show the dialog and the user selects there file. How could I calculate the MD5 hash of the OFD.filename/file opened? Or calculate the SHA1, what ever is easiest.
PS: This is in Visual basic 2010 Express.
View 2 Replies
Jan 12, 2011
Dim
Field1 as
Integer
() = {0, 1, 2, 3, 4, 5, 6, 7}
[code]....
View 3 Replies
Sep 4, 2009
i have the numbers in listbox as below:
01
02
04
09
10
the question is ..how to calculate different between all numbers... exampel between 04 and 09 ,we have 05,06.07 and 08 between 09 and 10 is 0
View 8 Replies
Nov 8, 2011
I have buttons with values. for exmp. btn1 = 5.50 btn2=3.25 etc...when someone click on btn will ask how many of these and let say you say 3 it will multiply that with 5.50 and show it on listbox.
View 1 Replies
Feb 9, 2010
I have a project to calculate how many day is there before 05/12/2010.
View 10 Replies
Apr 26, 2009
Does anyone know how can I calculate pi (π) in VB?
View 6 Replies
Mar 21, 2009
Calculate sum in program? [code]...
View 5 Replies
Jul 20, 2009
Given a distance (50km) as integer: 50
And a time as string in the following format:00:02:04.05
hh:mm:ss.ms
How would I calculate the avg speed in km/h?
View 4 Replies
Jun 29, 2011
I have 2 tables in sql server
1) I want to join those tables.
2)I have 2 columns in the table for eg:- outside temp and power by selecting the outside temp i want to calculate the average of the power with similar values.
View 6 Replies
Apr 30, 2009
how i'd solve for variance and Std. deviation. the project is meant to record housing prices, put them in a list box, and then compute these calculations
Public Class Form1
Dim intclicks As Integer = 0
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
[code]....
View 3 Replies
Mar 24, 2011
Well I am working on this homework for my class and everything is ok but i can not get the monthly to calculate right. Cause when I taype in allen with the code of 1 the monthly should be 500 and the commission should be 1005. I have been working on this for days.[code]
View 5 Replies
Feb 12, 2007
I have to calculate 360 values, for every degree 1. I've calculated all the values but my problem now is that i have to put all of them in a graph with x and y axes that are labeled but I don't have a clue how to begin.
View 39 Replies
Jan 14, 2009
How To Calculate Checkbox
View 1 Replies
Feb 23, 2009
how can calculate the total amount within this basis for UnitePrice in variablen below
View 4 Replies
Nov 18, 2009
I need to add 3 months to a date so i can calculate when a clients email bundle is out dated.so for instance the client registed his bundle on 2009/09/01. I need to be able to add 3 months to this date so it comes out with 2009/12/01 and then compare the dates.
View 1 Replies
May 20, 2012
I have 2 textboxes, txtStartDate.Text and txtEndDate.Text, user choose date through calendar date picker. Now I want to count the days between the two selected date and save the result in the database field totalDay(type integer), the following is my code: But when I click button and try to save it into database, I receive this error:
The version of SQL Server in use does not support datatype 'time'.
Imports System
Imports System.Data
Imports System.Data.SqlClient
Imports System.Threading
Imports System.Globalization
[Code] .....
View 3 Replies
Nov 2, 2010
i preparing a student marklist in vb.net,how to calculate rank (total,res(pass))wise,plz anybody send rank calculation coding
View 1 Replies
Jan 28, 2010
i want to calculate sum of two times example:
[Code]...
View 7 Replies
Oct 8, 2011
Producttable : PId, Openingstockdate , openingstock , Closingstockdate , Closingstock
Despatchtable : PId, Qty , date
Receipttable:PId, Qty , date
[code].....
View 3 Replies