all groups > vb.net > january 2007 > threads for sunday january 14
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
Option Strict issue
Posted by John at 1/14/2007 11:40:57 PM
Hi
I have a vs 2003 project which I have just imported into vs 2005. Now I am
getting the "Option Strict On disallows operands of type Object for operator
'='. Use the 'Is' operator to test for object identity." error on the 'Case
"Main"' statement in the below code;
Select Case Row("Con... more >>
Make the value of MyObjectA equal to the value of MyObjectB?
Posted by Bruce at 1/14/2007 10:12:21 PM
I am a C++ programmer so sorry for the simple VB question.
If I have two instances of the same type of object, how do I make the
value of one equal to the other?
If I do
Dim ObjA as new MyObject
Dim ObjB as new MyObject
ObjA = ObjB
then ObjA is set to the same instance as ObjB.
... more >>
Page seems to be remembering HttpSessionState
Posted by Nathan Sokalski at 1/14/2007 8:50:20 PM
I have a page that determines some of what to display based on
HttpSessionState. When I go to it the first time, it displays everything the
way I would expect. Then I go to another page on my site (by clicking links,
so I am still using the same browser window), which calls Session.Abandon()
... more >>
vs2003 to vs2005
Posted by John at 1/14/2007 8:33:31 PM
Hi
I have a vb.net 2003 database winform app which uses non-bound controls and
the associated plumbing is done in code. If I move it to vs 2005 would it
work without any change?
Thanks
Regards
... more >>
grab a web page screenshot using Browser Helper Object?
Posted by buu at 1/14/2007 7:54:41 PM
how to grab a screenshot of a webpage using BHO?
somebody knows some example?
... more >>
Passing parameter to windows service...
Posted by Hakan Örnek at 1/14/2007 4:00:38 PM
Hi ,
I want to parameter passing to my windows sevice. I call service commands
like this ;
'------------------------------------------------------------
Dim sc As ServiceController
sc = New ServiceController("ProsetLogServices")
sc.MachineName = "."
If sc.Status = ServiceControllerStatus.Sto... more >>
breaking up a String into an array of chars and adding to datatable
Posted by Paulers at 1/14/2007 3:38:15 PM
Hello,
I have a string that I am trying to add each char to a datatable row.
for example if I have a string that looks like "abcdefg", I would like
to break it up into an array of characters so I can do this:
myDataTable.Rows.Add(array())
instead of myDataTable.Rows.Add("a","b","c","d",... more >>
Copying to the clipboard
Posted by Jeff at 1/14/2007 1:18:21 PM
....working with visualweb.net 2005 and vb.
....trying to simply copy the contents from a textbox to the clipboard.
I've looked at a large number of places on line and they give me various
code, but it doesn't work. I'm apparently missing some type of declaration,
and the code is diffent... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
loading variable with AutoNumber field value after insert?
Posted by jmar at 1/14/2007 7:08:03 AM
I'm hoping someone out there can give me a little guidance. I have
an Access Database "Customer.MDB" with a table "CustInfo" that
has the following design:
Field: DataType
CustID AutoNumber
Name Text
Title Text
Phone Text
'=========================================================
Dim ... more >>
Windows Installer is not included in any selected prerequisite
Posted by John at 1/14/2007 2:48:14 AM
Hi
I created a solution in vs2003 that has a set-up project included . I have
now imported the solution into vs2005. The problem is that the set-up
project keeps giving me the warning "Windows Installer is not included in
any selected prerequisite". What is the solution to fix this warning?... more >>
Network Communications
Posted by Bernie Hunt at 1/14/2007 1:11:19 AM
I need to learn network communications. The project will have a server
and multiple clients that need to receive information from the server.
The network will be the company's internal network and not the internet.
I'm never programmed in a network environment before so it's time for
some l... more >>
|