Simplify My IF Statement?

Mar 10, 2010

So I have here a sub, that is called to check values in my program. It works as it is, but it is a very long line of code. I know there must be a way to simplify this. As long as it uses fewer than 10 lines (even though this is 3 lines, split up. Same thing in reference).

If (btnArry(1) = btnArry(2) And btnArry(2) = btnArry(3) And Not btnArry(1) = Nothing) Or _
(btnArry(4) = btnArry(5) And btnArry(5) = btnArry(6) And Not btnArry(4) = Nothing) Or _
(btnArry(7) = btnArry(8) And btnArry(8) = btnArry(9) And Not btnArry(7) = Nothing) Or _[code]....

View 12 Replies


ADVERTISEMENT

How To Simplify Loops

Dec 5, 2011

I would like to simplify a do loop.

View 1 Replies

How To Simplify The Code

Jun 8, 2012

I was just wondering how you would go about simplify this code as its getting very annoying manually going through and changing the index value for the arrays.

[code]...

View 1 Replies

Can Any One Simplify CrazyPennie CODE

Nov 7, 2009

In my Previous Thread < My First DATA Base Application > About DATABASE Crazypenie Give me Code:[code]

View 7 Replies

Simplify The Handles Clause In A Sub?

Nov 14, 2009

Is there a way to simply the Handles statement? What if i want this sub to handle 20 textboxes do I have to list each textbox there? I already have a loop in my script so i can cycle through my textboxes ("TextBox" & i.text). is there anyway to use a variable or a function after handles to get all the names of the text boxes?

Private Sub textChange(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress,TextBox2.KeyPress, TextBox3.KeyPress, TextBox4.KeyPress, TextBox5.KeyPress

View 8 Replies

Asp.net - Simplify Email Body In String?

Oct 20, 2009

I'm just wondering about this one. I'm creating an ASP.NET webform containing lots of textboxes etc. And I want to send an e-mail based on this stuff. And the e-mails body needs to go into a string. And the string is supposed to contain HTML code, but the syntax changes because of the string. So how can I simplify this? Is there any software or something that lets me do this? Perhaps paste in some HTML code and then convert this to string format, ready to use with vb.net?

View 2 Replies

Simplify And Optimize This Checksumming Code?

Jan 27, 2011

Public Function CalCheckSum(ByVal ByteList As List(Of Byte)) As List(Of Byte)
Dim total As Integer = 0
For Each b As Byte In ByteList

[code]....

View 1 Replies

Simplify A Weekly List Of Events For A Web Site

Aug 17, 2009

I am writing a program to help simplify a weekly list of events for a web site without having to manually edit HTML code every single week.

The program takes event information from the user, stores it in a list box, and generates HTML code based on the user entry. The program basically enters in the user's inputted fields into a pre-set HTML template.

Here's how it's done:

1) I have a number of text boxes that the user fills out: "Date" "Event Title" "Age" "Location" "Details" etc.

2) The user clicks on the "ADD" button to store this event. The "Event Title" is shown in the list box, but I'd like for all of the information that was taken from the user before they clicked on "ADD" to be recalled in another text box.

3) The user can move events up or down in the list box, or remove them completely.

4) When the events have been sorted, the user hits the "GENERATE CODE" button and the html code is generated.

So lets say the list looks like:
- DJ Jim at Katrina Lounge
- DJ Heather at Zanzibar
- DJ Manny at Skybar

When the user clicks on the "DJ Jim" event, the full details that they entered earlier will be shown in a text box to the right of the list box. When they click on the "DJ Heather" event, the text box will reflect the details they entered for the "DJ Heather" event, and so on.

When the user click on "Generate", the program must be able to go through each item in the list box, recall the event details for that item, and plug in the variables for that item into the HTML code template.

The main question is, how can I store the information for each event (Event Title, Date, Location, etct.) while displaying only the Event Title for that even in the list box? If I know how to code this, it will be simple to display this information in the text box and recall the variables to plug into the HTML code

So the structure would be:

CODE:

View 3 Replies

Refactoring - Possible To Simplify (refactor) My Program Code (VB 2010)?

Jun 27, 2012

I have created a simply Pizza program (for a summer project not education related) that uses check boxes to determine what the customer wants. Basically a simple pizza ordering program.I was wondering as I have used the If statement over and other again for different parameters and variables, is it possible to use multiply arrays to simply the VB Code...I was advised to use Constructors in VB.Net Or is there a more simpler way to go about creating this program...or a better way of programing?What about decreasing the repetition in the code?

[code]...

View 4 Replies

Simplify Code For 3 DataGridView Controls In Winform Application?

Jun 6, 2011

I have following code for 3 DataGridView Controls in my VB.NET winform application. How can I simplify this code?

With DataGridView1
.Columns.Add("Column 0", "TaskName")
.AutoResizeColumns()[code]........

