Creating An Application That Calculates Render Times For Maya?
Sep 21, 2010
I'm creating an application that calculates render times for Maya. I kinda got bored of coding all the technical stuff so I started to mess around with the interface. I'm trying to create a combobox color picker.
View 5 Replies
ADVERTISEMENT
Mar 16, 2011
I am trying to build a program that calculates the minutes worked times pay rate equals amount of weekly pay this is what I got but it doesn't calculate
CODE:
View 3 Replies
Jun 21, 2010
I'm creating a program for my workplace which stores hours worked, calculates pay and all that stuff.Problem being, the database will be accessed through the network and i want to be able to select the database from an openfile dialog on first use to locate the database. On every program start up it then would have the database location stored within the program itself.
View 1 Replies
Apr 26, 2011
Create an application that calculates the total cost of a stay in a hotel in the North Carolina mountains. The application should accept the following in terms of input:Month of Check in Length of Stay (in Nights) Number of Persons Room Service Charges Phone Charges Other Charges If the check in occurs in November-March the rate is $89/night. April-August is $99/night and September-October is $109/night. $10/night should be added if more than 2 people are in the room. More than 4 people are not allowed in the room, and a traveler can only request 1 room. A 15% tax should be added to the room rate and 10% tax added to all room service and other charges. No tax will be added for phone charges.
The program should use a function to calculate the total charges for the visitor's stay and output it to a label. There should be buttons or menus to calculate the total, clear the form, and exit the application.At least one of the button should call a sub procedure which performs its function. I don't understand how to set this program up and I'm not sure what it means.
View 4 Replies
Apr 21, 2010
Using VB2008 I need to create an application that calculates and displays a customers bill.Business customers must have one connection.
Heres the data
Residential customers:
Processing fee: $4.50
Basic service fee: $30
Premium channels: $5 per channel
[code]....
View 8 Replies
Nov 10, 2009
I am working in Visual Basic 2008 and am trying to create an application that calculates body mass index. I have the entire form complete as well as much of the source code, but I am having trouble creating the code for input validation. On the form I have a text box for entering weight and a text box for entering height, which are both used to calculate the body mass index. Therefore, both text boxes input information cannot be negative or an illegal character ( $, @, !...) The input validation is supposed to present a Message Box that displays something along the lines of "Please enter numeric values" when input values are illegal characters "Please enter a positive number" when input values are negative "Invalid Entry" when input values equal 0
Here is my code:
Private Sub btnCalculate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCalculate.Click
' Declare local variables
[Code].....
View 3 Replies
Apr 24, 2009
create an application that calculates the registration fees for a conference. The general conference registration fee is $895 per person. The is also an optional opening night dinner with a keynote address for $30 per person. additionally, the optional preconference workshops listed in table 7-16 are available. [code] When the user clicks the select conference options button, it should display the conference option form the conference options allows the user to select the regular conference registration, the optional opening night dinner, and an optional preconference workshop.(the user cannot register for the optional events, however, without selecting the conference registration of $895.) when the close button is clicked the conference form should be removed form the screen and the total should apper on the main form. [code]
View 1 Replies
Oct 29, 2009
The hotel has 8 floors and 30 rooms on each floor. Create an application that calculates the occupancy rate for each floor, and the overall occupancy rate for the hotel. The occupancy rate is the percentage of rooms occupied, and may be calculated by dividing the number of rooms occupied by the number of rooms.When the user clicks the "Complete Report" button, a loop should execute and iterate 8 times. Each time the loop iterates, it should display an input box for one of the hotel's floors. The input box should ask the user to enter the number of rooms occupied on that floor. As the user enters a value for each floor, the loop should calculate the occupancy rate for that floor, and display the information for that floor in the list box. When the number of occupied rooms has been entered for all the floors, the application should display the total number of rooms occupied and the overall occupnacy rate of the hotel.I have some of the code but I'm not sure which way to go now!
[Code]...
View 14 Replies
Jul 6, 2011
The program is a hotel occupancy form The Hotel has eight floors and 30 rooms oneach floor. I'm supposed to create aapplication that calculates the occupancy rate for the hotel. Theoccupancy rate is the percentage of rooms occupied, and may becalculated by dividing the number of rooms occupied by the number ofrooms. For example, if 18 rooms on the first floor are occupied, the occupancyrate is: 18/30 = .6 or 60%. The form has two out labels called totalrooms occupied and overall occupancy rate that holds two output text boxes todisplay the numbers
its only three buttons Calculate report,close, and exit Its obvious what the exit buttons issupposed to do the clear button should clear all the controls on the floor
Now the complete report button is supposedto loop and iterate eight times. Each time the loop iterates, it should displaya input box for one of the hotel floor. The input box should ask the user asksthe user the user to enter the number of rooms occupied on each floor. As theuser enters a value for each floor, the loop should calculate the occupancyrate for that floor and display the information for that floor in a list box.When the number of occupied rooms has been entered for all floors theapplication should display total number of rooms occupied an overall occupancyrate for the hotel. (the hotel has a total of 240 rooms total)
[code]...
View 6 Replies
Sep 27, 2009
I have created an application that calculates and displays the quarterly payment on a loan but when i run the application the paymnet amount is showing with () around the amount I can't figure it out.
[Code]...
View 3 Replies
Nov 29, 2010
Create an application that calculates the total cost of a stay in a hotel If the check in occurs in November-March the rate is $89/night. April-August is $99/night and September-October is $109/night. $10/night should be added if more than 2 people are in the room. More than 4 people are not allowed in the room, and a traveler can only request 1 room. A 15% tax should be added to the room rate and 10% tax added to all room service and other charges. No tax will be added for phone charges.
The program should use a function to calculate the total charges for the visitor's stay and output it to a label. There should be buttons or menus to calculate the total, clear the form, and exit the application. At least one of the button should call a sub procedure which performs its function. [Code]
View 1 Replies
Sep 13, 2011
How can i view 3D object from maya in .net?
View 1 Replies
Feb 19, 2010
I'm having trouble figuring how to code the calculations for a Pocket PC application that calculates the cost of a cell phone bill. From a Pocket PC the user should enter the number of minutes used during the past month, in order to calculate the cost of the cell phone bill. The plan allows 300 minutes for $29.95 per month. For each minute over 300 the cost is $0.17 cents per minute. Tax and Fees are $4.85 a month.
1. User enters the number of minutes used during the past month.
2. Based on plan rate of 300 minutes for $29.95 and 17 cents for each minute over 300 calculate the cost of the bill including the fixed cost of $4.85.
3. The user must be able to initiate the calculation and display the individual charges and the total cost of the cell phone bill.
4. The user should be able to clear the number of cell phone minutes, the individual charges and the bill total
If negative number is enterd for the cell phone minutes, the user should be advised and asked for a valid entry If non numeric value entered for the cell phone minutes, or if left blank the user should be advised and asked for a valid entry.Application is deployed on the Pocket PC emulator built in VS 2008
Enter # of Minutes ________ (user enters)
Regular Minutes Charge ___ (29.95)
[code]....
View 1 Replies
Jan 11, 2010
I am writing a windows form application, where I want to have a WebBrowser control, and in that control, I want to show a Google map programmatically generated (I mean, not just specify a URL to the browser).
View 1 Replies
Jan 27, 2010
I've been looking at API and cURL and I'm thinking of creating a program for delicious which adds a bookmark for me a certain times during the day. They have an API page here which I think you use a cURL command to use but I don't know what any of this means
I reckon I could figure out everything except how to actually get the program to connect to delicious and add the bookmark, there doesn't seem to be anyone else using vb.net and cURL together so maybe there is a reason.
View 5 Replies
Jun 16, 2011
I was trying to figure out the cause for this . What i understand is :
1. .net starts splash screen in different thread.
2. Someway when main form load event is finished or about to finish , then splash screen is disposed.
Now in this case , i think dispose method of the splash screen gets fired from the main form , even when splash screen initialization is not finished yet.
View 4 Replies
May 15, 2011
i try to read a dbf file with that sub
imports system.data
Public Sub dbf2()
Dim objLigacao As System.Data.OleDb.OleDbConnection
[Code]....
how i can connect and read the same dbf two times with different application???
View 5 Replies
May 15, 2011
I'm having some bugs with my Visual Basic 2008! Here they are:
When debugging my program...After I close the program the 17th time visual basic freezes for exactly 45 seconds!
When I restart visual basic then it stops freezing but again after 17 times exactly it starts to freeze again!
( I think I've tried reinstalling it but I don't really remember...If I did it didn't work! )
View 12 Replies
Apr 25, 2011
I have a form based application and I need to add the ability for it to read command line arguments and not display any forms if the app was started from the command line. How can I go about this?
View 5 Replies
Mar 4, 2010
I'm running in to a problem that I was able to fix with Application.DoEvents, but don't want to leave that in because it might introduce all sorts of nasty problems. Background: Our app is primarily a desktop app that makes many calls to a web service. We control everything but changes to the overall system design are not going to be seriously considered. One of those calls, Calculate, is used very often, and occasionally can take a few minutes to process all the data to return valid results.
[Code]...
View 1 Replies
Dec 29, 2009
I know something like this exists, I juts don't know the right word to search about it, so basically I have a cosole application and if it runs twice it crashes. I wanna dispay a message: Sorry app alerady running.I can look at processes and see if my exe is there already running but that's much harder.
View 2 Replies
Dec 12, 2011
I want to enlarge an image, possibly up to 32 times or 64 times bigger than original dimensions (so that the user can see each pixel) if possible. The following is a simple function that I have to enlarge an image.
Private Function xEnlarge(ByVal Source As Image, ByVal Rate As Double, Optional ByVal Quality As Drawing2D.InterpolationMode = Drawing2D.InterpolationMode.HighQualityBicubic) As Image
[Code].....
View 6 Replies
Jul 18, 2012
Im planning to create a Remote Desktop Application and I'm having problem with viewing other computers monitor or screen.
Im not asking for the code on how to do it. and one more thing is it safe to use winsock in creating a client/server application?
View 3 Replies
May 13, 2009
I have just started using vb.net and I have a checked list box with times throughout the day shown as
00:00 - 00:14
00:15 - 00:29
00:30 - 00:44
00:45 - 00:59
What I am trying to find is a way to get the current time and find which list item it fits into. What I think I need to do is to first of all get the current time and then go through the list splitting each item into 2 times and seeing if the current time fits. For example: Split the item 00:00 - 00:14 to 00:00 and 00:14 and then check if the current time is more than 00:00:00 but less than 00:14:59 and if so do certain task.how to go about taking each list item and splitting it into 2 separate times so I can check between them?
View 2 Replies
Dec 25, 2010
I'm trying to make a program that calculates the x's for you using the abc formula. Now i have made it, it gives a value of "NaN" as output. I don't know where i went wrong, so I hoped one of you could help me with it.
Here is the code I made:
[Code]...
View 7 Replies
Nov 30, 2009
when does the computer calculates Enum?in other words wiill this 2 be Exactly the same?
dim a = 1
dim a = myenum.value_equates_to_1
i've got a feeling its faster when we do not use enum, just wanted to make sure
View 15 Replies
May 16, 2009
I made my program and now I just need to add in the serial and trial part of the application. I know the application must connect to the host and go to a txtfile. How would i do the trial and serial. Also If the serial is already activated I want the application to reject that Serial and Count how many times they entered in a wrong serial.
View 2 Replies
Sep 19, 2009
I am creating a form that calculates QB Ratings but its not coming out right. The formula is found here
My code:
Dim a, b, c, d As Integer
a = (Comp.Text / Att.Text * 100 - 30) / 20
b = (Yards.Text / Att.Text - 3) * 0.25
c = Tds.Text / Att.Text * 20
d = 2.375 - (Int.Text / Att.Text * 25)
Rating.Text = "QB Rating:" & ((a + b + c + d) / 6) * 100
Number set 1:
22 complete
36 Attempt
2 touchdowns
0 Interceptions
229 yards
It should come out 98.0 but comes out 100
Number set 2:
16 complete
37 Attempt
0 touchdowns
3 Interceptions
205 yards
It should come out 27.4 but comes out 33.3
View 6 Replies
Aug 26, 2009
I have programm what calculates KiloGramm price.It works so that if I enter the amount(in KG) and price then it calculates the Kg Price.
But it calculates wrong when I insert "," not "." . My programm code is so:
[code]...
View 8 Replies
Oct 28, 2010
VISUAL BASIC 2008. Program Description: Create a program that calculates the amount of quarters, dimes, nickels, and pennies are needed from an amount of change (entered in pennies). The program should use the largest coins possible (for example, fifty cents should use two quarters, not five dimes, fifty pennies, etc.)
I don't want the code already written out, I need somebody to walk me through making a code. Also, this is my first class dealing with computer programming so all we've learned so far is declaring variables and how to label objects, the simple stuff. I'm at a loss at how to start because a quarter is worth 25 but the program is supposed to show how many quarters once a user enters the amount in cents.
View 5 Replies