Make Loop To Make Certain Thing Happen About 10-30 Times Without Taking In Too Much Memory / CPU?

Oct 16, 2011

A few years ago I have been busy creating this application but it didn't succeed, now Im coming back to it and similar problems occur. Basically I use SetPixel on a given window to draw a line, work fine, but the line goes away as the window redraws itself.The problem: I have been putting timers and threads on it to make sure the line is being drawn. Is there any way to make a loop to make a certain thing happen about 10-30 times without taking in too much memory/CPU?

View 7 Replies


ADVERTISEMENT

How To Make Something Happen For Every 1 In A Textbox

Jun 1, 2010

Ok lets say i have a textbox with five ones. How do i make something happen for every 1 in the textbox?

View 2 Replies

Cannot Make Happen In VS2008 SQL Server 3.5?

Oct 10, 2009

what MSDN is trying to indicate here on this tutorial, ref this page: Walkthrough: Creating a SQL Server Express Database.I cannot make this happen in VS2008 SQL Server 3.5 ? To create a relationship between the tables created in the previous step 1.Right-click the Database Diagrams node in the SampleDatabase.mdf node in Server Explorer/Database Explorer and choose Add New Diagram.

2.Click Yes if a dialog box opens asking to create the required database objects for diagramming.

3.Add the Customers and Orders tables to the diagram.

4.Close the Add Table dialog box.

5.Drag the CustomerID column from the Customers table onto the Orders table.

6.Verify that the Customers table is the Primary key table and the Orders table is the Foreign key table, and verify that the CustomerID column is selected for both tables.

7.Click OK to close the Tables and Columns dialog box.

8.Click OK to close the Foreign Key Relationship dialog box and create the relationship.

9.Select Save Diagram1 from the File menu.

10.Leave the default name and click OK.

11.Click Yes in the Save dialog box.

I can create relationships but not the Diagram ?

View 1 Replies

VS 2008 Make Something Happen On Key Pressed?

Oct 22, 2009

how to make a button get clicked when a key is pressed. The key I want to press is ctrl and I want it to press Button1.

View 5 Replies

Make An Event Happen When User Presses A Key?

Mar 9, 2009

how to make an event happen when user presses a key ... let's say space or whichever...and the other thing - how to display a folder on my hard disk ("E:Music") in a ListView box in my program?

View 7 Replies

[2008] Make An Event Happen When User Presses A Key?

Oct 1, 2011

i'd like to know how to make an event happen when user presses a key ... let's say space or whichever...and the other thing - how to display a folder on my hard disk ("E:Music") in a ListView box in my program?

View 1 Replies

Make 'try' Thing Work In My Program?

Feb 3, 2011

I need to write a program that uses 'try' in it

the program can only accept a number if its bigger than 3 otherwise it would give a error message and return to the start of the [code]...

View 16 Replies

Make Form To Do A Different Thing For Every X Secs?

Jun 27, 2010

I have 2 labels in my form. I have different content on them.I want to do the following:[code]*loop all the code above nonstop, in order to make this "sequence" running nonstop until i close this program*..Can anyone tell me what code do i need for each underlined part above?

View 2 Replies

Make If Command Apply To More Than One Thing

Jul 29, 2009

i was wondering if theres a way to make an if command apply to more than one thing, this is my problem: theres 9 white squares and if theres one or more thats orange, then a numer.text goes down one but at the moment theres 9 white squares and for every one thats orange the score goes down one, so if three are orange then the score goes down by three, or if five are orange then the score goes down by five, I'd like to make it so that even if there all nine the score only goes down by one.

View 13 Replies

Write A Formula To Make The Same Thing Work?

Aug 26, 2009

I want to enter a formula in VB but don't know how to proceed.

The formula I use in Excel is as follows

=IF(B2="A",M2*20.27)+IF(B2="B",M2*15.96,0)

How can I write a formula to make the same thing work in VB

View 3 Replies

Make A Webbrowser But Cant Get The Dock Thing To Work ?

May 27, 2010

Im a bit new to vb.net and i have maked a webbrowser but cant get the dock thing to work im not so good to that the form looks like this: [URL] then when i maximize it to full screen it looks like this: [URL] not good how do i fix it?

View 11 Replies

VS 2008 Make Some Kind Of Loop Inside A Timer To Make Them Change?

Dec 14, 2010

