all groups > vb.net > january 2007 > threads for tuesday january 23
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 31
Error updating new column...!
Posted by explode at 1/23/2007 10:22:56 PM
My table has 5 columns: Broj iksice, Prezime, Ime, Broj indeksa, Broj
pohadjanja.
This is the code in the dataset designer VB made it by it self:
Private Sub InitClass()
Me.columnBroj_iksice = New System.Data.DataColumn("Broj iksice",
GetType(Double), Nothing, System.Data.MappingT... more >>
The amazing, vanishing programmatically-entered data in my DataGridView
Posted by Daniel Manes at 1/23/2007 7:03:47 PM
I'm trying to automatically enter some data into a row when the user
first enters the row. So I created a RowEnter event handler that
contains several statements like the following:
_dataGrid.Rows(rowIndex).Cells(columnName).Value = newData
When I do this, data actually shows up in the row ... more >>
FTP Upload Download to/from a web site
Posted by vbnewbie at 1/23/2007 6:14:36 PM
Hi all,
I need to include an upload/download feature to my VB 2005
application.
Files will be uploaded and downloaded to and from a web site.
Can someone guide me towards some articles or code.
I looked through quite a bit of stuff, but it all seems rather old.
I am ready to bet there are s... more >>
how can i create a multi-line textbox dynamically?
Posted by BillE at 1/23/2007 4:06:54 PM
I need to create a multi-line label dynamically.
Since labels aren't multi-line, I'm creating a textbox and making it look
like a label with the multiline property set to true.
I want to increase the height of the textbox only if there are multiple
lines, and leave it at the default height... more >>
a few noob vb.net questions
Posted by jobs at 1/23/2007 3:25:36 PM
Three noob questions. Please help.
1. Is there a way to have arguments on subroutine that are optional?
2. Say I need to convert datetime to string..in this format :
2006-09-07 23:00:00.000
datef.tostring()
produces:
'1/1/0001 12:00:00 AM'
I need it to produce something like... more >>
Conversion from a base class
Posted by Michael D. Ober at 1/23/2007 3:21:14 PM
I have a class:
Private Class ClientList
Inherits StringCollection
Public InternalUser As Boolean = False
Public Shadows Function Contains(ByVal ClientNumber As String) As
Boolean
If InternalUser Then Return True
Return MyBase.Contains(ClientNumber)
E... more >>
string.compare
Posted by Smokey Grindel at 1/23/2007 1:15:39 PM
Is it safe to assume string.compare is not case sensative? also... it can
detect phrases with spaces in it? I ask this because I had a phrase i was
looking for in a text file i loaded into a string and used that and it
failed to find it but notepad can... trying to figure out the cause here...... more >>
Windows Forms Binding to HTMLElement Events
Posted by AMDRIT at 1/23/2007 12:35:59 PM
Hello Everyone,
We have a production WinForms Application that uses a WebBrowser to display
readonly data. In the html document we have SPAN elements that facilitate
menu selections. We also have a TABLE object that is bound to an XML Data
Island, each row of the table has an option to "V... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Confused
Posted by at 1/23/2007 12:25:29 PM
I have a vs.net 2003 sample app that I created . Very small, simply traps a
windows message through overriding WndProc . I loaded VB2005.NET express to
maybe look at buying the full version and upgrading my applications, but I
noticed there are no ovverrides / or it missing from the dropdowns ... more >>
vb2005: going with SQL server or MS Access
Posted by vbDavidC at 1/23/2007 8:36:01 AM
I am wondering if I should use MS Access or SQL server as my database.
I have a little experience programming an Access DB with VB6 (DAO/ADO).
I am now starting over with VB2005 and will be doing some DB
development. I assumed that I would stay with Access but noticed that
there is some type... more >>
Difficulties getting notification Icon to work with a Service
Posted by Brian at 1/23/2007 7:40:46 AM
hello Gentlemen,
been trying to get a shell program working where I have a Windows
service that also has a Notification icon in the system tray.....
I got this idea from microsofts Visual Basic .Net cookbook, but cannot
seem to get it to work.
Also I am using the Visual Studio 2005 not 2003... more >>
Form Size
Posted by New NO[at]SPAM earthlink.com at 1/23/2007 5:04:23 AM
This may be a dumb question but what is the largest size you would
recommend a form to be if it is designed to work in a 1024 x 768
enviroment since some peopl have the taskbar set greater then one line
BTW I am ahort of form real estate and I know that I can run the form
maximized but I want ... more >>
New columns and update problem...!
Posted by explode at 1/23/2007 2:01:44 AM
I made a procedure Public Sub Novo(ByVal nova1 As String, ByVal nova2 As
String) that creates a new oledbDataAdapter with insert update select and
delete commads. I also added that commands can change depending how many
columns are in a Table.
I add a new column with this code:
Private Sub... more >>
summing the elements of the an array
Posted by neeraj at 1/23/2007 1:37:54 AM
Hi
Can any body give me the syntax for summing the elements of the an
array , without looping
thanks
... more >>
|