View 3 Replies

Socket Programming And Telnet Class For .NET To Simplify The Sending And Receiving Of Data?

Sep 28, 2009

I'm writing a GUI-based app in VB.net that talks to a LambdaMOO server via telnet, sends commands to display the object hierarchy, then parses the output and creates a visual representation of the object hierarchy.So my question is: is there some kind of "telnet client" class for .NET to simplify the sending and receiving of data, or do I have to write my own using the socket API?

View 7 Replies

SQL Statement Doesn't Work - INSERT Statement Works Fine In The Form Load But Not In The Button Click Event?

Oct 14, 2009

See

Public Class Form1
Dim sql As String
Dim conn As New OleDb.OleDbConnection
Dim da As New OleDb.OleDbDataAdapter

[CODE]...

The problem, The INSERT statement works fine in the form load but not in the button click event?

View 29 Replies

If <expression> Then <statement [:statement]> Else [statements] In Concrete Form?

Jan 1, 2010

I was convinced that If <expression> Then <statement [:statement]> Else [statements] in concrete form of If a = b Then SayHello() Else SayBye() End has sense. I read article on msdn on If-then-else, but I forgot why I was reading, so I concluded, that snippet above means this

If a = b Then HelloIsSaid : IsNotEnded Else ByeIsSaid : IsEnded But I have tested it now, and I see, that Else without statement is nothing more than decoration. It would be pretty good if it had function I described. Do you think its good request? Or do you know any circumstance where this Else has some function?

View 13 Replies

Making A Next Statement Into A Loop Statement In Visual Basic?

Jun 8, 2009

y friend and I are re-learning Visual Basic, and we are stumped on this bit of code.

For intAsterisks As Integer = 0 To intLine - 1
lblAsterisks.Text = lblAsterisks.Text + "*"
Next

View 6 Replies

Sql - Perform An Inline Select Statement In A LINQ Statement?

Jun 24, 2011

I have the following SQL:

[Code]...

I want to put it (the select count statement) in this LINQ statement so I can get the sales count in my linq statement: Dim TheLeads = (From L In DB.Leads Where L.IsDeleted = False Select L).ToList() Is this possible to do in LINQ?

View 1 Replies

Change The Exit Statement To A Continue Statement?

Feb 23, 2009

add an if statement and an exit statement to my do loop that exits when my future value (FV) is greater than 1000, then to change the exit statement to a continue statement so my loop will continue even though my fv is greater then 1000, point is to get this to run even though my if statement doesnt do anything. problem something wrong in my code and an exception error (xception of type 'System.OverflowException' occurred in mscorlib.dll)

so can someone show me where or why I have an error is, what am I overthinking now! I could use a hint, OMG i could use a tutor for that matter

[Code]...

View 3 Replies

ElseIf Statement Into A Select Case Statement?

Jun 23, 2010

A co-worker wants to convert the following IfThenElseIf statement into a Select Case statement.
Explain why this is not possible.

If temperature = 100 Then
X = 0
ElseIf population > 1000 Then
X = 1
ElseIf rate < .1 Then
X = -1
End If

View 7 Replies

SQL Statement :: Nearly Working Just Cant Get Form Values In Statement?

Aug 4, 2010

I cant get this SQL statement to insert any of the values in the form to add to the database

sql
sql = "INSERT INTO prevresults (ExamDate, ExamTime, CorrectAnswers, PassPercentage) VALUES (date.now, time.now, rightanswers, percentage.text)"

[code]....

View 4 Replies

Return Statement Which Is True In An If Statement?

May 24, 2012

Return statement which is true in an if statement

View 3 Replies

Break Up The Code In A Method Body Into Statement By Statement Symbols/"tokens"?

Apr 22, 2011

I'm writing something that will examine a function and rewrite that function in another language so basically if inside my function F1, i have this line of code var x=a.b(1) how do i break up the function body into symbols or "tokens"?I've searched around and thought that stuff in System.Reflection.MethodInfo.GetMethodBody would do the trick however that class doesn't seem to be able to have the capabilities to do what i want..dit 2:basically what I'm trying to do is to write a program in c#/vb and when i hit F5 a serializer function will (use reflection and) take the entire program (all the classes in that program) and serialize it into a single javascript file. of course javascript doesn't have the .net library so basically the C#/VB program will limit its use of classes to the .js library (which is a library written in c#/vb emulating the framework of javascript objects)

View 4 Replies

Exceptions - Can The "Throw" Statement Exist In A Block With No Try/catch Statement

Oct 5, 2009

how to use them then before, but am still a little confused with a few aspects. Here goes:

1.) Lets say you have a method that checks for a certain condition(s) and if it fails Throws an exception. Does it have to be in a try/catch block? Meaning can the "Throw" statement exist in a block with no try/catch statement?

