VS 2008 CPU Usage Increasing Over Time?
Jun 19, 2009
I am currently running through a loop with 20 threads. These loops contain a series of 3 HTTPWebRequests (relatively CPU intensive). At the beginning, CPU usage never spiked above 10%. After about 7 hours of run time, CPU is spiking up to over 40%. I believe that this will eventually lead to the program crashing (it has before in less time, I modified some things and it seems to be running longer). What kind of intense CPU spikes are associated with threading? More importantly, how can the duration of runtime affect CPU usage by so much?
View 11 Replies
ADVERTISEMENT
May 19, 2011
I'm building a VB.NET 2010 app that tracks battery usage. Run the app, start logging, then let the battery go flat. At the end, you get a nice graph that shows you how long the battery took to run down. Compare it to previous results and you can see how battery life is doing.
But this is supposed to be an unattended app, so it's not feasible for me to sit down and use word, browse the Internet, listen to music, play games etc. for four hours (especially at work!), so I'm looking for a way to artificially increase CPU usage to chew through the battery faster, and simulate how a battery would probably be used throughout a work day.
I've managed to inflate the memory usage using:
Dim a as long
Dim ptr(0 To 20000) As IntPtr
For a = 1 To 20000
[Code]....
I increase CPU usage in VB.NET? I've tried creating new threads with constant loops, but I get the funny feeling that VB.NET optimizes these kind of things to prevent memory and CPU hogging apps from taking over
View 3 Replies
Jun 23, 2011
I'm having an unusual problem that I've never had with WR's before. I have a very user-driven program that interacts with a server of mine through webrequests. Depending on what the user's doing, it could end up sending a dozen requests/minute. This has never been a problem before, but for some reason system memory usage increases and doesn't stop increasing, as if something is cluttering it up for every webrequest that is sent out.
Is there a known problem with WR's like this? Or is it just a random screw up? I can get my system back up and running smoothly.
View 5 Replies
Nov 20, 2011
i need to add a increment hour and increment min button, here is the code :my ? is this how do i make the two new buttons work like code wise ?? this is attempt like 5 everytime ive played with the code and added buttons ive crashed the program?
Public Class TimeTest
Dim time As New Time() ' construct Time with zero arguments
' invoked when user clicks the Add 1 to Second button
Private Sub addSecondButton_Click(ByVal sender As System.Object,
[code]....
View 5 Replies
Apr 6, 2009
I am making my project for this semester. I am making "System monitoring Tool" so i have make a GUI and also get the all parameters but one thing missing I have tried to find from different places but not found that is the "continues line" that represents the changing values of CPU usage along time. same like "windows task manager" shows.
View 1 Replies
Jul 30, 2010
how can i increase the stack size on my ui thread from within my app?my app recursively draws onto a bitmap which is then displayed in a picturebox + only causes an error when i increase the size of the bitmap. i.e. the same drawing operation on a smaller bitmap works ok.
View 23 Replies
Jan 25, 2010
Get the current number of usage days, unique usage days, etc in an evaluation license using CryptoLicensing Generator.
View 1 Replies
Sep 24, 2009
I was thinking in doing some voice chat in my application which requires the use of UDP.
If you know any useful articles or can give me a boost I will be very glad and obliged.
View 15 Replies
Mar 23, 2009
I am new to arraylist. I have used standard 2 dimension or single dimension arrays which is there is .net & legacy VB.What I want is removing & searching in arrays to be easy ? VB.net does provide something called arraylist whereby we can remove items easily like X.removeat (index) or x.remove (search) etc.[code]Now I have a array person. To add i do redim person(10) or using preserve if I need to dynamically add etc. To remove is a pain as I need to copy contents and remove manually.Anyways in .net you have option called ArrayList.How can I use this to make life easier? If I want an arraywhereby I can do person.removeat (2) or person.add person.name="XYZ" & so on.Just wanna ease up on searching & removing.
View 6 Replies
Aug 29, 2009
Is it possible to determine how much RAM a process is using?Let me rephrase that, is it possible in VB.net to do this, and if so, how can I do this?
View 2 Replies
Aug 21, 2010
I'm trying to display the ram usage for my system with.
VB.net
MsgBox(My.Computer.Info.AvailablePhysicalMemory My.Computer.Info.TotalPhysicalMemory)
I always get zero why? Also i want to avoid the performance counter for this.
View 3 Replies
May 31, 2012
I found an ExtendedRichTextBox which was in C# i converted this class to vb.net using online code converter. There are number of options in like justifying the text, Inserting numbers list to selected text, Line spacing and etc i am unable to apply its some functions like line spacing, InsertOleObject etc if any one can figure out how to use the new functions of this control ? control is attached.
View 1 Replies
Sep 15, 2010
Is there a way to make an application show it's own memory usage?
View 9 Replies
Dec 19, 2009
Im wondering if there is some way of monitoring individual processes (read: not mine) cpu usage and ending (asking politely then killing it off) the offending process. I dont know about you, but i've been in multiple instances where i've been unable to get to taskmanager to "choose" process to be killed. For multiple reasons (Either taskmanager has been visible, but a game window is still showing (alt+tab not working), leading to a guess game of clicking processes or cpu usage has been so high that one mouseclick takes 30 sec.)
[Code]...
View 2 Replies
Aug 14, 2009
Im trying to monitor the battery of notebooks to diagnose whether there charging/discharging correctly or not for my work. I can get the basic info using SystemInformation.PowerStatus but i want to be able to see the slope or decline of the charging via a graph. Is this possible? i was playing with the system monitor control and thats the kind of output im trying to get. A simple line graph would be perfect....passmarks battery test is a example of what im going for
View 2 Replies
Jul 26, 2009
Why does CPU usage jump so high when a WebBrowser control is navigating to a page?Is there a way to drop CPU usage?
View 17 Replies
Apr 27, 2010
Another question for you... I have a program which lists the population from 1998 to 2002. The pop in 1998 was 300,000 but I need it to increase by three percent every year. My code works but for each year it has 300,000 as the pop. lic Class Population
[Code]...
View 9 Replies
Nov 19, 2009
I would like to know how to write the code for increasing number.For example. When I type a number in a textbox, after I pressed a button, it will increase from the number I've typed in the textbox with 1.For example : if i type 100 in the textbox,the number will go on.
101
102
103... to infinity
I am using sendkey..
Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
Dim n As Integer
For n = 1 To loop
[code]....
View 5 Replies
Jun 8, 2011
increasing the size of my array. i have this code but i don't know which of these code does not increase the size of my array even though i increment it.
This is the declarations:
Dim movieArray(0) As String
Dim ratingArray(0) As String
[code].....
View 5 Replies
Feb 24, 2012
I have a small page, with a button on it. When I click the button I'd like the code to look at a a field (call the field "InvoiceNumber") in a table (call it "InvoiceTable"), take the last number stored, increment it by "1" then store it back in the "InvoiceTable" and display the new invoice number on the page.Currently the button is called "New Invoice", so clicking this button is going to create a new invoice, with a number one newer than the latest one in the table.
View 2 Replies
Jun 22, 2010
Why did they choose to add a new keyword AndAlso, instead of just changing the functionality of the existing And keyword?
Why would one want to use And, instead of AndAlso anyway?
Is it not just increasing the number of keywords unnecessarily?
View 3 Replies
Oct 18, 2010
I'm using Visual Studio 2005. I want the output of these ten numbers arranged in increasing order... 22, 15, 10, 12, 12, 13, 21, 21, 20 and 9.
View 3 Replies
Jan 27, 2012
I placed a button on my form that measured 59mm in width (approx 2.25 inches for any Americans).When you run the project as you'd expect it still measures 59mm.However when I set the form as a child to my MDIParent and run the project the button now measures 67mm (well over 2.5 inches) an increase of 13.5%.Is this a bug or do I need to just change some setting somewhere?
View 6 Replies
Sep 4, 2009
My Encrypted code is :Asdos!Obqlds,Knodt+404620Y+20-05+24 Now, how can i manipulate the characters by decreasing each odd character's ASCII value by one and increasing each even character's ASCII value by one?
i.e. in the above code..
A becomes B
S becomes R
[code].....
View 11 Replies
Jul 9, 2011
I am struggling to do what i want with classes at the moment as they are killed off at the end of a method, can somebody let me know how to make the classes live until i tell them to die? so that i can create one and refer to it from another method at another time? For example On form load i create a class Dog.Then later on i want to get info from the Class Dog. But it is no longer instantiated
View 6 Replies
Feb 13, 2012
What I want to do here is to increase the number on a label for next combobox item selected
eg.
Items Label
Tom 1
Jane 2
Mary 3
John 4
etc.. etc..
etc.. etc..
etc.. etc..
View 2 Replies
Apr 25, 2010
I'm guessing the reason this macro isn't doing what I want it to is because of an error on my part in the code. Basically, I want the values in the cells pointed out in the code to be increased by 10% each time the button is pushed.
Here is the code:
Sub Add10percent()
IncreaseColumnValuesBy10Percent 2, 0.1
IncreaseColumnValuesBy10Percent 4, 0.1
IncreaseColumnValuesBy10Percent 6, 0.1
IncreaseColumnValuesBy10Percent 8, 0.1
[Code] .....
View 2 Replies
Apr 20, 2011
I have a application which is written in background worker. Inside the background worker i am creating the multiple threads . The application has one notify icon. When i creating threads the notify icon gets duplicated for each thread. Suppose if i am running three threads means , there are 4 icons in the system tray.
View 3 Replies
Feb 8, 2012
My application has 1 main form and three other forms which raise events to my main form. I noticed that the memory starts at 77,000 K and increases substationally over a few hours maby be to 250,000k and ever increases.The main form has a dataset and a bound datagridview which gets refreshed with data. Basically it's a taxi booking application. The booking form raises an event to the main form and the main form refreshes the jobs and displays them on the dgv.
View 8 Replies
Sep 10, 2010
I'm attempting to have my page automatically scroll to the top when there is an error message to present to the user. Following a tip I found searching, I've enclosed the Javascript scrollTo function in a setTimeout function to avoid a conflict with AJAX remembering the scroll position. Here is the relevant [code]....
This is working fine for me locally, but when I move the code up to our test server, it does not seem to take effect.I have tried increasing the length of the timeout, but no dice.
View 2 Replies