Help with sorting an Arraylist that contains Structures
Thu, 21 Aug 2008 16:35:56 -0700
Ok, I give up. I can't seem to construct a decent (productive) way of
sorting my arraylist.
I have a structure of two elements:
Structure TabStructure
Dim TabName As String
Dim FullFilePath As String
End Structure
Then for example I:
Dim tab as New TabStructure
some code
Then I add "t ...
|
Expand icon and checkbox in Treeview
Thu, 21 Aug 2008 17:16:50 -0600
Hi folks.. im working with VB 2008 Express and want to make something but can't found yet a way and maybe somebody can help me
What i need is a way to change the - "icons" from the nodes to "arrows" like Explorer (in Vista) or something. I think the - are kind old
The another is that i have a node with 3 items ...
|
vb.net printing
Thu, 21 Aug 2008 14:06:01 -0700
I am new to vb.net and I would like to learn how to print from vb.net. I
would like step by step instructions one how to do this, also I know that MS
came out with printform - how would I use it. ...
|
speeding up loading records
Thu, 21 Aug 2008 16:52:06 -0400
I can't remember and can't find my notes anywhere. There were a couple
of commands that when used with I think the data adapter that allowed
for faster reading or writing of tables. I think one or both had
something to do with turning of the checking VB does to make sure the
data doesn't violate any of sql ...
|
HttpWebRequest POST problem
Thu, 21 Aug 2008 12:30:01 -0700 (PDT)
I am trying to log on to a website in order to automatically download
its files. I used to use a VB6 program that used the WebBrowser
control, but for some reason that no longer works. Now, I am trying a
VB.NET solution, and I have been encountering some road blocks.
The website requires that you enter a use ...
|
Need help with XML format in vb.net
Thu, 21 Aug 2008 12:15:27 -0700 (PDT)
I have the following code:
Dim ds As New Data.DataSet("inventory")
Dim dt As New Data.DataTable("desk")
'dt.TableName = "desk"
With dt
.Columns.Add("item")
.Columns.Add("qty")
End With
dt.Rows.Add(New Object() {"Paper Clip", 100})
...
|
Mouse Scroll Wheel
Thu, 21 Aug 2008 09:57:01 -0700
Does anyone know of a way to disable the mouse scroll wheel when a control
such as a combobox or listbox has focus? I ask this, because I have an
extremely large data entry form with vertical scrollbars. I have found that
when a user scrolls the wheel in an attempt to scroll the form down, a
combobox or li ...
|
|
|
vb.net dll that can be called by ms access 2003 - help
Thu, 21 Aug 2008 12:35:02 -0400
I created a dll in vb.net to calclulate the height of a block fo text as
follows:
Imports System.Drawing
Imports System.Math
Public Class DlnpFntCalcs
Public Function GetTextHeight(ByVal sNoticeText As String, ByVal
sFontName As String, ByVal dFontSize As Double, ByVal dClipWidth As Double)
As Doubl ...
|
sourcesafe - what version?
Thu, 21 Aug 2008 11:34:50 -0400
I'm still using VSS 6.0(d), and I haven't had any trouble with it.
I'm using Visual Studio 2005 VB and VCS, but I'm getting ready to upgrade to
Visual Studio 2008.
Is it worth getting a newer version of VSS?
I heard there might be issues with VSS and VS2008 - is this just a rumor?
thanks
bill
...
|
Passing setting a "member" to use for a variety of instances
Thu, 21 Aug 2008 07:56:01 -0700
Sorry if the subject isn't succint or even really descriptive.
Class1 will contain a Collection1 of strings as one of its properties.
Class1 will contain another property, Object1, always of a specific type.
Let's say Class1 is instantiated to make Instance1. I want Instance1 to
"know" Member1.
I need a ...
|