all groups > vb.net > february 2006 > threads for sunday february 5
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
Automated Refactoring w/ CodeDom and VBCodeProvider...
Posted by jack at 2/5/2006 10:07:33 PM
Trying to make a utility that
- Reads a VB.Net source file
- Parses it into it's constuent parts
- Evaluates and modifies as required
- Saves the source
I thought that the CodeDom and the VBCodeProvider would be the way to
go.
I can gen code and compile it, but I can not figure out how ... more >>
Strong name signing
Posted by Michael at 2/5/2006 9:37:22 PM
Help please
Trying to strong name sign my project within the Assembly using the
KeyFileAttribute with a sn generated key and getting an error message that
one of the referenced dll's (Interop.DAO.dll) is not also strong name
signed. Apparently to sign a project all referenced assemblies su... more >>
Automatic type casting?
Posted by Ben R. at 2/5/2006 7:56:27 PM
How does automatic type casting happen in vb.net? I notice that
databinder.eval "uses reflectoin" to find out the type it's dealing with.
Does vb.net do the same thing behind the scenes when an invisible cast is
made? Is there any reason why one would use databinder.eval while in VB.NET?
I c... more >>
TreeNode.Remove(Boolean notify) exception
Posted by Boni at 2/5/2006 7:26:44 PM
Dear all,
I have a tree node inherited from TreeNode class. Sometimes when I call
Nodes.Clear() I get following exception.
I use .NET 2.0.50727.
Seems to be MS bug?
Any ideas?
Thanks
Boni
System.NullReferenceException: Object reference not set to an instance of an
object.
at System.... more >>
DataGridView: dynamic font size change
Posted by Lennart Nielsen at 2/5/2006 3:47:00 PM
How do you change the font size dynamically in a single selected cell?
Lennart
... more >>
Reference To Controls On A Form
Posted by 97T at 2/5/2006 3:28:16 PM
Well this is still bugging me. I know there are other ways around this, but
for a number of reasons I would like to be able to do this one simple thing.
I have a form with a number of controls on it.
I have created these controls in the form design tool, and given them unique
names.
I ... more >>
Insert related tables into database.
Posted by kashifahmed.bse.mg NO[at]SPAM gmail.com at 2/5/2006 3:17:50 PM
Hello All,
I would like to insert dynamically created related tables by using
datatable collections in ado.net. So can anyone figure out which
procedure is usefull to do this task. Example will show on requirement.
thanks in advance
KASHIF AHMED
... more >>
Download free ebooks
Posted by elnahrawi at 2/5/2006 1:23:39 PM
Programming | Mobile Computing | Oracle | Marketing |
Design Graphics | Computer | Security | Networks
Enjoy!
http://books-download.com/
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
DateDiff(DateInterval.DayOfYear
Posted by Price Brattin at 2/5/2006 12:10:27 PM
Why is the DateDiff function in the following code returning zero?
Dim FileDate, TransmissionDate as Date
Dim TranDay, FileDay, DayDiff as Inteter
TransmissionDate = #2/5/2006 1:57:56 PM#
FileDate = #2/4/2006 4:49:02 PM#
TranDay = DatePart(DateInterval.DayOfYear, TransmissionDate) 'Returns 36... more >>
Listbox DataSource Design binding problem
Posted by ramses1 at 2/5/2006 11:02:32 AM
I can't see my table row members in the listbox?
I made the oledbconnection, oleDBDataAdapter and defined a DataSet:
Me.ListBoxLibraries.DataSource =
Me.LibraryConnectionsDataSet1.LibraryConnectionsTable
Me.ListBoxLibraries.DisplayMember = "Database"
Me.ListBoxLibraries.Locat... more >>
Titlebar of MdiChild form in MdiParnet's Panel
Posted by VB Newbie at 2/5/2006 9:00:16 AM
I've put a MdiChild form into the Panel of MdiParent form.
But the titlebar of MdiChild is still Grey in color even I focus or activate
it.
Here is my code:
Dim frmNew As frmChild = New frmChild 'frmChild is the child form
frmNew.MdiParent = Me 'Me is the parent form
frmNew.Parent... more >>
Save changes to textboxes bound to Dataview?
Posted by jasmith NO[at]SPAM bigriver.net at 2/5/2006 8:54:02 AM
I can't seem to get this to work! Basically, I have filterd a dataview
and have bound the text boxes on my form to the dataview:
dvEqDetails.Table = dsUpdateEq.Tables("tblControlData")
dvEqDetails.RowFilter = "txtControlNumber = '" &
Me.txtControlDisplay.Text & "'"
Me... more >>
Class as an array
Posted by Glenn Lacampuenga at 2/5/2006 8:36:26 AM
Still fairly new to vb.net and was wondering if it's possible to Dim a class
as an array.
And if so how do i store data to it. I have listed my code below.
Here's my code
Public Shared Function LookupEmployeeByLastName(ByVal EmployeeLastName As
String) As Employee()
Dim EmployeeDS As Ne... more >>
Visual Basic 2005 Jumpstart
Posted by elnahrawi at 2/5/2006 2:14:46 AM
Download ebook
http://books-download.com/?Book=1487-Visual+Basic+2005+Jumpstart
Okay, all you VB6 developers--time's up. As of March 2005, Microsoft no
longer supports this version of Visual Basic. And you can't blame them.
Three years ago, they introduced the .NET Framework--an elegant,
powe... more >>
Download free ebooks
Posted by elnahrawi at 2/5/2006 2:12:28 AM
Download free ebooks
Reply | Reply to Author | Forward | Print | Individual Message | Show
original | Remove | Report Abuse
Books Download | Programming | Mobile Computing | Oracle | Marketing |
Design Graphics | Computer | Security | Networks
ALL FOR FREE
Enjoy!
http://books-download... more >>
Combobox in VB2005
Posted by Martin at 2/5/2006 12:00:00 AM
Hi all!
In VB6.0 A combobox had items, which basically were the description and
ItemData which could be used to create a link to a record, that is if the
recordset had a numeric key.
I was hoping that in VB2005 this would have been changed to an alphanumeric
itemdata, so that no longer n... more >>
newbie problem with array
Posted by eejit at 2/5/2006 12:00:00 AM
This is VBNET2005
I feel like I'm missing something really obvious here.
I keep getting the error "Value of type 'string' cannot be converted
to '1 dimensional array of string'"
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e
As System.EventArg... more >>
|