Hi guys - I am trying to send a document to another server via XMLHTTP. Everything works fine when the document is already created, but when I try to create the XML file within VB 6.0, I get the following error when I try to send it.
"The system cannot locate the specified resource."
VB.NET Remote Execution or Stop and Start Windows Service
Hello fellow programmers. I am writing a desktop application that will allow our IT department to execute commands on remote computers. I had originally found a post that has a two part program that was working nicely
for half our computers. It seems that when the remote portion (which is a service) is running other programs will get hung up. We have to go into Services and Stop the service. Once this is done, all other programs execute...
Not sure if you need this as well but I just found that DateTimePicker. Value still passes the AM and PM value even though you are using the 24 Hour Format. In order to display your value as 24 Hour format you will need to use the following.
Not quite sure about that. I was hoping that the DateTimePicker was going to let me do this but I didn't see anyway to adjust time on the DateTimePicker so I just created my own Time Modifier.
I recently did this using 3 Numeric Up Down tools then combining them.
[CODE=vbnet]
Dim pTime as DateTime
pTime = udHour.Value & ":" & udMin.Value & ":" udSec.Value
pTime = pTime.ToLongTim eString[/CODE]
Hope this helps you out.
I currently have an application that uses full screen. The application is designed to accept the swipe of a card. Another form displays messages for the swiper, ie.. "Searching for your account." "Printing document". When the Message Form is done, it sets the focus back to the Main Form. The document it prints is a Word 2003 document. A dialog box that appears when the document is printing and it takes the focus away from the...
I worked it out and here is the code that I used to solve my dilema.
[CODE=vbnet]
Public Class Form1
Dim tBox As TextBox
Private Sub lblStartDate_Cl ick(ByVal sender As System.Object, ByVal e As System.EventArg s) Handles lblStartDate.Cl ick
calMain.Visible = True
tBox = txtStartDate
End Sub
Private Sub lblEndDate_Clic k(ByVal sender As System.Object, ByVal...
I have two labels with two corresponding text boxes (Start Date and End Date). When clicking on one label I would like to open a calendar control. When I click on a date on the calendar control, it will send the date selected to the correct text box. So basically, is it possible to pass a control name into a variable then evaluate it to verify that it is a control and use it as such.
Code:
Public Class Form1
Private Sub lblStartDate_Click(ByVal
Leave a comment: