all groups > vb.net controls > april 2007
FileSystemObject & Progressbar?
Posted by Joe at 4/30/2007 5:04:21 PM
I am using the FileSystemObject in a VB2005 project to copy Folders,
SubFolders and files.
I would like to know if there is a way to use a progress bar to show the
progress of the copy
process when using the FileSystemObject copy Folders, SubFolders and files.
If so, could
someone give me ... more >>
Possible to call methods 2 levels up the inheritence tree possible(not just 'MyBase.X()''
Posted by Jack at 4/26/2007 7:07:36 AM
Hello,
I have a 3-level class hirarchy:
1=Grandparent
2=Parent
3=Child
The Grandparent has a method called OnPaint which I want to override
from the Child class. I can do this, but how can I call the
Grandfather's OnPaint() method inside this newly overrided one in the
child class. I c... more >>
Crystal Reports in VB.net 2005
Posted by Brad Pears at 4/19/2007 5:01:42 PM
I have a vb.nrw 2005 project and jhave created a new report. This is the
first time I have ever used Crystal.
So, once I have my Crystal Report designed,
1) How can I preview it with live data from the actual datasource I selected
when designing the report?? Now, when I sleect preview from... more >>
How do I handle HTML button onclick event through AxWebBrowser control...
Posted by hzgt9b at 4/16/2007 10:06:37 AM
Using VS2003, VB.NET,
I have a windows app the has a AxSHDocVw.AxWebBrowser control. One of
the pages that gets loaded in the AxSHDocVw.AxWebBrowser control has a
button that the user clicks to submit information... I need my VB.NET
winsdows application to reeact to this HTML onclick event. I'm ... more >>
Deleting rows in a multiselect datagridview
Posted by Michel Vanderbeke at 4/8/2007 7:44:15 PM
Hello,
When I trie to delete more than one row in a multiselect Datagridview, only
one row is deeleted.
My code does not seem to work.
Dim rij As DataGridViewRow
For Each rij In dgvToegangstickets.Rows
Select Case rij.Selected
Case True
dgvToegangstickets.Rows.Rem... more >>
Content of the cells in a datagridview
Posted by Michel Vanderbeke at 4/8/2007 7:39:21 PM
Hello,
I fill a DatagridView through code as follows
Datagridview.Rows.Add(Textbox1.Text, CType(sender, Button).Text,
Textbox2.Text, Textbox1.Text * Textbox2.Text)
In Textbox1.Text and Textbox2.Text are numbers.
How can I access the content of each cell in the DatagridView?
How can I ad... more >>
Linked control
Posted by Michel Vanderbeke at 4/8/2007 7:29:04 PM
Hello,
I designed a control, which contains some Buttons and a Textbox in order to
have a numeric pad.
I use that control in more than one project, so the control is linked to my
different projects.
After placing the linked control on a form, the control is complete (all
controls are vi... more >>
Listbox and Combobox: SelectedIndex
Posted by Michel Vanderbeke at 4/8/2007 7:19:45 PM
Hello,
On a form, I fill a Combobox and a Listbox with data through code.
Then I set Listbox.SelectedIndex = 3 and the Combobox.SelectedIndex = 4
In the Listbox, the correct item is highlighted, but in the Combobox, the
desired item does not appear in the Text-area of the Combobox.
Wha... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
KeyPress Event
Posted by Jim NO[at]SPAM aol.com at 4/6/2007 9:52:26 AM
IS there a way to get acustom control to detect a keypress event if
its only components a System.Windows.Forms.CheckBox which does not
have a keypress event
One more thing I want it to detect if the ENTER key is pressed... more >>
dataviewgrid
Posted by Brad at 4/5/2007 6:56:07 AM
ok,
vs2005 and vb.net
i have an unbound datagridview control
i am programatically adding data to it
the DataGridView.Rows.Add() function does not always add rows to the end of
the grid display and i want it to
when i ther using the .Insert(x) i always get an error that i can not inser... more >>
DataGrid
Posted by Brad at 4/4/2007 1:18:01 PM
im new to vb.net
using vs2005
want to bind grid to array
is it possible?... more >>
Adjust screen resolution
Posted by Michel Vanderbeke at 4/1/2007 12:00:00 AM
Hello,
Can someone help me with tips and code on how to make a VB.NET 2005 program
fit to any screen resolution, the user might have.
Is there a standard resolution in which I have to make the program and what
is the code to implement, so all controls
can be resized through code to fit on ev... more >>
|