all groups > vb.net > january 2006 > threads for sunday january 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
Movement of record
Posted by WilliamMomo at 1/8/2006 10:50:01 PM
i am the beginner of VB.NET. At the vb6 if i want to move the record at the
ado, i can use the following code : adoStudent.movenext.
At the VB.NET how can i do ? If i have a dataset call dsLoginCheck ?... more >>
Change Value in Remote Registry
Posted by scorpion53061 at 1/8/2006 10:48:39 PM
Trying to change a value named in a remote registry. In this case we want to
set the password protect function of the screensaver so WMI can do a reboot
of the system. (IsSecure or IsScreenSaverSecure = 1
(something like that)) If you have any thoughts or ideas on this please let
me know.
... more >>
Printing an ASP.NET web page from VB.NET - (HTTPWebResponse + Printing)
Posted by Jon B at 1/8/2006 9:32:57 PM
Hi There!
I'm trying to print ASP.NET pages to the printer. I know I can grab the
output contents of the ASP.NET page by using HttpWebRequest and
HttpWebResponse objects. However, once I got the contents, it is just HTML.
How do I go about printing that HTML as a graphical document to the
... more >>
Null in Visual Basic .Net???
Posted by Familjen Karlsson at 1/8/2006 9:16:14 PM
How will the code under look like in Visual Basic .Net, since you can't use
the keyword null anymoore in Visual Basic .Net. What can I use instead.
SqlConnection connection = null; SqlCommand command = null; SqlDataReader
reader = null;
String connectionString = "integrated security=SSPI;"; ... more >>
ftp callback example C#
Posted by marfi95 NO[at]SPAM yahoo.com at 1/8/2006 9:08:29 PM
Hello all.
I've been looking all over the net for examples of how to use a
callback out of FtpGetFile in C# or VB.net so I can display progress to
the user. No such luck. I'm new to C# and am having problems
understanding how to use the callback with InternetSetStatusCallback.
Does anybod... more >>
ftp callback example C#
Posted by marfi95 NO[at]SPAM yahoo.com at 1/8/2006 8:27:13 PM
Hello all,
I've looked all over the internet and am not having much luck. I'm
trying to implement a callback out of a ftpgetfile method so I can give
my users an indication of the progress of their download since the
files are pretty big. I'm having problems setting up the callback
using th... more >>
Nearest Neighbour / Ternary Search Tree
Posted by maryjones11289 NO[at]SPAM hotmail.com at 1/8/2006 7:34:12 PM
Hi All,
I'm trying to write/find code that creates a Ternary Search Tree in
Visual Basic (VB6 or .NET).
Here's my situation:
What I have is an array consisting of 60,000 string elements.
All elements are exactly 225 characters in length.
All elements are made up of 1's and 0's
Eg:
10... more >>
how to display a screen for the user to select a contact from the MS Outlook addressbook
Posted by LeAnne at 1/8/2006 7:15:26 PM
Does anyone know how i could display a MS Outlook screen which can
be used for the user to select a contact.
I need a screen to display the outlook contacts and for the user to select
one of them and this screen should return the selected contact.
Then i should be able to get the details of th... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Send E-Mail from VB.Net 2003
Posted by Dennis at 1/8/2006 6:52:01 PM
I am trying to send an e-mail using one of the examples I got on this group
as follows: (both toemail and myemail are valid e-mail addreses.
'System.Web.Mail' (requires reference to "System.Web.dll"),
''' delcare a new mail message
Dim aMailMessage As New System.We... more >>
Installing VB6 on Windows XP
Posted by Zest4Csharp at 1/8/2006 5:58:02 PM
Hi there
I am sorry if this is a duplicate post. I am trying to install VB6 on
Windows XP+SP2 and am getting an error message saying "Invalid command
option: Settings\Temp\VS60WIZ.exe"
Can anyone help pls? And if this is not the right place to post this kind of
a question then where is the... more >>
Installing VB6 on Windows XP
Posted by Zest4Csharp at 1/8/2006 5:45:02 PM
Hello,
I am having trouble installing VB6 on Windows XP. I am getting a message
saying:
"Invalid Command Option: Setting\Temp\vs60wiz.exe"
I have a gut feelings there is some truncation of a path which may be "Local
Settings" but i am not sure.
Any assistance is really appreciated, and i... more >>
Multi Column ListBox
Posted by matthewtec at 1/8/2006 4:22:26 PM
I see that it is possible to have a multicolumn ListBox:
lstOne.MultiColumn = True
lstOne.ColumnWidth = 10
but the only way I have seen to have the items in the listbox print in the
next column is to add enough items to go to the bottom and then start again
at the top.
Is there any way... more >>
Getting the documents of the frames inside InternetExplorer
Posted by Roy Barr at 1/8/2006 4:11:18 PM
Hello,
I can get the document of the main window in the InternetExplorer.
Does anybody know how to get the documents in the frames?
Regards,
Roy Barr
... more >>
Date/Time control
Posted by S Shulman at 1/8/2006 3:26:32 PM
Hi
Users of the new system complain that it is not easy to use the new 'date
control' because they can't select all the date parts and overkey the value.
Is there a way of allowing the user to do that or any other technique that
will speed up data entry
Thank you,
Shmuel Shulman
... more >>
Limit text box to a specific number of characters ?
Posted by Rob at 1/8/2006 11:20:22 AM
On a form... How do you Limit a text box to a specific number of characters
?
... more >>
Late Binding syntax problem
Posted by Dean Slindee at 1/8/2006 11:05:41 AM
The DirectCast below is a syntax error. Anyone know how to write it to do
the same as the statement above it which works when Option Strict Off?
Dim ctlArray As ArrayList)
Dim typ As String
typ = ctlArray(int).GetType.ToString
Select Case typ
Case "System.Windows.Forms.CheckBox"
... more >>
sql server 2005 database backup?
Posted by Recep_TARAK=C7I at 1/8/2006 10:19:10 AM
hi
we want to backup database using visual basic 2005.
thanks
... more >>
Too many case conditions?
Posted by Showjumper at 1/8/2006 8:48:59 AM
I am working on a CF 2.0 PPC app that utilizes a treview control. Depeding
on what node is clicked, a user control is loaded and displayed. I am
loading the user control using a select case. So far there about 10 cases.
Is that too many? Is there such a thing as too many cases?
Thanks
... more >>
Namespace around API calls
Posted by David A at 1/8/2006 8:43:26 AM
I'm trying to "isolate" some unmanaged calls to DLLs in a separate namespace
so I can have all the unmanaged calls to DLL functions in a separate module
and then these can be called from any other module using the "Imports"
statement. But I can't get it to work, at least not in the manner that I'... more >>
copying a collection
Posted by guy at 1/8/2006 4:37:02 AM
how do i copy all items from a generic collection to a class that inherits
from a generic class *** within *** that class?
i have a class that inherits from BindingList and within it i have a method
that generates a List , perfoms operations on it, and then copies all its
elements into the ... more >>
Re: Connecting to the internet
Posted by Husam at 1/8/2006 4:21:02 AM
Hi EveryBodY:
Two days ago I post a question in this group that asking about if there is
any way to make coonection to the internet by adding refrance to my vb.net
2003 project instaed of using the win32 api functions.
I got a nice replayment from Mr.Cor that told me I can do so by using
... more >>
|