all groups > vb.net > march 2007 > threads for friday march 30
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
XML Data Access
Posted by Peter at 3/30/2007 10:11:05 PM
Hello,
I must confess I am now very confused. I am simply trying to write a program
that uses data from various XML files to populate a sea of controls, and
uses them in turn to make changes to the XML files. Sounds easy, right? I'm
used to programming in VB, but this is my first foray into... more >>
Keep FoxPro Alive!
Posted by Ioannis Stefis at 3/30/2007 10:01:28 PM
This page is opened by an idea from the Visual FoxPro Spanish community,
this page is opened for doing a campaign asking to Microsoft to continue
with the Visual FoxPro development, release the full source code as Open
Source or make an agreement with a 3rd party for continued development of
fut... more >>
Fill Datagridview with rows so that it does not look empty?
Posted by Mar72Vin at 3/30/2007 8:44:00 PM
Hi All,
If a datagridview only has a few records the grid looks very untidy
because there is is lot of blank space in the grid.
Is there anyway to tell a datagridview to fill the entire viewable
area with blank rows?
cheers,
Tim
... more >>
Error handling
Posted by Michel Vanderbeke at 3/30/2007 7:49:14 PM
Hello,
In all my VB.NET 2005 routines, I already inserted a Try...Catch routine in
order to handle my errors.
Is it possible - despite the presence of the Try...Catch routine, to let the
program break on every error thus giving me the opportunity to adapt my
code?
Many thanks and greetings... more >>
Start exe in new process and pass a parameter?
Posted by Dean Slindee at 3/30/2007 7:46:08 PM
From an executable that I have running, I would like to start a different
executable, and if possible, pass it the key of the row in a table to
display upon launch. Assume that I have written both executables in VB.NET.
What would be required in the way of startup code in the called executabl... more >>
Asking Again, Why Would I Have This Runtime Error
Posted by David C. Barber at 3/30/2007 7:19:24 PM
Asking again, I've just built my first Setup-Installable VB 2005 package. I
have the full
Profession Edition VS 2005, not the Express edition, and am patched to the
current SP. It installs on the development machine (Win 2K) and runs just
as well as it does in the VS IDE. I used the Walkthrou... more >>
Datasets accross a network.
Posted by tclancey at 3/30/2007 6:22:10 PM
Hi All.
I've been trying to think of a way to pass datasets, or tables from one PC
to another.
This would be the scenario.
Client PC sends an SQL query to a 'server'.
The 'server' would make a connection to a back end database.
The 'server' would retrieve data and send it back to the cl... more >>
Why do these two methods produce diffrent output
Posted by Chad Miller at 3/30/2007 5:31:22 PM
Public mLength As Integer
Public mChannels As Short
Public mSampleRate As Integer
Public mDataLength As Integer
Public mBitsPerSample As Short
Public Sub CreateWaveHeader(ByRef sPath As String)
Dim fileNumber As Integer
Try
fileNumber = FreeFile()
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
best way to check my local area network is up and running
Posted by cj at 3/30/2007 4:07:33 PM
How would you suggest I test that my network drive is still up and
running. Right now I'm going to write to a file at the root of the
drive and then read it back in. If either the write or read fail I
figure the network is down. Any better ideas?... more >>
Raising Events
Posted by Rob at 3/30/2007 4:06:05 PM
I'm new to event processing in vs 2005 - what I'm trying to achieve is
broadly a network simulation of two workstations sending packets to each
other .
I have defined a class 'Workstation' and I was hoping to define events where
in instance A (or workstation) I could raise an event 'Send' ... more >>
newbie: RadioButton
Posted by bz at 3/30/2007 2:17:09 PM
Hi,
Sorry... for all these newbie questions but MSDN sucks nowaday... ;(
I have 5 groups of RadioButtons and each group has 10 buttons. There is no
control array. So, am I understanding this correctly that I need to have 5
x 10 = 50 If-Then-Else statements to check which RadioButtons are... more >>
Deploying the framework.
Posted by tclancey at 3/30/2007 2:15:18 PM
Hi all.
I can't find any information on the best way to include the current
Framework in my deployment, or automatically set it off if it isn't already
installed.
Can anyone point me in the right direction?
Cheers,
Tull.
... more >>
Now number to ascii string
Posted by Freddy Coal at 3/30/2007 2:12:28 PM
How convert a number for the string equivalent?
For example:
I have the number "16448", I would like take this number in a two bytes
strings, the number represent the "@@".
Thanks in advance.
Freddy Coal
... more >>
Transpernat form
Posted by yhlove NO[at]SPAM gmail.com at 3/30/2007 1:59:09 PM
Hi
I want to make a project in which only the controls will be seen.
I want the form to be transperant (include the blue title of the form
and the borders) but the buttons,TextBox,etc to be seen vy the user
(It should look like thers a "floating" buttons\textBox on the
screen...)
How can I... more >>
Enable application framework
Posted by vovan at 3/30/2007 1:56:39 PM
In a new WindowsForm project with default settings I wrote a loop:
For Each frm In My.Application.OpenForms
If frm.Name <> "MDIMain" Then
frm.Close()
End If
Next
Everything was fine until I decided to use Sub Main as Startup object. In
order to have it in the list of startu... more >>
newbie: how to use the CheckListBox
Posted by bz at 3/30/2007 10:59:30 AM
Hi,
I fill out a CheckListBox from the IDE with 10 items.
I am trying to mark the checkboxes in a CheckListBox at runtime. But... I
have absolutely no idea how to do that.
(e.g.) I want to mark the 5th and the 6th items at Form_Load.
<g> be using VB6 for 10 years and have no idea what t... more >>
DataGridView and Generic.Dictionary (VB.NET 2005)
Posted by Stephen Costanzo at 3/30/2007 10:00:51 AM
I have:
Public Class test
Private displayValue As String
Private dbType As Integer
Property Display() As String
Get
Return displayValue
End Get
Set(ByVal value As String)
displayValue = value
End Set
End Property
Property DataTy... more >>
Soap
Posted by cj at 3/30/2007 8:48:34 AM
I've got a Soap web client written in VB. I'm wondering if it would be
ok to run this same program multiple times on the same pc. Would they
get confused with which of them requested what information? I'm
guessing it would be ok but...... more >>
Custom Date Validation Check Function
Posted by John Smith at 3/30/2007 8:47:28 AM
Hello, I have a VB.NET application with a Windows form that have
several textboxes fields where I have dates entered. I would like to
do a date validation check after the the field is updated, so I' using
the leave event.
Right now I am creating a 'leave' sub for each of the fields.
However,... more >>
Lookup combobox
Posted by Rick at 3/30/2007 6:47:09 AM
VS.2005
I have several lookup combo boxes in my windows project and would like to do
a "lighter weight" binding. Currently I am using a strongly typed dataset
with a binding source as the DisplayMember and ValueMember. This seems like
overkill since I don't use much of the datatable funct... more >>
StackOverflowException in Thread
Posted by Bubba at 3/30/2007 6:22:02 AM
I've written code that uses a thread to read a 70K line CSV file one line at
a time, however, after about 9 to 10 thousand lines into the file I get a
StackOverflowException while the thread tries to update a counter.
I'm sure I'm doing this correctly but if anyone can tell me different I'd
... more >>
system.web.mail
Posted by HDI at 3/30/2007 5:26:13 AM
Hi,
How does the this work?
Can you use a valid smtp-server to send mail from 'whatever you
choose' to 'whatever you choose'?
Without checking? I Don't need to gife a username and paswoord of my
account.
Thx
... more >>
How to search for a keyword in a StringBuilder?
Posted by Laser Lu at 3/30/2007 12:00:00 AM
Sometimes, I need to do some time-consuming operations based on whether a
specific keyword was contained in a lengthy string. Then, for a better
performance, I wrapped that lengthy string into a StringBuilder.
But after doing that, it seems there's no proper methods defined in
StringBuilder f... more >>
|