Repeat A Block Of Code?

Feb 25, 2011

now if i've written a code, and then wrote that if a certain condition presents then repeat that code again including that if condition, so what is the code for this?

View 3 Replies


ADVERTISEMENT

Basic Mastermind Game - Don't Want Any Colors To Repeat - Values Still Repeat Sometimes

Feb 17, 2011

I'm trying to make a mastermind game program with visual basic. I started of creating the combination maker for the start of the game. Hoever, in my version i don't want any colors to repeat. I used the random function independently to get numbers from 1 to 6. Each number has a corresponding color. The problem, the values still repeat sometimes.

Here's my code for that part:

Randomize
a = Fix(Rnd * 6) + 1
txtA = a

If a = 1 Then

[CODE]...

View 2 Replies

Timer To Repeat Code

Jun 5, 2012

I some code that looks to see if a certain program is running when the form is open. If the program is open it puts Running in a label, if it isn't running it says not running.What I want to do is repeat this process every 5 or 10 seconds. I have never used a Timer before so not sure where to start.

View 1 Replies

VS 2010 Repeat Loop/Code Check For Text,URL Etc?

Feb 22, 2012

I am waiting for a confirmation email to arrive within the web browser I am using I do not need to click any buttons to open this mail I just need some help figuring out how I can check whether it has arrived or not I already have the code to find the link and navigate to it (I had to navigate rather then invoke due to it trying to open in a new window outside of web browser and out of my control)

How can I keep checking for my specified element and when found carry out the rest of my code or is there another way I should be doing this the code I am using to find the verification link and navigate to it is as follows

[Code]...

I really am desperate for help on this one I have been reading about loops but cannot seem to find any example which I can use and change to my needs I have done so well in learning up until now and I have really hit a brick wall for something which seems so simple

View 2 Replies

.net - Key Repeat Delay And Key Repeat Rate?

Jan 5, 2010

How do I (programmatically) find out the key repeat delay and key repeat rate for a system?

A solution that works on any/all .Net capable platforms would be ideal, but the key target OSes would be XP, Vista, and 7.

View 1 Replies

Forums Code Addin Alternative To Insert Code Block

Feb 23, 2010

There has been an Visual Studio addin created by Heslacher based on code by JohnWein which allows one to copy code in Visual Studio and paste it as HTML code block here in the forums.urls...

View 10 Replies

Comment Multiple Lines Of Code/block Of Code In VB?

Jul 1, 2009

How to comment multiple lines of code/block of code in VB?

View 5 Replies

Repeat Cards Showing Up In Game And Win Evaluating Code For Poker Game?

Jul 2, 2009

I am working on a poker game and I have the game setup the way I want it in terms of graphics and I have the code programed to deal the cards out exactly how I want them. Granted, the code is very simplistic, but functional for a new programmer like myself. I'm sure there are other more efficient ways to code my game, but I like mine so far because I can at least understand the majority of it. With that being said, here are a few problems and questions that I have.

1. How come when all 12 cards are dealt out I have some cards repeating in the game? For example, I get queen of diamonds in more than one picture box when I only want the card to be dealt once and then removed until the next game.

2. I was hoping to have a button 3 to clear all the boxes, basically resetting the game to the next game. When I hit button 3 it only clears the contents of picturebox 10 and 12.Other notes: I have the deal down the way I want it. It deals the first 10 picture boxes and a second button deals the 11 and 12 picture boxes.

