I am making a checkbook balancer and so far so good. But, I need it to be able to handle multiple deposits or debits. The line for it is below:I need it to first do what is in the first grouping box (deposit or withdraw), and then handle the second, and then the third. Here is the coding for the Apply button:
Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
I get the error "35750 unable to open internet handle" from a server running a Visual Basic 6 program using the Inet control to access a site. It used to work but now it stopped. What is causing this and how do I fix it?
I'm trying to use a asynchronous UDP-Port to recieve data on a form.I manage to receive one message at a time(for each click of btnReadData), however if I do this receive in a loop (in order to continously receive new messages), my form seems to be locked.What am I doing wrong?
Public Class FPR2DIS Delegate Sub dDataReceived(ByVal Data As String) Dim UDPWorker As New Worker
I am in need of adding arr of type label at run-time. I am making a program which will retrieve employee name from database in different label. On clicking each employee name (label) it will display all the information about that employee in a msgbox. I use the following code to create the label. Since the number of labels is not fixed I have used an array. dim withevents lblArr() as Label 'declared in the class
In the subroutine(Form load): for i as integer=0 to NoofEmployee-1 redim lblArr(NoofEmployee-1) lblArr(i)=new Label ' I assigned all the necessary property like size location etc.. me.controls.add(lblArr(i)) next
I declared another subroutine: private sub MyClick(sender as Object,e as EventArgs) **handles lblArr(0).click** MsgBox("Hello") end sub The code doesn't compile since a subroutine doesn't.
I am building a chat client/server. And I can connect and chat just fine, but when a user disconnects, the server does not recognize this and acts weird, often spamming the last message that was sent by the user..Also, it's like the client does not disconnect from the server even when I close the client app. Once I exit the program, VB acts like it is still debugging. Once the server is shut down however, I get this error:
IOException was unhandled:Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host.
serverStream.Read(inStream, 0, buffSize)I don't know how to make my client and server accept the fact that a client has disconnected...
I have a handle event that takes care of about 50 buttons. Is there a way to determine which button is being clicked when the event is handled? I have tried using the FromHandle, but I can't seem to get it to work.
I have multiple textboxes which I want them to perform the same thing upon clicking them. By default I can use the handles textbox1.click for 1 single textbox but I am not sure how to do handle multiples of them. Of course I can write a handler for every single textbox but I have about 50.
Sub TextBox1_click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.Click If Button9.Text = "Make Changes" Then If TextBox2.Text <> "" Then Frm_Cine1.Show() [Code] .....
One of my clients wants a set up multiple dropdown lists as a set of outbound links (yes, I cringed too, but he does have his reasons. there are 3 dropdowns, each one pertaining to its own group of links. When each dropdown has its SelectedIndexChanged, it then redirects based on the choice made. However, lets say I make a choice in the second dropdown. It goes to the proper link. If I then choose a link in the first dropdown, it goes to the proper link. Then if I select a link in the third dropdown, it will go to the link specified in the choice I made in the FIRST dropdown.
How can I code it so that it will always select the most recent selection?
I am making a program which will read data from csv and pick up Username & Computer name from the csv.
Then it will run commands via telnet with those username and computer on line at a time. I have reached this goal without any problem. I wanted to paste the code here but its too much.
Basically what i now want to do is have a option for user to skip a command.
Like if csv have 3 users in it. i.e.
j.doe, comp1 t.test, comp2 u.user, comp3
Popup will come and say do you want to run the command "add user j.doe, comp1" something and you will have option to say Yes, No , Cancel.
Where yes will run the command and no will skip that user (go to next one) and cancel will end the whole process.
I know Msgbox yes,no is there but i dont know how to skip that user.
Following is the code which migh
vb Dim objCmdSelect As New OleDbCommand("SELECT * FROM " & fileNam & "", objConn) For i = 0 To objDataset1.Tables(0).Rows.Count - 1
I have an application which I've designed to relay information on a large screen, like news feeds etc. It scrolls labels inside panels so the text moves in a readable fashion. It actually works quite well but it seems to struggle sometimes by consuming too many CPU cycles. I've turned on double-buffering on the form as I remember this graphics method from years ago. This improves the display drawing in general but I am still getting flickering and sometimes the scrolling slows down considerably.
I am new to VB and I have a database that has three related tables. These tables show information about computer engineers. table one is engineers details table two is engineers allocated table three is jobs
My form needs to have buttons where a user can obtain information View details of all Engineers View Names of all the Engineers working on a specified job. Add a new engineer
I have set up the connection to the data base using the wizards and also made the dataset. How to handle retrieving the data from multiple tables. Here is a screen shot of my data set
I am using KeyPressEventArgs to restrict several text boxes to numeric entries only. Rather than repeat the code, I thought I would make a "RestrictToNumeric" subroutine and call it from each "KeyPress" event. Like So:
Private Sub txt1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txt1.KeyPress RestrictToNumeric() End Sub
[code].....
The problem I am encountering is that the variable 'e' is used before it has been assigned a value, causing a null reference at runtime.
So I tried to add Dim e As System.Windows.Forms.KeyPressEventArgs As?to the RestrictToNumeric sub.I cannot figure out what I need to "Dim" it as...
I've got my serial/com port code working ok using the standard Port.DataReceived handler:
AddHandler Port.DataReceived, AddressOf port_DataReceived I now want to be able to handle multiple COM ports. Do I have to create multiple copies of the handler sub or is there a way the handler sub can tell which COM port it was called for?
I am created a Vb.net ERP Application! In this application I handle core accounting concepts. I have handled Salebill and many of accounting form. I take salebill billno from Database by selecting maximum srno from salebill Table but whenever multiple user trying to access this form at a time, everyone gets same billno. How I handle this situation to show different bill no to different users?
I am facing a problem in VB .net Client/Server application where I am successfully able to talk between them using TCPListener and TCPClient class usage. However, when I try to connect another Client to the same server on the same welcome port, it errors out throwing an exception or behaves very unexpectedly.Isn't it true that the Server connection is on a WELCOME PORT for all the clients, and that each client connected gets a new port to carry on its communication with the server AUTOMATICALLY (according to the Tomcat webserver working)
Is there another way to handle the leave event of multiple textboxes other then coding in each event handler? I may not be using correct terms instead of doing this: (Existing) Private Sub leveladjstvaltxt_Leave(ByVal sender As Object, ByVal e As System.EventArgs) Handles leveladjstvaltxt.Leave If Me.leveladjstvaltxt.Text <> "" Then Dim levels As Integer = CInt(Me.leveladjstvaltxt.Text) Me.leveladjstvaltxt.Text = Format(levels, "#,###")
I have 30 TextBoxes all need same formatting , so I was trying to come up with something like this: (trying) For Each ctrl As Control In Me.Controls If TypeOf ctrl Is TextBox And ctrl.Text <> "" Then Dim val As Double = CDbl(ctrl.Text) CType(ctrl, TextBox).Text = Format(val, "#,###") End If
I am stuck though and don't know where I would place that code if this is something that is even possible. Only thing I can currently think of is in the leave event which defeats the purpose, I wanted to avoid having to place the code in 30 different textoxes leave event.
im using visual basic 2008 express and i am currently having issues with my cafe checkout system, i want to make it so my "Remove item" button doesnt allow you to remove and item that doesnt exist, eg. make the latte order count LESS THAN 0. the code looks like this:
I have a vb.net application in which there is a main form. There are around 10 classes each having their own functionalities like tcpactions, fileactions, serialport actions etc. The user interacts with the main form and does certain actions which will invoke the methods in these classes. Now I have a notifications textarea in the mainform and i want to show the current action being performed in those classes and their results in the notifications area.
for example when a user clicks a "Start Process" Button in the form i invoke the method "launchprocess" in a class "ProcessActions". Now this method tries to launch about 7 different process and after launching it sends notification such as "process 1 launched" or if it fails it sends notifications such as "process 1 launch failed".
I currently use event handlers and use them to show notifications but with the amount of events i have to handle it is getting cumbersome and i might have to add even more classes in the future. So is there a better way of handling notifications from other classes.
I want to use One routine to handle multiple events & i want to give the list class object to the routine handle clause in vb.net. Is it possible? I have 100 buttons on my web page & i want to handle click event of each button. I have same coding on each button but the only difference is that, which button is calling the event handling routine. So i want to make one sub routine for handling event of all my buttons.
I can solve this by writing each button name in the handles clause like - Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ImgRCP_26.Click, ImgRCP_27.Click,. But it is so lengthy procedure. So that why i want to handle my button in the arraylist. How to do this?
I have multiple user controls (the same one dynamically added to a form 4 times), and one class. I would like all of the user controls raise events in that one class. For example, if any of the user controls are clicked, I want it to send a string to the class to be processed and show a MsgBox "Control name was clicked"I am doing this as an exercise to reduce repeating the same code over and over directly in the control, and to avoid creating the class over and over to accompany each user control.
I don't have an example code, but recently figured out how to make a single sub handle the keydown event for multiple text boxes.What I would like to know is if it is simple enough to have the object name that is sending the event instead of "microsoft..text: 54654" (sender.ToString in a debug window) type of return. I don't know how to make use of that.
I have lots of items on a contextmenustrip, I want to be able to use multiple buttons for just 1 contextmenustrip instead of creating loads of menustrips for each button, here is what I want my code to do
Private Sub ToolStripMenuItem10_Click(sender As System.Object, e As System.EventArgs) Handles ToolStripMenuItem10.Click if button1 is selected and pressed an item from contextmenustrip then Button1.BackgroundImage = My.Resources.Boss_Room end if if button2.is selected and pressed an item from contextmenustrip then Button2.BackgroundImage = My.Resources.Boss_Room end if
I have somehow written a code to email with VB.Net, but i'm stumbled upon a problem where i am unable to send to multiple users from the email addresses that i have retrieved from the database.
As the code below, the line which is in bold, it throws me an COMException as it states that the "The item has been moved or deleted."[code]...
I have somehow written a code to email with VB.Net, but i'm stumbled upon a problem where i am unable to send to multiple users from the email addresses that i have retrieved from the database.As the code below, the line which is in bold, it throws me an COMException as it states that the "The item has been moved or deleted.".
Code: Public Sub SendEmail() 'DB Connection conn = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; Data Source=C:Documents and SettingsTestDesktopEmailEmailAppEmailList.mdb") conn.Open()
Using data binding and ado i am controlling a listbox selection (draws from an access database) based upon a combobox selection. Problem is i want to display more than just one column.The code i am currently using specifies the displaymember and value member on form load. However, i cant seem to be able to specify multiple display members.