all groups > vb.net > may 2004 > threads for saturday may 8
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
Inserting A New Record
Posted by Curt Emich at 5/8/2004 9:30:08 PM
Can someone tell me specifically what's missing in this code so that it
won't write the record into the database? Please, no references to lengthy,
bloated, meandering articles telling me how to make a watch when I'm merely
asking what time it is.
Dim thisDataAdapter As OleDb.OleDbDataAda... more >>
Invalidate() compared to Refresh()
Posted by SamSpade at 5/8/2004 8:39:36 PM
picDocument is a picturebox
When I do picDocument.Invalidate() the box paints.
But if instead I do picDocument.Refresh() the box does not paint.
What does Refresh do. I guessed it did an Invalidate and an Update.
Can someone shed some light?
Thanks
... more >>
One Control on several Tabpages
Posted by Holger at 5/8/2004 6:19:15 PM
Hi,
I've designed an application with a TabControl with several tab-pages. =
There is one control on tab-page 1 (a combo-box), which I'd like to see =
(and handle) on some of the other tab-pages too.
I wonder if somebody could give me a hint how I could accomplish that.
Thanks in advance... more >>
Get Names of Tables in Database
Posted by Gavin at 5/8/2004 6:16:03 PM
How do I, in VB get the names of all the tables in an Access data bas
Also, how do I programatically get all the field names in a specific table
Much appreciated.... more >>
International Number Formatting
Posted by Steve Peterson at 5/8/2004 5:41:52 PM
Hi
I have an app where I have to deal with both Spanish & American formatting.
I have a string that represents a number that I need to convert to Int32
before I enter it in the database. The string can be any number, for
example, "1,355" (American style) or "1.355" (Spanish style) . I know co... more >>
The selected file is not a valid VS solution file-error message
Posted by Lance Geeck at 5/8/2004 1:42:19 PM
I have just installed the Fitch and Mather 7.0 demo that comes as an =
example in VS. When I try to open the Fitch and Mather 7.0.sln file, =
it gives me the following error:
The Selected file is not a valid VS solution file.
Then it shuts down. The same happens to many other samples I have... more >>
IsDate problems
Posted by Andy Holliman at 5/8/2004 12:11:29 PM
Why does IsDate("01 02 03 12 2003") return true and CDate("01 02 03 12 =
2003") return "1 12 2003" ?=20
Thanks Andy... more >>
Method Execution from one form to another... Child to Parent...
Posted by Anthony Nystrom at 5/8/2004 10:06:03 AM
Thanks for the response to my other question... What would be the easiest way to execute a method in a mdichilds mdiparent form?... Basically call a public method exisiting within the mdi parent from the child
Thanks again
Anthony... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
How to return array of object
Posted by Ali at 5/8/2004 9:41:04 AM
hi i need to send some data to the function and want to return array of object bac
lik
dim obj() as myclass=AddIt(i,j
i dont know that is write syntax or no
public function addit(byval i as interger, byval j as integer) as myclas
dim obj(20) as myclas
obj(0).additem( i,j
obj(1).additem(i,j
... more >>
How to create collection object with vb.net
Posted by Khan at 5/8/2004 9:31:02 AM
hi i know to create collection of object with vb
but dont know how to do that thing using vb.net
thanks... more >>
populate listbox
Posted by Mike at 5/8/2004 9:20:30 AM
How can i populate a list box from a text file?
I create a list of files within a text file and I want to populate the list
box with that list to allow the users to select the web server to test
against.
how can i do that?
... more >>
Connecting to mysql
Posted by dennis.claes NO[at]SPAM skynet-dot-be.no-spam.invalid at 5/8/2004 8:58:48 AM
Hello, I'm trying to connect to a mysql database. I have already
taken these steps:
1) downloaded and installed odbc_net.msi
2) downloaded and installed mdac_typ.exe (mdac 2.7 or something)
3) written this code:
Imports System.Data.Odbc.OdbcConnection
Public Class Test
Inherits Sys... more >>
DNS problem
Posted by Neil Cooper at 5/8/2004 8:51:04 AM
H
I have a list of ip addresses that i need to return the host name's from a dns server , i can find loads of code for host name lookup which returns an ip address , but none for an ip lookup
Does anybody have any idea
Regard
Neil... more >>
how to initialize array of object with vb.net
Posted by Mike at 5/8/2004 7:11:02 AM
I am doing vb.net programming
my problem is
dim myobject() as myclass
i am craeating dynamic array of my object and later i am specifing length of array like
set myobject=new myclass()
redim myobject(TotalLength)
i dont know is that correct sentence i am using cos i am new to vb.net
thanks... more >>
Decimal To Binary Function Does Not Work
Posted by WStoreyII at 5/8/2004 2:51:03 AM
I am using the following sub but i am getting inaccurate output
Public Function Convert(ByVal Base As Integer, ByVal Number As Integer) As Strin
D
If Not Number / Base = 0 The
Convert &= (Number Mod Base).ToStrin
Number = Number / Bas
... more >>
Run a batch file by passing parameters with in a button click
Posted by sukanya s via .NET 247 at 5/8/2004 1:44:55 AM
(Type your message here)
--------------------------------
From: sukanya s
i am doing a project in asp.net (web application).Can anyone please tell me how to run a batch file within a button click event,also i need to pass parameters from my application to that batch file.Very urgent.Kindly re... more >>
Question about Listbox
Posted by Menu Chen at 5/8/2004 1:36:03 AM
See the code below,why my listbox can't refresh after my do the RemoveAt attribute in the event of Button1_Click
I have used listbox1.refresh() and listbox1.update() ,but they didn't work
any ideas,Thank you for your hel
Private A As New ArrayLis
Private Sub Form1_Load(ByVal sender As... more >>
How Can You Create A DLL In VB.NET For VB6?
Posted by Phil Galey at 5/8/2004 12:00:00 AM
Is it possible to create a DLL from VB.NET that is referenceable from VB6?
If so, how? I tried creating a Class Library project. It can be referenced
fine from VB.NET, but not from VB6. Thanks.
... more >>
|