all groups > vb.net > march 2005 > threads for saturday march 12
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
Using Uint in VB .NET
Posted by Howard Kaikow at 3/12/2005 7:11:29 PM
C# allows one to specify a constant with a type of uint, so you could have,
say:
private const uint varname = 0xFFFFFFF0
How does one port such statements to VB .NET?
--
http://www.standards.com/; See Howard Kaikow's web site.
... more >>
newbie - form design wizard
Posted by Ed at 3/12/2005 6:43:04 PM
When I design a data grid or form using the wizard or drag and drop, the form
always uses the SQLSERVER field names as the descriptions. I cannot figure
out how to change the field description on the form.
I'm sure there is a simple way, but I'm just not getting it.
Can you help?
--
Ed... more >>
Searching a table
Posted by Geoff Jones at 3/12/2005 4:38:54 PM
Hiya
I have a DataTable containing thousands of records. Each record has a
primary key field called "ID" and another field called "PRODUCT" I want to
retrieve the rows that satisy the following criteria:
I have a list of about 100 numbers which correspond to the ID field and also
another... more >>
Unable to assign value to a property
Posted by Hon Yuen, Ng at 3/12/2005 3:05:30 PM
Hi
I have a object (classA, marshalbyref) that is passed from the server. I
tried assigning a value to one of the object's property however, the
changes is not reflected.
I tried assigning this object to a variable of the same type and do the
assignment again. This works, but the origina... more >>
About ROT13
Posted by yxq at 3/12/2005 2:49:14 PM
Hello,
I want to encrypt and decrypt using ROT13, found a class to encrypt string,
but where is the decrypter?
http://authors.aspalliance.com/brettb/ROT13EncodingWithASPNet.asp#CodeSamples
Thank you
... more >>
Get DIB from Clipboard?
Posted by Just Me at 3/12/2005 1:55:47 PM
1) Is there a relative easy way to get a DIB from the clipboard?
2) what is returned with GetData if the clipboard contains a DIB (the DIB,
HtoDIB,...)?
Thanks in advance
... more >>
Creating dll and windows services with VB Express 2005
Posted by Val3 at 3/12/2005 1:27:06 PM
Hi all.
I need to build dll(s) and windows services using VB .NET 2005 Express. When
I make File/New project the windows contain only Windows application,
Windows control library, Console application, DVD collection starter kit.
How can I do? Any suggest?
Thanks in advance.
VAL
... more >>
Rowfilters - use length or regex
Posted by Masa Ito at 3/12/2005 12:54:02 PM
The rowfilter in a dataview seems to support a very limited subset of regex
expressions.
I need to filter a column of strings by their length. ie: if 2 character
code, or 3 character code.
Currently, I am looping all the rows, and deleting them when they don't
match the length. Rese... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
show download progress
Posted by Loane Sharp at 3/12/2005 12:09:44 PM
Hi there
I'm currently using WebClient.DownloadFile to download a file from the
server to my local disk. Is there a way to show the progress of the file
download?
Best regards
Loane
... more >>
StackTrace Data
Posted by Anthony Nystrom at 3/12/2005 11:53:02 AM
Does anyone know of an way to get the stacktrace data for a given assembly
Process (in process) getting it for the app running from the app running is
no problem... What I am looking for is getting it from a running assembly
from another. Meaning a reading app the wites the stack trace for a d... more >>
Fundamental Help required with Deployment, selection of drive ?
Posted by David at 3/12/2005 9:55:42 AM
I have an application that uses a SQL database. At present I copy the
database to a specific
folder on the "c" drive as I am unsure how to select the drive when
deploying the project.
Would someone please explain how I set up the deployment project so that the
directory is created on the user... more >>
Inserting line breaks in text file?
Posted by Brett at 3/12/2005 9:07:15 AM
I'm writing something similar to this into a text file:
txtfileError.WriteLine(CurrentDateTime(1) & " Error in Sub Sub1()" & idvar &
Chr(10) & Chr(13) & ex.Message)
txtfileError.WriteLine()
Instead of line breaks, I see two boxes. Everything runs together. There
is a double line break w... more >>
Help me! How to declare a TCPChannel Object
Posted by Risen at 3/12/2005 8:23:47 AM
Hi,all,
How to declare a TCPChannel Object and implement it? In MSDN I found code
and try it In IDE,but it have some error,so can not compile it!
Imports System
Imports System.Runtime.Remoting
Imports System.Runtime.Remoting.Channels
Imports System.Runtime.Remoting.Channels.TCP -> error! ... more >>
Functions
Posted by Nathan at 3/12/2005 7:00:54 AM
Hi,
How can I create a function that will accept as a parameter either a datarow
or a datarow array? I want to do this without creating two different
functions.
Thanks,
Nathan
... more >>
Save Filtered record problem
Posted by Agnes at 3/12/2005 12:27:39 AM
I got a dataset to be udpated. However, I need to filter some record first.
E.g gljnheader.approval = "Y"
I know I can use dataview to filter some record, but I don't know how to
write the coding , Please help
If dsList.HasChanges() Then
daList.Update(dsList, "glj... more >>
|