all groups > vb.net controls > february 2004 > threads for february 8 - 14, 2004
Filter by week: 1 2 3 4
incrementing Time and Date values via command button
Posted by AW at 2/14/2004 8:45:29 AM
Hi.
I have some code (below) which cycles through each item in a date/time
string showing each one, day-then month then year etc.... in turn in a text
box, following the click event of a button(cmdYSelect).
Is it possibbe to get each of these items to increase/decrease by 1 with a
click of ... more >>
Borderles Forms
Posted by Dino Buljubasic at 2/13/2004 6:36:13 PM
Hi,
I am using borderless forms thrughout my project and becouse of that I
have to manage on my own moving, closing etc of each borderless form.
Since the forms don't have title bar anymore, I have to provide my own
title and also application icon which I do.
My quistion is how can I make... more >>
Bold AND AlignRight in DataGridCell
Posted by DraguVaso at 2/13/2004 3:34:23 PM
Hi,
I'm able to set the Font in a Datagrid-Cell to Bold with
g.DrawString(Me.GetColumnValueAtRow(source, rowNum).ToString, e.TextFont,
e.ForeBrush, bounds.X, bounds.Y)
and to Align the text to Right with
MyBase.Paint(g, bounds, source, rowNum, e.BackBrush, e.ForeBrush,
e.AlignRight)
But... more >>
Multi-column combo boxes dont exist in vb.net ?
Posted by Mike at 2/13/2004 1:26:57 PM
Hi
We have been programming in MS-Access for years and have made extesnive us
of the multi-column combo box control.
We have begun moving our application over to vb.net but we cannot find any
control which is similar to the multi-column combobox control.
Is this correct ?
If so how can... more >>
Serial Ports
Posted by Randy at 2/13/2004 11:54:14 AM
Can someone point me down the path to serial port connection? I would to
read/write to a Comm port with VB.Net. Wasn't there a control in VB6 for
this? I don't see an equivelent in VB.Net.
TIA,
Randy
... more >>
What type of object is it?
Posted by Michael Murschell at 2/12/2004 8:30:55 PM
In vb, how do I find out what type of control an object is? In other words,
I want to find out if the Object LastName is a textbox or an image object.
... more >>
No images on ToolBar Buttons
Posted by David Pendleton at 2/12/2004 7:53:37 PM
Hello all.
For some unknown reason, my ToolBar has stopped displaying images on it's
Buttons.
The ImageList contains images, is associated with the Toolbar and each
button shows its correct image in the Property explorer and when viewing the
Form in design view.
When I run the app, eithe... more >>
Issue in Listview control..
Posted by Ira Siyal at 2/12/2004 2:56:21 PM
Hi
I had a project in VB6 which I upgraded to VB.NET recently.
In the app, I am facing some issue with listview control. In the earlier
app, I have set the Icons in listview through an imagelist.
but i notice that while i execute the project in .net, the step that sets
the icon prop. thro... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Changing Time/Date values
Posted by AW at 2/11/2004 9:21:41 PM
Sorry for lack of Subject in previous post.
"Al@n" <not@thisdomain.co.uk> wrote in message news:...
> I have a text box populated by:
>
> Sub XYZ()
>
> Dim MyDateTime As Date = Now
>
> Dim MyStr As String
>
> MyStr = Format(MyDateTime, "dd/MM/yyyy")
>
> txtTime.Text = MyStr & " " & T... more >>
Connection Property error
Posted by Taishi at 2/11/2004 12:03:12 PM
ExecuteReader: Connection property has not been initialized.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.
Exception Details: System.Invalid... more >>
Adding and Substracting colors
Posted by Dino Buljubasic at 2/10/2004 5:28:15 PM
HI,
I would like to be able to add/substract colors the way so that if a
control, let say a button overlaps another button, the overlapping
area gets shaded darker than button so that the borders can be
distinguished.
I'd like to be able to overlap several buttons for example and get
overl... more >>
Saving Textbox Value Changes
Posted by Al NO[at]SPAM n at 2/9/2004 3:33:50 PM
Hi.
I'm a newcomer to the discipline of programming, having done a little with
VBA, and now trying to learn VB.net and create a stand alone application.
I'm hoping that someone can help with the following issue which I'm sure is
quite a basic one for more experienced developers.
I have a pa... more >>
Hide Form Updating
Posted by Jim Chapman at 2/9/2004 10:39:19 AM
I have a routine that adds and removes buttons and controls to a form. I
don't like the way they flicker on and off the screen.
The TreeView control has a method, BeginUpdate, which disables any redrawing
of the tree view.
Is there a similar method for forms?
Thanks
... more >>
Problem with Toolbar Custom Control
Posted by abi at 2/8/2004 9:10:50 PM
Hi,
I created a toolbar control (vb.net) that I want to implement in my windows
app. I was able drag/drop the control and onto my form.
I am however unable to create the buttonclick event handler ...
Private Sub ctlToolBar_Click(ByVal sender As System.Object, ByVal e As
System.Windows.Forms... more >>
|