VB.NET
Dim iString As String
If My.Settings.IPBank.Count = 30 Then
MsgBox("You alredy have the maximum amount of IP Addresses stored, delete one to add another.", MsgBoxStyle.Information, "Program Error")
[Code]...
I want it to check all of the items in the my.settings.ipbank which is a stringcollection. Before it adds and if it already exists in my.settings.ipbank then i want it not to add it. But it just adds when i run it. And then once its added it says: "Collection was modified; enumeration operation may not execute." But also before i run it. There is a warning saying: Function 'AddTo_IPBank' doesn't return a value on all code paths. A null reference exception could occur at run time when the result is used. Is this something to do with it? I think i have the Next in the wrong place .
explain me the difference between them? I'm new to visual basic, and I need to know the very basic things in Visual Basic allowing me to become a professional User
I am trying to call this private function, but am missing somthing, anybody point me in the right direction Private Function DL_WebPage(ByVal _URL As String) As String This is what I have tried, but with no success: call DL_webpage But this comes up with an error
if for example i have two private sub I declared a local variable on private sub a... is there a way that private sub b could use the variable created on private sub a? Im asking because im in a problem in my app were using global variable is not an option to make the long story short
I am using following code to run a private function.I have two values in my combo box, One and Two and two private functions with the same names, Private Sub One() and Private Sub Two()I want my application to call the function whatever value user choses in the combo box.If One is chosen in the combo box, Private function one should be called.Code is below, that does not work
Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim vrValue = ComboBox1.Items(1)
i want to add calculations in 1 private function I have a textbox named lbldisplay.text when i enter a number.. the number is shown as a string so.. -private number1 as string when i press the button "+", "*", "-", or "/" the number1 must return into a double. So the number in the textbox is now a double.. so for example i press the + button, and i need to fill in a new number.. but this new number is also a string!
I design a simple program that has manys sub program, I am trying to call Private sub, but i dont want may program to wait until it get back from that private sub, i want it to conitunie.
like calling Exp2 and the Exp1 countine the other command without waiting to get back from Exp2
I am using visual basic and trying to create function. I am getting this error: "Argument not specified for parameter '_IsDayRateCheckBox' of private function CalculateParikingCharges(_HoursDecimal As Decimal, _IsDayRateCheckBox As System.Windows.Forms.CheckBox) As Decimal'.
This is the code. Private Function CalculateParkingCharges(ByVal _HoursDecimal As Decimal, ByVal _IsDayRateCheckBox As CheckBox) As Decimal
This is how I call the function. Dim HoursDecimal As Decimal Dim AmountOwedDecimal As Decimal If Not Decimal.TryParse(HoursTextBox.Text, HoursDecimal) OrElse HoursDecimal < 0D Then ErrorLabel.Visible = True HoursTextBox.Focus() [Code] .....
I am using this function in a module which is called from this event " Public Sub Painting(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs)" in the module[code]...
I'm trying to make an application that calls a function to create a timer, but I cant use WithEvents or Private inside of a function or sub, Is there any way to do this?
I have as sub that is triggered from the file system watcher when the new file is created in spec. directory.I need to call some function to do something with that file. [code]
im parsing an xml file using this code Private Function overview2(ByRef filePath As String)Dim reader As XmlTextReader = New XmlTextReader(filePath + "\movieData.xml")
[code]...
it works 80% of the time. What i mean is , i go through each node and when i find the overview node i read the data and send it to a text box. Im doing this for movies on disk. sometimes on certain movies it doesnt find the overview node even though it is there .
Private Function CheckForNull(fieldvalue as string) as Boolean
That checks that all my fields are not empty? For example, say I have three fields txtFirstName, txtLastName, and txtAddress. How would I write the function above that would check that these fields were not left empty?
I am cleaning up some code and I have multiple classes that are 99% exactly the same. So my understanding is that my options are...
1. Create a class and all other classes inherit from it and modify it a bit
2. Create an abstract class and all classes inherit from it and modify a bit ** I took this route
3. Create an interface and all classes Implement that interface.
Here is my 'original' class below (the one that all of them look 99% identical). This class is used in an arraylist so I have a listing of all my images from a folder I have searched.
A common mathematical function is the Factorial function. The factorial function takes an integer input of "n" that is greater than or equal to 1 and computes n* (n-1) * ... * 2 * 1. In mathematical texts, factorial is denoted with an exclamation point, as in n!.For this exercise,write a function called Factorial that takes a single Integer input and returns an Integer corresponding to the factorial of the inputted parameter. To help get you started, your function will look like this:
[code]...
After you have written this Factorial function, add a Page_Load event handler that calls the function, displaying on the ASP.NET web page the values of 1! through 5!.Hint: The Factorial function will need to contain a looping construct from 1 to n, where, at each iteration, a variable is multiplied by the value of the looping variable.Now I'm not asking anyone to solve this for me but rather if you could help me understand how I should go about it. I'm not really understanding how I would loop and increment this function. Would I make the variables 1! through 5! equal to the given values and have them called to the equation and then loop it and increment it as so? I'm not even sure I'm thinking this out correctly.
I am calculating the average of an array(double) using a known (smaller) array of integers, which contains the indices for the larger array to give the values for the average. Below is the function:
' 'NumLoops = Ubound(LookupList)+1 ! ' i always >0 Function Mean(ByRef Y() As Double, ByRef LookupList() As Integer, ByVal NumLoops As Integer) As Double Dim res As Double [Code] .....
Stand alone performance (through a win32 project) form is very good for my project. e.g. a Y() = 50000 entries, LookupList=1000 entries, calculating the mean 1000 times take about 5 ms.
That beats a c++ function accessed through a rcw quite easily (takes >300ms). However, when I plumb this function into a larger project the performance drops off significantly, taking (typically) 50ms for the same test. Also if (say) I make Y bigger (say, 100 000 elements) with everything else the same I see a tiny overhead in the stand alone test (of order 1 ms), yet I see a close to linear increase in the calculation time in the larger project. The larger project is not so big (a few MB) as to make we worry about resource constraints.
I am fairly new to VB and I am struggling with not using the Reverse string.I need to take a persons name from a text box and print the name backwards in a label using lop and the MID function.I have this, but it doesn't use the MID Function, how would I change it.
Private Sub convertButton_Click(sender As System.Object, e As System.EventArgs) Handles convertButton.Click, ClearToolStripMenuItem.Click Dim Name As String = ""
I have a private sub that I have to call in different times with different textboxes when I click a button. So I made something like this private sub [just some things to change D link into V link not really important]:
Private Sub DtoV(ByVal input As String) Dim vlinks As String If input <> "" Then
I'm using a DO interation to loop a function I'm using to test for internet connectivity. The code is working fine, except that when one of the tests is satisfied the loop stops. I want this to continue in the background while the program is running. How can I get this to work?
Private Sub checkInternet() Dim InetChecker As Boolean InetChecker = CheckForInternetConnection() Do While LabelCount.Text <> "" Thread.Sleep(10) [Code] .....
I'm looping through items in a listview. For each item, it deletes a file containing information stored and re-writes it with new information from the listview item.