2.) Now lets say we have a method that has a try catch block and in it there is a throw statement. When the throw statement is executed does it first try to find an appropriate catch block in the same method or does it immediately go back to the calling method without looking at the catch statements in the current method where the exception was thrown?

3.) I created a custom exception class that inherits from ApplicationException. Next I created a method which has a catch block that catches this type of exception and does some action. Is the System(i.e CLR) smart enough to throw an exception of this type, or does it only throw exceptions from SystemException?

4.) I know that some people are more liberal in their use of exceptions and others use it more sparingly when truly strange stuff happen like the DB going down. I am writing code where I am getting some info back from the database, converting it and then storing it. Sometimes there might be data that comes back from the database and other times the field is empty and the Null value comes back. Therefore in the instances where Null comes back from the database I should not convert the value to anything, since I will get an error. What should I do in this situation? Should I let the CLR throw the exception when it goes to convert the Null value or should I check for the Null value and if it exists not convert?

5.) In general when I throw exceptions, is it sensible to only throw exceptions of the type Application Exception or are there instances where the programmer throws exceptions of the type SystemException?

View 2 Replies

Make A 'like' Statement Or Use Some Kind Of Wildcard To Make The Statement Not Case Sensitive?

Jul 11, 2010

I'm building a listview search feature in my app. (See the code below). It works really well, except if you search "T" then the code removes all items, if you search "t" then it removes every item except for those starting with "t". Is there any way to make a 'like' statement, or use some kind of wildcard to make the statement not case sensitive?

For Each itm As ListViewItem In ListView2.Items
If itm.Text Like TextBox1.Text & "*" Or itm.SubItems.Item(1).Text Like TextBox1.Text & "*" Then
Else

[code].....

View 2 Replies

"End Of Statement Expected" Error In VB 2010 In A Do While Statement?

May 2, 2012

I have a line of code that is working in one statement but not the second statement. I'm not sure what I'm doing wrong, I am learning slowly but surely, and it is by no small margin because of the ave found here =) The error is occuring in the intResult = intSelection x intCount line of the SECOND Do While Loop.

The blue squiggle line is under "intCount" just FYI
Dim intSelection As Integer
Dim intCount As Integer = 0

[code]....

View 1 Replies

Components - "if" Statement Shows An Error " Statement Cannot Appear Outside Of A Method Body"

Jan 29, 2009

I have the following vb code which works as expected when it's in a code-behind page. I tried to move it to a shared or component page since I will need to use it in multiple pages:

Imports Microsoft.VisualBasic

Public
Class DetTime
'Determine eastern time

[CODE]...

However the "if" statement shows an error " statement cannot appear outside of a method body" and the Microsoft solution is to "move statement into a procedure or subroutine"

View 1 Replies

Case Statement Inside A Case Statement

Oct 31, 2011

I have coded a case statement that changes the background colour of a panel. [code]When the code is run, it works for the case of colour1 that is NOT 1 or 2. However, when the colour1 is 1 or 2, it is supposed to pick a number from set array and run another case statement. Instead, it only picks the last value (for 1, this is 5, and for 2, this is 7).

View 3 Replies

"Using" Statement - "statement Cannot Appear Outside Of A Method Body"

Mar 17, 2010

Where should i put the Using statement in Visual Basic 2008 Express Edition? as i put in under general declaration, it said "statement cannot appear outside of a method body"

View 1 Replies

.net - SQL Statement In Vb?

Jan 11, 2012

I have a table named "Admin(a)"And i have a SQL statement:

SELECT *FROM Admin(a);

But (a) gives me a error.How should i express Admin(a) in a sql statement?

View 2 Replies

C# - .NET - When To Use The Using Statement

Mar 20, 2011

Dim x As New Serialization.XmlSerializer( ... )
Using file As New FileStream(myFile, FileMode.Create)
Using writer As XmlWriter = XmlTextWriter.Create(file)

[code]....

I've read that you're only supposed to use a Using block on objects that have a .Dispose() (i.e. implements IDisposable), which is why I'm thinking there shouldn't be a Using on "writer", but instead a writer.Close() at the end. But "file" has both a .Dispose() and a .Close(), so which do I use? The Using or a file.Close()?

Note: I'm using an XmlWriter because I can customize the output. I removed the settings here, though.

View 5 Replies

Cannot Get The IF Statement Right?

Aug 14, 2011

I am new to VB8 and I cannot get the IF statement right.I think I am not getting the Dim correct.I have posted before with an IF problem and this program is ok until the last IF.

[Code]...

View 12 Replies

Cannot Use Using Statement

Jun 2, 2011

I am using Visual Studio 2005 and am unable to use the "Using" statement. I have just moved some code over from a .net 4 application, but that does not seem to be the problem as it is still not usable in a new app.

[Code]...

View 2 Replies







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