VS 2010 Scholarship Analysis - Determined By Percentage Points ?
Dec 12, 2011
Im trying to make a scholarship analysis. i want it to be determined by percentage points using the following criteria.
OVERALL GPA
MAJOR GPA
VOLUNTEERED HRS = NUMBER OF REPAIRS * 4
VOLUNTEERED T SHIRT HRS = NUMBER OF SHIRTS * 10
I have inputs for the users name, academic status, overall gpa , major gpa , number of repairs and number of shirts. so how could i use the information to give the user say like 10 out of 10.. if they have 4.0 and alot of hours.. or like 6 out of 10 if they r an average students and have little hours used.
View 2 Replies
ADVERTISEMENT
Apr 1, 2011
I decided to try the Code Analysis tool that came with VB2010 (at some levels). It produced LOTS of fascinating comments. Many of the comments make no sense, such as one about not disposing of a type on all paths when there is only one path that ends with an explicit call to object.Dispose. I think the analysis engine is looking at some of the calls, but they all return to the caller properly.
[Code]...
View 15 Replies
Apr 20, 2010
is there a way to offset the points in a polygon without having to change each one individually the points are in an array
View 2 Replies
Sep 27, 2011
So after my script runs a batch file it executes the shell command:
adb shell dumpsys cpuinfo > sample.txt
which then if you open sample.txt you see this:
[code]......
View 20 Replies
Mar 9, 2011
I have a picture and I have defined a circle on it(as a rectangle) . This will not always be on the same place and i need a way to get all the points that is in the circle. If it it will always be a near perfect circle.
View 7 Replies
Sep 30, 2011
I have created an app, that reads data from a .txt file, and compares it to data retrieved from a website. The only problem is that my program slows down and sometimes even freezes at specific points in the program. I don't understand why, because that specific point in the .txt file is no different then the rest of the file.
Here is my
Function vertaalGegevens(ByVal teller)
Dim webStream As Stream
Dim webResponse = ""
Dim req As HttpWebRequest
[code]....
I also tried making a different thread, but that became way to complex for this simple program.The text file i import is 1.5 mb big, and contains aproximatly 66,000 records that need to be run trough. These records are contained in a ArrayList. The word "teller" in the code stands for count, this value gets higher each loop. The loop is run outside this peace of code.I was thinking that maybe I didn't close the webresponse object, so I also tried webResponse.Dispose(), with no success.
View 6 Replies
Nov 4, 2011
I'm using mscharts, but my question might not need to be chart related to be answered.My chart contains 5 XY data points that will be shown in a spline (line graph). The X values are from text boxes 1-5, my Y values are from textboxes 6-10. I'm adding them to my chart by code.
[Code]...
My issue is I have to enter the data in order to make my line proper. Is there a way to first arrange the points, then add them to the chart. Otherwise if I add a lesser point in the middle, it "z's" the line.
View 3 Replies
Sep 30, 2011
On forms size and such, is it in points or pixels? I'd assume pixels, however, it seems when i make a image that is in the same size, (i put the size as the dimensions for pixels), the image seems not the same size. I'm unsure of how big a "point" is, but i am aware of a pixel.
View 7 Replies
Jan 23, 2011
I am building a game project for a school project. User gets points for completing certain tasks. I have it all coded - curious as how I should do high score table. I was thinking an Access DB, but that seems like total overkill. Does XML seem reasonable?
View 5 Replies
Apr 30, 2010
I've rewritten my program so it would be more .net friendly (meaning I try to draw in picturebox.Paint event).
I try to use DrawLines using array of points, which are added by user one by one, but I can't figure out how to force my program to only use points that have been set by user and not the whole array.
When I call DrawLines pointing at my array of eg. 10 points and only 5 had been set, I end up with a nice set of lines with the last going to the upper left corner (0,0) and supposedly staying there for 4 more points, which is unacceptable.
I think of using ReDim Preserve each time, but I am not sure if it is the most efficient way to do this.
Anyone can think of something more elegant before I implement this redim monstrosity?
View 4 Replies
Nov 1, 2011
I need to display a grade based on the number of points entered. store the min and grade in a 2d array here's my code that I have currently:
Dim strGrade(,) As String = {{"0", "F"},
{"300", "D"},
{"350", "C"},
[code]....
View 12 Replies
Feb 25, 2012
I'm Using Visual Basic 2010, and what I want know is how I can create different list on a single ComboBox. Practically I've 2 ComboBox... the first with a list of Items inside and I want to create a second ComboBox With Different types of list based on the choice of the first ComboBox..
Example: First Combobox with all the continents and the secondo ComboBox With all the Nations, I want that the Nations list of the Second ComboBox change according to the Country selected from the list of the first ComboBox...
View 1 Replies
Mar 25, 2010
I have a form with a tabcontrol and 4 tabs. I want to open a form with showdialog in a predetermined tab.
I've tried
OptionsForm.OPTS_TabControl1.SelectTab(1)
OptionsForm.OPTS_TabControl1.ShowDialog()
but it didn't work.
View 2 Replies
Oct 13, 2011
I need to create a VB app to enumerate through a directory containing thousands of subdirectories, most of which have 3 - 5 (or more) PDF documents. The user would like the list of PDFs loaded to a table (UltraWinGrid) with the page count of the PDF in one of the columns.
View 2 Replies
Mar 8, 2011
I've searched a good deal on the topic and have found little results. It seems adding foreground into the criteria on any engine I've used causes tons of entry level documents on threading in .Net.
In my current project I have a foreground thread within a static class that lies dormant until it is told otherwise. It contains a queue of items that must be processed and the items application cannot close without all items being processed. Right now I have a method that tells the thread that it should stop accepting new items and close when it is finished processing everything, but not everyone on the team remembers to call the method. Having the GUI close while the process still runs in the background is quite a bug in my opinion. If I can add a periodic check to see if the queued thread is the last foreground thread, then I can call the method and not have to worry about others that use the class.
View 2 Replies
Feb 22, 2010
I have a working vb.net application which writes to an excel file. While trying to delpoy it I came across this error:"The following files may have dependancies that cannot be determined automatically. Please confirm that all dependancies have been added to the project.c:\program files\microsoft office\office12\excel.exe".
View 5 Replies
Mar 10, 2011
My checklist is doing a autopostback on selectedIndexChange event. I need to know how to get the item that was just selected that invoked the postback. I tried using selectedvalue,selecteditem, selectedindex, but they all give me the lowest item in thecollection and not neccessarily the item just checked
View 2 Replies
Jan 31, 2010
how can i get the points which make a polygon from a region which was derived from the polygon's points?
View 1 Replies
May 8, 2012
what is the easiest way to make a picturebox follow a path determined by waypoints? without using like 100 if statements and timers.
View 6 Replies
Apr 22, 2012
I have a database with 3 tables: Student, Unavailability and Duty.The fields for Student are entered in a form I have. One of the fields in Unavailability is filled by a form, the other fields are an autonumber and a foreign key to the Student table.ow I want records in the Duty table to be created and automatically filled in depending on what the values of the fields are in the Student table.For example, If the Boarder field in the Student table is 'yes' then I want the Duty Number field in the Duty table to be '1', '3' and '4'. If it is 'no' then I want the value to be '2' and '5'. I recognize it will have to create several different records to incorporate the different duty numbers for each StudentID. Obviously this will require an if statement, however this is my first time implementing a database with my limited experience with programming and Visual Basic, so I don't know how to refer to the specific fields in a table and set the value of other fields depending on the data in other fields.
View 6 Replies
Mar 31, 2011
Working with System.Cryptography, I'm noticing that data arrays up to a certain size will either conform to the size of the Initialization Vector (IV) or the size of the Key provided. So with a 48-byte Key and a 32-byte IV, up to around 42 bytes of data will encrypt to 32 bytes and 44+ will encrypt to 48 bytes of data. I've tested this with a variety of data arrays, and it seems to always come out the same... but I have a concern that higher byte values in the original array may result in longer encrypted arrays.
how or whether I can construct byte arrays that will be guaranteed to come out of Encryption at a pre-determined size?
View 16 Replies
Mar 5, 2009
I had done my project and now I planning to make setup file for my application...During making the setup file,I had encountered this problem: The following files may have dependencies that cannot be determined automatically.
View 2 Replies
Jun 3, 2011
To write a problem analysis on the who wants to be a millioniare game, and i don't know to go about it.
View 1 Replies
May 2, 2012
I'm reading data from the microphone and want to perform some analysis on it. I'm attempting to generate a spectrum analyser something like this:
What I have at the moment is this:My understanding is that I need to perform a Fourier analysis - a Fast Fourier Transform ? - to extract the component frequencies and their amplitudes.
Can someone confirm my understanding is correct and exactly what type of Fourier transform I need to apply?
At the moment, I'm getting frames containing 4k samples from the mic (using NAudio). The buffer I've got is 16bits/sample (Signed Short). For reference, the above plot shows approx half a frame I'm coding in VB so any .Net libraries/examples (preferably on NuGet) would be of most use. I believe implementations vary considerably so the less I have to massage my data, the better.
View 1 Replies
Sep 24, 2010
I wrote the following lines of code within the even handler for a Process_Exited event. The really weird thing is that on the fifth line I get the error "Process must exit before requested informaiton can be determined. (When trying to access the Exit Time & Exit Code)
Private Sub AssociatedProcess_Exited(ByVal sender As Object, ByVal e As System.EventArgs) Handles
AssociatedProcess.Exited
Do Until AssociatedProcess.HasExited = True
[CODE]...
View 1 Replies
Jun 30, 2009
documents that are required for a project. Such as:e.g: What sort of document I have create at the requirement analysis phase...etc I need to know all the documents that are required from start to end of the software project.
What's the part that MSF (Microsoft Solutions framework) plays?If we need to use MSF, what sort of documents that are required from it?
View 1 Replies
Dec 19, 2011
Write a program to analyze a list of grades to determine the number of A's, B's, C's, etc. after applying a curve percentage selected by the user. When the form loads it should contain all the grades and available curves in the list boxes on the left. The user selects a curve and clicks the "Apply Curve" button. The program should display the curved grades (based upon the selected curve) and the grade distribution in the list boxes on the right?
View 1 Replies
Jul 10, 2009
I'm using VB 2005, and am hoping to have streaming video to my application with some sort of video analysis. Right now as a test, I have an axWindowsMediaPlayer control playing a video from a URL. I'm figuring I need to be able to detect the colors of the pixels in the video for simple analysis, but I haven't been able to do this yet. I've been able to view the pixel colors in every area of the screen except for the media player window (just shows up black, as if you were to make a screenshot of the media player video). Is this at all possible to do?
View 1 Replies
Oct 4, 2009
I intend to choose developing a Web Content Management System using asp.net with VB.net 2008 but I'm not sure about how long it takes to program such system. Is 4 months enough for developing such system? This 4 months is the duration of this semester and Includes about two months for analysis and design and the rest is left for implementation.
View 2 Replies
May 8, 2009
I have been tasked with getting a asp.net (vb.net) talking to an analysis services engine on our production servers. The web server is a separate machine from the web server.The web server runs as the IUSR_ user.The application (of course) works on the development machine which has both IIS and Analysis services on it.The problem I see appears to be a permissions error (returned in the browser by the asp.net app):An existing connection was forcibly closed by the remote host ....
it is described in a similar post here: http:[url]......I am not a system admin, nor am I an expert in analysis services (why have I been tasked with this you ask? because other people haven't been able to get it working and it has fallen on me). I have tried creating and adding the user (IUSR_) to the sql server and added that user to the role. While that worked on my local machine, it did not work in our production environment where the sql and web servers are separate.
View 1 Replies