all groups > dotnet windows forms > september 2004 > threads for friday september 10
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
Nested VS Style Groupboxes broken in 1.1 SP1?
Posted by darkmark at 9/10/2004 7:31:04 PM
After upgrading to 1.1 SP1, any VS-enabled groupbox that is inside another
has its text all screwed up.
See what I mean here:
http://www.neowin.net/forum/index.php?act=Attach&type=post&id=584536361
Is there any way to fix this?... more >>
Solution: Stop validating if Cancel button Clicked
Posted by jbyy4u NO[at]SPAM yahoo.com at 9/10/2004 5:27:13 PM
OK, this was my setup/problem. I had a form with initially 1 textbox
and a cancel button enabled. If I entered any text into the text box
and then clicked on the cancel button or hit tab the validation event
would fire. If a user entered tab I wanted to go ahead and
validate...if they clicked... more >>
VB 6 Picture to .Net Image?
Posted by Daniel Friend at 9/10/2004 4:35:10 PM
I have an active x control the returns the vb 6 property PICTURE, for some
reason I can not put it into a .net PictureBox.
NetImageBox.Image = VidCap1.Picture
Does anybody know how to convert to .net?
Thanks,
Dan
... more >>
Datagrid that looks like 'Properties' windows in VS.Net
Posted by Brett Robichaud at 9/10/2004 2:41:42 PM
Can anyone point me at some sample code that creates a datagrid that looks
and acts something like the 'Properties' window in Visual Studio .Net?
Specifically I'm looking for a grid that has two columns where col1 is not
editable. Ideally col2 would support a number of different controls but I
... more >>
Replace Default Context Menu for Titlebar
Posted by Jason at 9/10/2004 12:27:30 PM
Can I replace the standard Restore, Move, Size, etc. context menu that
appears on the titlebar with my own?
- Jason
... more >>
Multiple occurences of same code
Posted by Rob Oldfield at 9/10/2004 9:32:06 AM
I have an app that seems to be fine at the moment, but I'm a little worried
that I'm setting myself up to run into a brick wall. The basic outline of
the code is that a FileSystemWatcher keeps an eye on a folder, when a file
appears, it gets processed. Processing takes around 5 seconds.
My p... more >>
File is used in another process
Posted by Kashif Javed at 9/10/2004 9:14:25 AM
Hi there
My small OCR program is written in VB .NET. The main procedure uses the
FSO and scans a folder for image files and then send each file name to a
Function which does the OCR using MODI and extracts the text out of
that image file and returns the extracted text to the main procedure.
... more >>
validating user input in a datagrid
Posted by mark13 at 9/10/2004 6:35:01 AM
Hello everybody,
I looked all day for a solution, but I couldn't find one.
This is my problem: I have a datagrid populated out of an XML file. There's
a column with values that can be modified and another two columns that
contain the minimum and maximum allowed values.
What I'd like to do... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Updating a simple ListBox from the DataSource
Posted by Alex Maghen at 9/10/2004 6:19:02 AM
I have a simple ListBox "LB" and an ArrayList "TheList". I load the ArrayList
with a few items and then do
LB.DataSource = TheList;
LB.DisplayMember = "XXX";
LB.ValueMember = "YYY"; // or whatever.
Everything works fine and my values are displayed.
BUT, if I then add more items to my Ar... more >>
Reading Combo Boxes
Posted by Jazzkt at 9/10/2004 4:35:08 AM
Helpers,
I have an application to which I added a form (Add New Item) with combo box,
a text box and some check boxes.
Inside the OK_Button handler method, I can read the text displayed in the
text and combo boxes after converting the strings from managed to unmanaged.
However, I am unable ... more >>
Problem getting value from combobox and late binding
Posted by moondaddy at 9/10/2004 1:05:14 AM
using vb.net 1.1 I have a combobox which I'm trying to get the selected
item's value. the problem is that this class uses Option Explicit On and
Option Strict On so the following line gets a compile error:
m_GoToID = CType(cmbGoTo.SelectedItem.row(0), Int32)
with the blue squiggly under c... more >>
saving file to disk
Posted by Asha at 9/10/2004 12:01:01 AM
gettings, how can i allow a user to save an image file into the physical
disk? the file comes from the screen capture and i want it to save into the
disk automatically. how can this be done?
yours truly
... more >>
|