all groups > vb.net > january 2007 > threads for friday january 19
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
problem on getting oledbcommand worked
Posted by Jak at 1/19/2007 9:45:42 PM
I think I have set all the required parameters of the oledbcommand already,
but the procedure still refuse to proceed, it sayes that there must be one
or more parameters not set.
The following is the snippet of my codes:
'-----------------Interface----------------
Public Interface IDa... more >>
How to do COPY in VS2005
Posted by Benson at 1/19/2007 7:07:08 PM
Since there are many similar programs worked out, I want to copy a similar
program (alreay work under form inheritance) to a new one so that I can
change the new one quicker.
It is not ok to copy under Windows Explorer.
How can I do this in VS2005?
Benson
VS2005, VB2005
... more >>
Abort Forced Reboot
Posted by PooFlinger1 at 1/19/2007 6:17:38 PM
I am writing an application which will install a number of updates
(silently) as well as installing Norton and Spysweeper silently.
Problem is that after spysweeper installs, it performs a forced reboot
of the PC. How would I abort the FORCED shutdown?
... more >>
Code is reexecuted when the user clicks Refresh
Posted by Nathan Sokalski at 1/19/2007 4:08:47 PM
I have a page which allows the user to send emails. After they click the
submit button, I display a confirmation message. However, if the user clicks
the browser's Refresh button once the confirmation message is displayed, the
email is sent a second time (or a third, fourth, fifth, etc.). What... more >>
Do not indirectly expose methods FxCop Error
Posted by John Wright at 1/19/2007 4:08:41 PM
I ran FxCop against a program and was pleased with the security review
except I get the following error:
Do not indirectly expose methods
How would I fix this code so this error goes away. I think I understand the
error, but not the fix. I really need to fix this as it is called from
o... more >>
Using Regex Replace - multiple occurances
Posted by RSH at 1/19/2007 1:46:36 PM
Hi,
i have a situation where I have a string read from a file. The string
format looks like this
<HEADERROW> dynamic number of characters </HEADERROW>
dynamic number of rows
<HEADERROW> dynamic number of characters </HEADERROW>
dynamic number of rows
<HEADERROW> dynamic number of charac... more >>
Using scope in metods (Using)
Posted by Olan Meier at 1/19/2007 1:41:10 PM
Hi,
I like to define scope in a method to ensure that variables donøt get used
more than once, and that things are nicely disposed. I use the Using-keyword
most of the time - but what do one use if theres no logical way to do Using
(you can't say Using tmp as string=""). I do a "If True - E... more >>
Deserializing a class
Posted by kbodily NO[at]SPAM charter.net at 1/19/2007 10:36:45 AM
If I have a class I can serialize it using the following code....
visual basic code:
With myClas
.V1 = Me.TextBox1.Text
.V2 = Me.TextBox2.Text
.V3 = Me.TextBox3.Text
.V4 = Me.TextBox4.Text
End With
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Questions about building a data engine
Posted by AMDRIT at 1/19/2007 10:07:29 AM
Occasionally I try my hand at a simple data storage engine. Today I ran
across an article on the web
http://msdn2.microsoft.com/en-us/library/aa289151(vs.71).aspx, and it got me
thinking again. There doesn't seem to be a definative source, at least on
in layman terms, on this subject.
... more >>
Form inheritance for different projects under a solution
Posted by Benson at 1/19/2007 9:54:53 AM
I construct some base forms so that we can inherit from them in coding
different types of programs (eg. Master program, Inquiry program). I know
under a solution (*.sln) in VS2005, we can have more than 1 project. I
placed the base forms under one of the project and found that they cannot be
... more >>
Importing .dat file
Posted by Rnt6872 at 1/19/2007 9:44:15 AM
Hello All,
I have a file that I retrieve like this:
7102702007010822222220656017000840314RDSSAL00000011351770610010059900
7102702007010822222220656995000840314RDSSAL00000060077510610010010000
7102702007010822222220657588000840314RDSSAL00000060014810610010079900
71027020070108222222206583150... more >>
Is this possible with Reg Expressions?
Posted by Kyle at 1/19/2007 9:02:09 AM
Hello, I am trying to replace all incidences of (Pattern1) NOT
immediately followed by (Pattern2) with ReplaceText. Is there any way
this can be done with RegExps? I can't figure it out.
What I've got is a log file where the first characters of every row is
a datetime stamp in a fixed format... more >>
Listview set spacing in Compact Framework cannot work
Posted by jason.yfho NO[at]SPAM gmail.com at 1/19/2007 8:19:00 AM
Hi all,
I want to have less white spacing in the listview of my Compact
Framework application. I tried to set it using SendMessage, but there
is no change to the listview. Any idea? Below is my code. Thank you so
much!!
Public Const LVM_FIRST = &H1000
Public Const LVM_SETICONSPACING = (&H1... more >>
algorithm
Posted by alfred kamara at 1/19/2007 5:15:03 AM
how to draw a flow chart and do pseudocode for weighted averages
*** Sent via Developersdex http://www.developersdex.com ***... more >>
Print Active Access Window Using VB
Posted by JonC at 1/19/2007 4:41:03 AM
I am developing an Access database and need to be able to print a form
with various selections made as it appears on screen. The standard way
of doing this would be to create a report based on the form but the
form is quite complex with nested subforms and page tabs and trying to
filter the reco... more >>
Problem OledbDataAdapter
Posted by explode at 1/19/2007 12:55:09 AM
I made a oledbdataadapter with this code
Public Sub Novo(ByVal nova1 As String, ByVal nova2 As String)
Dim i As Integer
Dim nova As OleDb.OleDbDataAdapter = New OleDb.OleDbDataAdapter
Dim veza As OleDb.OleDbConnection = New
OleDb.OleDbConnection(Global.Diplomski1.My.... more >>
Text cast to Date & Time
Posted by Terry at 1/19/2007 12:04:45 AM
I have a TextBox with a date such as 15/01/2006 which I want to cast into a
variable as a short date 15/01/06, also
I need to cast a time such as 07:30 A.M. into a variable as a short time.
What is the best syntax for this please?
Regards
... more >>
|