Hi In VB6 there is a limitation on how many com ports you can use. I am writing an application that will me monitoring a lot of instruments, and need about 30...
Procedure declaration does not match description of event of having the same name. I trying to take a key field (Customer ID) from one of my tables through a...
I think to handle more than 4 com ports you need third party hardware drivers. I would check with the com port makers and see what software support they offer....
Gentlemen, et al., Anyone care you explain how to make a command button appear when the mouse is placed over it? I'd also like to have the button disappear...
Hi Darrin, try this: Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) With Command1 If (X > .Left And X < .Left +...
... I think is easier to use the smtp control. A lot of people use it and I think they like. It´s free. The URL is www.ostrosoft.com Another option (if you...
Frederiko dos Santos ...
fredec@...
Mar 2, 2004 12:50 pm
14591
... There is another suggestion .. I'm using this one (but I intend to transfer to smtp.ocx). Try to use the winsock control. But I still don't know how to...
Frederiko dos Santos ...
fredec@...
Mar 2, 2004 12:53 pm
14592
My problem: I have a form, which allows users to pick from a series of drop downs, when a user clicks the send button a report is called and created as PDF. A...
Hello to all. I have a problem, which I want to share with you people. I am using MSFlexGrid and I want to remove one complete row of the grid, when I click on...
Hi all, I am writing a Movie autoplayer using VB, I use Timer control to check if the time is met the preset Time. If the time met the preset time, then play...
Hi Friends!!! our client is looking for VB professionals for its operations in Bangalore. the Requirements are : 1) Developer: VB/SQL VB, SQL Server 2000,...
you r looking for this code????????????? Private Sub Text1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) Text1.Text = "hi" End Sub ...
Hi All! I want to query from a table in Parametric style. the below code demonstrates query string that i want to apply to my code (strTemp is a string that...
you have to use the selstart property to know where the cursor is, like this: I used another textbox to choose the text to be added to the text1 Private Sub...
Hi Nasser, Try this statement. strSQL = "select * from customer where customerName='" & strTemp & "'" With Regards, V.P.Rajkumar HCLP. ... From: Nasser F...
V.P.Rajkumar
raj@...
Mar 3, 2004 1:39 pm
14605
Hi Again! I think that i am not defined my objecs correctly!!! plz see the below code : Dim strTemp As String Dim tempRs As New ADODb.Recordset Dim tempCmd As...
With tempCmd .ActiveConnection = mydbCon .CommandType = adCmdStoredProc .CommandText = strSQL ==> This line is wrong End With you have to put the name of the...
Hi Nasser, Run the following instead of yours. Dim strTemp As String Dim tempRs As New ADODb.Recordset Dim tempCmd As New ADODb.Command Dim strSQL As String ...
Karthikeyan Muthurajan
mkarthik@...
Mar 3, 2004 2:05 pm
14608
I have just started using Visual Basic and i was wondering if it is the right programming language to start out in?...
I've got a listbox which I fill at runtime using .additem, but I'd like to highlight a few entries in the list that require special attention from the user. Is...
you can use a trick, with listbox you could have various selected items so you could use this property to highligth the entries you need Nuno Oliveira. +351 21...
Johnny, Thanks for the code. I was using the button object and not the form, to when it was not visible the 'mousemove' event was not available to make the...