Basically I have 10 .png images.They contain a walk cycle I need to make some kind of loop inside a timer to make them change.

View 2 Replies

VS 2008 - Make A Loop From 1 To 100 And Make It Everytime It Loops Display Incrementing Numbers To The Screen?

Aug 23, 2009

How do I make a loop from 1 to 100 and make it everytime it loops display incrementing numbers to the screen?

View 1 Replies

Use The BackgroundWorker Built Into VB To Create A Thing To Make It Listen For Incoming Messages?

Mar 13, 2008

I want my application to be able to communicate 2-way between the application on another computer and the host server which will be running on my computer.I want to use the BackgroundWorker built into vb to create a thing to make it listen for incoming messages, and also send out messages to the client.The client needs to listen and receive, same as the server, because both need to communicate with one another.I do not know how I can make it do either sending nor receiving.I would be using two different background workers to keep the code seperated and organized so that I will understand what code is for what.

I want the code to say that if i receive the message "Apple" without the "" and cap sensitive, then it will change Label1.Text = "That worked, word received Apple" or something similar to that. ( This is because I am ignorant and I want it to interpret the text sent through to figure out what the application is supposed to do, and last time I couldn't figure out how to make it do something when a certain text was received.

View 1 Replies

GenerateResource / CoreResGen Suddenly Taking Almost 30 Times As Long?

Aug 8, 2010

Starting a few weeks ago, compiling a project (VB.NET, .NET 2.0, VS 2010) has taken several times as long as before. In Task Manager, I noticed ResXtoResources.exe taking lots of CPU for a while. I've finally been able to get some data on this using MSBuild's 'Diagnostic' output setting, and comparing that output to what I see in a branch from a few months back. Most striking are the final lines, which give timings. Before:

Target Performance Summary:
[..]
1395 ms CoreResGen 1 calls
1930 ms CompileLicxFiles 1 calls
2135 ms GenerateApplicationManifest 1 calls
2844 ms CoreCompile 1 calls[code].....

Both projects were compiled on the same system with the same settings. We've made numerous changes, to be sure, but nothing to the order of magnitude that would justify such a change in timings (and only for this one task!). I assume resource generation is getting stuck on something — a circular reference, a missing one, etc. I have been unable, however, to find anything useful on how to trace such a problem down to what I assume is just a single resource file.Short of looking through thousands of checkins or temporarily removing some forms (and thus, their resource files) from the project, is there anything else I can do to figure out the issue? I can't seem to find individual per-resource file timings.

Findings so far:I've created a new, empty project with all the same .resx files in place.The issue is not reproducible in .NET 4.0: compiling the exact same test project takes less than a second.The issue is reproducible in .NET 2.0 as soon as I also add one of the forms from the original project; apparently, it will otherwise not compile the resources "properly".Removing individual .resx files will reduce the timings 'proportionally'; that is: I have unfortunately not found a single file that is the culprit.

View 2 Replies

IDE :: How To Make Stopwatch With Elapsed Times

Oct 2, 2009

I have VS 2008 and wow is it different from the old VB I used about 10 yrs ago! What I am trying to learn is how to create an ap that has a window that displays elapsed time like a stopwatch. Then I would like to be able to click a button to pause that time and start another timer, and then have yet another button to reset all. I have the form designed using a RichTextBox but am not sure that is the best way to display the times.

View 1 Replies

Make Interval Of A Timer To Be Between Two Times?

Feb 6, 2010

How would you make the Interval of a timer to be between two times.

E.g if you wanted an event to occur between every 7 and 20 seconds?

View 4 Replies

Make Loop In Program And Calculate Time Taken To Complete Loop?

Nov 23, 2011

I am constructing a program, i am new to Visual Basic, but i have past programming experience. I was wondering if anyone knew how to form a loop that could...lets say calculate the answer when two numbers are added together,and it would repeat this thousands of times, etc. And if there is a way, would it be possible to calculate the time taken to complete this loop.

View 5 Replies

Make Webbrowser1 Refresh A Certain Amount Of Times?

Jun 5, 2012

How do I make webbrowser1 refresh a certain amount of times?

View 5 Replies

Forms :: Make A Button Click Only So Many Times Until It Becomes Disabled

Jan 17, 2010

I would like to know how to make a button click only so many times until it becomes disabled.

I would also like to know how to keep what is put in a RichTextBox there, without erasing the other text;

Example: Two buttons, the first puts "1" into the RTB, and the second puts "2" into the RTB. However when I press the second button, it over writes the first value.

How can I prevent this?

You Can Ignore this question below;

Old Question: I am working on a counter, and want to know how to make a button show itself if I hid it.

I have:

CODE:

And would like to know how to make one of the buttons visible again, with one big button.

I know it has something to do with an "If" statement.

Answer: Button#.Show()

View 6 Replies

Forms :: Make WebBrowser1 Navigate (x) Times On A Particular Website?

Jun 10, 2011

WebBrowser1.Navigate("http://" + TextBox2.Text + "/robbery/index/humanhunt/1")

How can i make this code execute the times that TextBox1.Text indicated?It should be some kind of loop. but i want it to repeat this every 100 milliseconds?

View 3 Replies

Make A Form That Takes User Input 3 Times?

Nov 6, 2010

I'm trying to make a form that takes user input 3 times, and each time compares it to the correct Answer... which is an array of {"C", "D", "A"}.Each time the user's input matches the correct answer ("strCorrectAnswer()"), then I'll add 1 point to intUserScoreCounter. I'm wondering why this code is returning an error (hilighted in blue)? Can I not compare a String to an Array?

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnEnterAnswers.Click
'Handles Enter Answers functionality
Dim strCorrectAnswer() As String = {"C", "D", "A"}

[code].....

View 5 Replies

Make A Timer That Beeps 3-5 Times And Runs A Progress Bar?

Jan 9, 2009

I am trying to make a timer that beeps 3-5 times and runs a progress bar. All it has to do is click start (timer set for 2 minutes starts) and as time runs out the progress bar fills. When the time is up 3-5 beeps happen. I am missing the coding for the 3-5 beeps and design parts for it and all coding for that along with code for setting the 2 minute timing. There is no label for telling the time left or to go just a progress bar. Here is my code so far.

[Code]...

View 5 Replies

Make RadioButton Only Usable A Limited Number Of Times?

May 15, 2009

I need to know to limit the number of times a radio button can be used. Maybe the number of times the radio button has been used can be stored in an XML file, and when the user wants to reset the counter all they would have to do it delete this file. I really don't know, that's why I'm asking you. But,the program will append a string every time a button is clicked with a radio button selected, I just need to know how to, for instance only allow RadioButton2 to be used in this manner say... 15 times.

View 5 Replies

Make The WebBrowser1 Refresh Infinite Amount Of Times With A Click Of A Button?

Nov 25, 2008

how i can make the WebBrowser1 refresh an infinite amount of times really fast and with a click of a button?This is the code i have right now:

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button2.Click
WebBrowser1.Refresh()

End SubThe above code only makes the webBrowser1 refresh 1 time, but i want it to refresh infinite times with a click of a button.

View 6 Replies

VB 2010 - Make Program Portable On Memory Stick To Run On Other Computers

Oct 21, 2010

I have a program made in vb 2010. The problem is it uses my files on the computer such as different cursors and pictures and I really want to be able to make it portable and stick it on a memory stick and run it on other computers. Is this possible?

View 12 Replies

Make A Coin Toss Program Where One Toss A Coin A Certain Number Of Times Then Repeat It A Certain Number Of Times?

Nov 21, 2010

i am trying to make a coin toss program where you toss a coin a certain number of times then repeat it a certain number of times.
the problem i have is "heads(counter2)" the word "heads" has a blue error line under it how do i sort the error out and also is all the code right

Public Class Form1
Dim tosses, repeat, heads As Integer
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

[code]....

View 1 Replies

How To Make A Loop

Mar 19, 2010

Heres my code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

[code].....

View 11 Replies

How To Make Loop

May 18, 2011

I managed to sort that problem out all by myself! I'm getting good at this. I just wonder if one of you could possibly tell me how to loop? I need to create a loop that counts up the a balance in a database then adds it together?

View 3 Replies

Form 1 Has Different Memory Usage At Different Times

Jul 1, 2009

i have two forms : Form1 and Form2..when i start application form 1 opens up, the memory usage is 10MB then i open form 2 and close form 1, the memory usage is 25MB.Again i close form2 and open form1, then the memory usage is 30MB.Why is this so that form 1 has different memory usage at different times...?

View 6 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved