Make The Program Faster?
Jun 27, 2012
*i have a vb.net application that plots 16 plots immediately, the plots data are realtime. the 16 plots must draw the points at the time they receive them (must be no delay), to do that 1- i made a timer with ticks at 50 ms.2- at each timer tick call the plotting function 16 times (with a graph name as parameter)like that:
[Code]...
View 1 Replies
ADVERTISEMENT
Jun 13, 2010
Ok well i have a code that makes a bitmap the size of 9000,9000 but it makes the program run so slow. how to make it run faster?
View 5 Replies
Apr 7, 2011
Since i have a background on my progam it is very slow. You got a code to make it faster?
View 2 Replies
Nov 26, 2010
Im using RichTextBox from Visual Studio 2008 to show various RTF content and it is slow. I mean really slow. Is there any way to improve the loading speeds of LoadFile function?I tried to load directly from memorystream (without saving file to disk) but it's still slow.I read plenty info about how RichTextBox is slow and all. Has there been any improvements in Visual Studio 2010?
View 5 Replies
Dec 15, 2011
Is it possible to make a vb.net application faster Through code like using characters that the Computer already understands Like coding in certain areas through y x (math) etc. Will it be More faster since the compiler don't have to really do much work But its still must be VB.NET
View 19 Replies
Feb 4, 2010
i have a program in VB.Net 2005 and my problem is that it runs very slow. I mean, it takes some time for the Form to be displayed even if it is not doing anything in the Form_Load event. Do all programs in VB.NET 2005 act like that? my programs in VB6 would display the Form instantly.
View 4 Replies
Feb 15, 2012
Well my application is 37 KB size, but when i start the program it took like 10-15 sec to startup, is there a way or code to make my applications run fast and fresh?
View 2 Replies
Mar 15, 2011
I have this code
Public Function ColorInvert(ByVal pic As Bitmap)
Dim i, j As Integer
Dim c As Color
For i = 0 To pic.Width - 1 Step 1
For j = 0 To pic.Height - 1 Step 1
[Code]...
View 2 Replies
Nov 17, 2011
I was using a JSON MAKER class to make a JSON string to send off from my webservice - it was way too slow - so I thought I would do the string manipulation right in the recordset loop - how could I go wrong - it is only 1141 records![code]...
View 10 Replies
Apr 26, 2011
how to change the balls speed
View 2 Replies
Dec 10, 2009
Basically what i need is for something to look at the items in a list box then compare it to the contents that is in the database. The issue is that the listbox can have more than one of the same item. For instance, LstBox_Order.items(0) could be the same at any position in the listbox. This code works, but it is slow if there is like 10 or more items added.
[Code]...
View 7 Replies
Sep 30, 2011
I have a datagridview that takes time when loading, and once loaded, is also very slow when using the scroll bar to see the other rows.[code]..
View 12 Replies
Oct 27, 2009
I have a function that I use quite a bit that I wrote more than 2 years ago. It works fine but recently I saw how it can use up a good deal of time under certain condition. Here's some code that uses the function SelectValue The function works so that if you had N which you plug into the function rising continuously while SelectLimit was set to 255 then SelectValue would match N until N reached 256. SelectValue would start to descend to 0 until it reached 0 and then it would again ascend to 255 and the process would repeat. So SelectValue(255, 255) would return 255 and SelectValue(256, 255) would return 254. SelectValue(257, 255) would return 253.
Option Strict On
Public Class Form1
Dim sw As Stopwatch
[code]....
The function works exactly as I want it to but if one of you knows a way to write this so that it will process faster then you can let me know. I get a result for processing time of 6.11 seconds on my computer for the above code.
View 2 Replies
May 26, 2010
I am working on a small program to teach myself how to use timers, and I would like to know if there is a way to make the timer control faster.I set the Interval property to 1 and it is to slow for what I am trying to do.(All I am trying to do is loop a button left to right, right to leftand so on in a Panel)
View 39 Replies
Jun 28, 2010
this is really bothering me, my program seems to run faster whenever I click on some other window so the form doesn't have focus. What is going on and how can I fix this?
Here's the troublesome section:
ListView1.Items.Clear()
'loop through the updates
[code].....
View 2 Replies
Nov 22, 2011
Im making program that scrapes things from big url list, is it possible to make user set how many threads program uses to scape list faster? If its possible,
For each url as object in urllist.items Do something.Next If can be made into that, would be nice :P
View 9 Replies
Oct 18, 2009
Alright im trying ot make a website login for Gmail to check my email faster Woohoo..Im trying to make a form with 2 textbox's one for pass one for email. Im trying to make it so when the user clicks on the login button on the form it will use the email/pass in the 2 textboxs and then open my build in webbrowser.But if it fails i want it to send back a message saying "Information Incorrect". [code]
View 12 Replies
Nov 13, 2009
I need to perform a huge amount of registry read operations, and I'm trying to figure out a way to make each read operation faster than using My.Computer.Registry.
If I used APIs directly to do it, it should be faster, right?
View 1 Replies
Dec 15, 2010
How can I improve this bit below to make the items in the TreeView to sort faster or something totally different to sort them easier?
[Code]...
View 4 Replies
Jun 6, 2009
I cannot find a way to make a program that I write make a shortcut in the start menu for all users.My final goal is to make an MSI and deploy it in group policy to all users on a computers OU. Is this possible?
View 5 Replies
Aug 23, 2009
How do i make my button open a program and make it windows size?
View 6 Replies
Feb 25, 2010
If e.CommandLine.Count > 0 Then
Dim IncomingCommand As String = e.CommandLine.Item(0).ToString
If IncomingCommand.Substring(0, 2) = "-1" Then
form1.close()
End If
End If
I am trying to make the program close if the -1 string is sent with the program. See my installer allows for me to run certain programs before it actually installs, but it doesn't shut down copies of the program itself. So I have a next startup instance set to shut the program down if the -1 is received. But if the program is not running it starts up instead. This is not desired. form1.close doesn't work. e.cancel = true doesn't work, etc etc. What can I do to make the program not start during this instance.
View 1 Replies
Jun 1, 2010
I made vb.net program for 1440x900 resolution, if i run my program on 800x600 or 1024x768, my program's resolution is bigger then windows, so i have problem with resolution. Now i want to change my program's size and i am interested in, wich resolution is correct to make program, 800x600 such as minimum?
View 9 Replies
Aug 26, 2009
How do I make a program that opens a file in the folder the program is stored?
View 6 Replies
Apr 3, 2010
I want to make a program that searches for a RGB color and clicks on it, WITHIN the program.
View 2 Replies
Dec 30, 2010
what im trying to do= make a program that will make multiple accounts
[code]...
ok what i type in textbox(es) "1" i want it typed on a "3"{a website=www.justin.tv/signup} when i hit the "2"[button1]i really dont have any idea what im doing i know ill need to have a webrowser to load the justin.tv/signup but i have no clue what the name of the boxes are called on the webpage
View 4 Replies
Jun 9, 2011
Me and a friend are making an app which we need to play a sound when Form1 is started. How do we do this? I don't mind code.
View 2 Replies
Oct 1, 2010
You'd think both are the same. But maybe it's the compiler that Microsoft has used, but I've noticed that when compiling two very small programs, identical logic. VB.NET uses more IL instructions.Is it true than that c# must be faster, if only because its compiler is smarter.
View 6 Replies
Feb 15, 2011
Possible Duplicate: Is C# faster than VB.NET? Which one is faster, C# or Vb.net ?
View 2 Replies
Aug 15, 2011
How to make a computerized examination program using vb.net...
View 1 Replies