thanx for ur help but i need the code in vb6.0....can anyone help me for this...i need this for my project....thanx in advance farah
farah mazhar
Posts
-
question about vb6.0..data type conversion -
question about vb6.0..data type conversioni want to convert string into byte....this can be done in vb.net..can somebody help me in doing this in vb6.0..here the simple code.. Private Sub Form_Load() Dim str1 As String Dim i As Byte i = CByte(Val(str1)) Text1.Text = i End Sub but this code still not able to convert string into byte....and still giving type mismatch error....i m unable to solve this small problem farah farah
-
right clicki know may be i am being unreasonable by asking the same question again and again but i really need the help that how can i send the right click msg out of my Vb.net application plzzzzzzzzzzzzzzzzzz farah
-
right clickyes you right i want my right click to work over the whole system through VB.net program farah
-
right clicki just want to code a right click that works the same way as normal right click funtion does that is when i right click on any control in VB.net or over any where else outside my VB.net application it performs the right click function i want to write the code in VB.net but i am new to VB.net environment so i am having problem in coding it and i am also having problem to code double click event too . farah
-
right clickhow can i send a right click event to my application and more over can i get any help how can i simulate double click event in that same application.I want help in VB.net for these events any clue how can i impliment them farah
-
can anybodyhelp me with the right click problemi want to send the right click sub routine that i've formulated, through send message funtion to windows in vb.net so that it can work same as normal right click does what i am doing is Public Sub RightClick() RightDown() RightUp() End Sub Public Sub RightDown() mouse_event(MOUSEEVENTF_RIGHTDOWN, 0, 0, 0, 0) End Sub Public Sub RightUp() mouse_event(MOUSEEVENTF_RIGHTUP, 0, 0, 0, 0) End Sub Public Sub ClickButton(ByVal ButtonHandle As IntPtr) 'send the right mouse button "down" message to the button... Call SendMessage(ButtonHandle, MOUSEEVENTF_RIGHTDOWN, 0, IntPtr.Zero) 'send the right mouse button "up" message to the button... Call SendMessage(ButtonHandle, MOUSEEVENTF_RIGHTUP, 0, IntPtr.Zero) 'send the button state message to the button, telling it to handle its events... Call SendMessage(ButtonHandle, BM_SETSTATE, 1, IntPtr.Zero) Private Sub Form1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseDown RightClick() ClickButton(Windows.Forms.MouseButtons.Right) 'MessageBox.Show("show") End Sub please help me where i am going wrong farah
-
need routines in VB.net -
mouse button routines [modified]this is refrence to the mail FARAH who asked the mouse click routines.Basically I want to make a driver for my device in which i want to simulate the mouse clicks that whenever i click (Left or Right) it performs the same functions as a normal mouse does.I want the code for the left and right clicks in VB6 plz do give me code for these routines FARAH -- modified at 13:40 Monday 23rd July, 2007
-
mouse button routines in VB6how can i simulate right button click in a VB6 program plzzzzzzzzzzzzzzzzzzzz help and plz do tell how can i simulate left button click with its single click and double click properties in VB6 FARAH
-
how to send screen resolution on serial porthow to send screen resolution on serial port in VB
-
how to get screen resolution in VC++?how to get screen resolution in VC++?