3. I know this is my next step so I want to post it with the code I currently have. I want to start taking my project one step further by evalutating each of the three rows of cards (3 rows of 3 cards each - I'm not worried about the dealers hand (picture box 10, 11, 12 yet). So I want to evaluate a row of pictureboxes against a "pay scale" and display the win in a text box or label next to the 3 card hand. For example, Q of diamonds, Q of Clubs, Q of spades would win 15, etc. ( have a weird feeling I may have to change the names of the cards (I have them named card1, card2, etc. right now) to something that identifies them in order to evaluate the hands.

Here is the code that I currently have. I'm using visual basic.

Public Class Form1
Dim Rndm As New Random
Dim myPB(11) As PictureBox
Dim HiddenCards As New List(Of String)

[code]....

View 1 Replies

Get And Set Assembly Code Block?

Apr 23, 2009

I want to get a 48 byte block of assembly code from the memory, save that code in a global array or whatever, then I wanna NOP everything from 0xF to 0x16, and write that into the memory, and then later I wanna use the global block to set it back, how can this be achieved in VB.NET?

View 4 Replies

What Tag To Use For Posting Code Block

Aug 13, 2010

I have a simple question on posting to this forum: what tag to use for a code block?

View 4 Replies

Make My Program "repeat" A Line Of Code?

Feb 1, 2012

This is the code i have thus far, using Visual Basic 2010 Express[code]...

View 12 Replies

Converting A String To Block Code

Apr 13, 2009

I was wondering, is their any way to change a string into a line of math code. I was working on a graphing calculator project and am having trouble splicing up everything into variables and coefficient and operators. Example, having this block of code work

[Code]...

View 2 Replies

Find C# Style Code Block?

Apr 14, 2009

I have a script file which uses code similar to the C# language, using { and } braces to start and close 'blocks' of code. Note that blocks can be nested.[code]...

Is it possible to use regular expressions to parse the code and return the name of each block separately? So in the above example, it should return block1, block2 and block3 but NOT "block 2 contains" or "and another" (no nested blocks).

View 10 Replies

Select Case Block W/code

Nov 24, 2011

'This program is to ask for input from a customer as to the type of lift ticket desired, whether it will be for a half 'day or full day and the total number of days desired. It will then calculate the total ticket price plus a slope 'charge of $10.00, a 10% sales tax will be added to the total of both the price and charge.'The checkboxes were designed to order one type of ticket at a time, when one box is clicked the 'other checkbox dissappears. Clicking the box again resets them both to visible.[code]

View 16 Replies

Stopping While Executing A Block Of Code

Oct 10, 2010

I'm trying to replace text using this method:

Add each characted to a String list (List(Of String)), execute the replace function for every type of character (for example: Text = Text.Replace("A", "0AA") Text = Text.Replace("a", "1AB")), but there's a problem: it replaces the text, but it replaces those replaced characters too, so when I replace "A", it will result something like this: "0AAB AAA 0AB"... (a long text)), and then add the characters to the result string

how make the application stop and start the replacing of the next character

I'm trying to use this code block:

Dim ReturnedString As String = GivenText
Dim ListToEncode As New List(Of String)
Dim curr As Integer = 0

[Code].....

View 16 Replies

VS 2005 Change Block Of Code In VS.Net?

May 6, 2009

I'm wondering, is there a utility out there that will let us select a block of code and be able to replace it?

If there is none then I would want an idea on how can this be done so I could make a small utility for this task.

View 4 Replies

VS 2008 Block Of Code In An Application

Oct 2, 2009

I have a block of code in an application I have written. I have tried two different variations.Below are examples of the method I used: [code]
The second example adds only three more lines of code. Yet, the app would run at about 10% of the speed as it would in the first sample.

View 9 Replies

VS 2008 Improve On Block Of Code?

Jun 13, 2009

I have this block of code that splits txt/csv files. It is working just fine but its a but "ghetto"

[Code]...

View 2 Replies

Checking The Code Line By Line And Found That The Code Does Not Enter The IF Block?

Jan 15, 2012

I am using the given code to copy my database files...it works like a charm in debug mode but as soon as I create a setup, it stops working. The error is

"Database Detach Failed"

I tried checking the code line by line and found that the code does not enter the IF block.I have no idea why.

Public Sub bk()
Try
Dim strDatabasePath As String = My.Computer.FileSystem.CombinePath(My.Application.Info.DirectoryPath, "LIC.mdf")[code].....

View 2 Replies

C# - .NET Will Stop Debugging Run The Code In The Finally Block?

Jun 18, 2012

Well, I've read (and learned) that the finally block doesn't always execute its code (even apart from pulling the plug).FYI For more information, see try catch finally question

[Code]...

View 1 Replies

Default Block Of Code When Implementing An Interface?

Feb 26, 2010

I have an interface that I've defined and am working through a bunch classes that will implement it. I'm noticing that in 95% of the implementations, I'm only changing a few lines of the code, so I'd like to know if it's possible to have my IDE generate a block of code inside of a method upon implementation, much the same as implementing IDisposable.not mark my posts as answered. It is extremely rude. You have no idea if you've answered my question.I WILL come back and mark the ones that are answers, as answers.

View 7 Replies

Feature Request: New Code Block Statement?

Dec 22, 2009

It's just before while I found that expression (see my signature) is possible, so this request is not about what 'I am missing', but what I can think of. It would be nice to have named sections of code in visualbasic, which would replaced almost everything you can miss about GoTo. Imagine this:

Section Compression
For Each item ...
If Not item IsV...

[code]....

View 4 Replies

Find The Parent Window With This Block Of Code?

Oct 15, 2008

i am using vb2008: now i can find the parent window with this block of code

Private Sub Button11_Click_2(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button11.Click
Dim theHandle As IntPtr
theHandle = FindWindow(Nothing, TextBox9.Text)

[code]....

i do know how to use sendkeys, but if i use that and click on something else while i send the keys it picks up that window and trys to send the keys there thats what i dont wantnow using the top block of code along with this module how can i get the childwindow with focus on the "Richcntl" box to send text to itin a diffent click button:in this block:

Private Sub Button13_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button13.Click
End Sub

View 2 Replies

Know The Code To Address Logical Block 0 Of A Disk?

Feb 25, 2012

Does anyone know the code to address Logical Block 0 of a disk? This is my dump of block 0 of a multipartition disk.

[Code]....

View 15 Replies

Skip A Code Block When Synclock Is Active?

Nov 3, 2009

Is it possible to skip a code block when a synclock is active?

For instance:

A object of class Bicycle is used by thread 1 and has a synclock on it.

Then thread 2 comes along and needs to know if the lights of the bike are working. But if there is a synclock active then thread 2 just forgets about checking the lights and goes to make a delicious chocolate pie.

View 2 Replies

VS 2010 : Rename A Minimized Block Of Code?

May 11, 2012

I minimize a block of code, and instead of the text inside the rectangle being "..." I need to write smth of my own. I knew how to do it some long time ago, but I've forgotten it now.

View 6 Replies

What Sub/Function/Block Of Code Produced Error

Mar 2, 2010

I'm creating some software in visual basic 2005 .Net. My software keeps a log file. If the applications encounters an error, it writes to this log file. Is there a way I can easily produce what sub, function, or block of code that produced the error?

Example:

Sub MessageUser()
Try
msbox("Hello")

[code]....

Since msgbox is spelled incorrectly this will produce an error. I want to know what sub caused the error, in this case MessageUser.

View 4 Replies

Write This Block Of Code That Parses A Delimited String Into An Object?

May 8, 2009

Is there a more elegant way to structure the following code, which takes a comma delimited string containing certain values in specific positions and assigns the values to the properties of an object?[code]...

View 5 Replies

Create A Block Of Code That Detects The Local IP Address Of Connected Adapter And Returns It As String To A TextBox?

Dec 9, 2011

I have to create a block of code that detects the Local IP address of connected adapter and returns it as string to a TextBox.

View 7 Replies

Show The Line Number Of The Line Of Code That Caused An Exception Within A Try...Catch Block?

Jan 29, 2009

Is there a way to show the line number of the line of code that caused an exception within a Try...Catch block?

View 5 Replies







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