thanks, Iam using VB 6.0 ____________________________________________________ Yahoo! Singapore Answers Real people. Real questions. Real answers. Share what...
what is component one, as I know there are no grid in standar vb can do this job thanks ____________________________________________________ Yahoo! Singapore...
hi, I have some questions on these 2 contols in VB. Both controls used to play a video file in VB project. 1. Display Mode As information, Media Player has a...
I am using data grid in my project but data grid is not supporting mouse middle scroll button. How to support mouse scroll button to scrolling data using...
I wouldn't try to program the middle mouse button because it is highly unlikely that your users will have that button on his mouse. They haven't made 3 button...
I made a listbox and set its style to checked. I can't seem to see any way to programically check or uncheck an individual item in its list. I know in a VB...
... In VB6, the ListBox control has a Selected property that takes the item's index as a parameter. eg. Private Sub Form_Load() List1.AddItem "thing" ...
Hi Anthony, ... Every mouse I've used for the last decade has had at least 3 buttons, and pretty much every MS mouse still in production has at least 3 buttons...
Michael, I created an ActiveX Control for plotting. This allows me to have multiple plots in one program without having to program each plot individually....
Anthony, The property you are looking for is Selected(). For example, List1.Selected(1) = True will put a check mark next to the second item on the Listbox. ...
Hi Can anybody help me on wildcard search in VB.06. Database have two fields txtpwd and txtuser. txtUser field has iali1, iali2, iali3... records When i'm...
Hi In SQL Server Or Oracle ("SELECT * FROM tbllogin WHERE txtUser LIKE 'ial%'") But In Access ("SELECT * FROM tbllogin WHERE txtUser LIKE 'ial*'"). Thanks ...
I want to store my data drid details in my database for the Stock inventory program Please help me how to input the datas and link the grid with database...
In my opion, the easiest way to use a DataGrid in VB6 is with an MS Access database. I would not recommend ac Access database for large projects, but to learn...
Thanks Tim its working fine now... ... From: Timothy Rupp <tim.rupp@...> To: vbhelp@yahoogroups.com Sent: Thursday, May 10, 2007 5:17:32 PM Subject: RE:...
I need to know how I can from a subform in Access select a "building name"(from the table 'Building') and have the Building Id (unique number) tied to that...
Are you doing this all from MS Access? If so, then doing what you want is rather straight forward. You will need to create an "On Update" event. Within the...
... large ... (OLEDB) ... the 3 ... click ... your ... ok ... will ... VB6 ... yuo ... add ... DataGrid ... Thanks for u message That right But I am doing my...
Dear Member, I need you help. I want to write a VB program that can monitor functionality of external program in running my computer. suppose some program...
Just thought I would share my recent experience with Vista and VB6 We have a pretty complex app that uses a lot of the Pro controls plus a bunch of 3rd party...
Julian Holt
jholt@...
May 17, 2007 7:16 am
15250
Hi, Does your app use SendKeys at all ? I heard that there are problems with that in Vista. Rob...
Hi Rob Without looking at the code BUT knowing the 'ahem' shortcuts I use.... I bet the answer is a resounding yes :-) For the next rev I may look at dumping...
Julian Holt
jholt@...
May 17, 2007 9:48 am
15252
What is the simplest, cleanest way to set up and then connect to a remote database? I have control of the windows-based webserver....
Hi Matt, ... Use a DSN-less ADO connection: '// ======================================================== '[Variables] Public cn As Connection '[Constants] ...