all groups > vb.net > november 2006 > threads for friday november 10
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
String manipulation question
Posted by Paul at 11/10/2006 11:42:31 PM
Hi,
What would be the best way to remove the following from the start of a
string...
"A1", "A2, "A3", "A4", "A5", "B1, "B2", "B3", "B4", "B5", "C1", "C2", "C3",
"C4", "C5", "D1","D2","D3","D4","D5".
I hope I explained that right. A string will have one of the above strings
as its fir... more >>
About Access Windows Service information
Posted by Jaye at 11/10/2006 10:11:02 PM
I have facing a difficult problem about windows service
I have created a windows Service and I have add some set/get method to
return the value that caluate in background.
And i have another window form application, in this, i would like to get
back the value in the method that added in m... more >>
Location for shared Access database
Posted by Elton Cohen at 11/10/2006 9:27:43 PM
Hi newsgroup!
Can anyone tell me where I should put a simple Access database file in
order to be accessible for every computer in the network (same
workgroup)? There does not need to be any protection (I heard people say
that I should buy a dedicated server or have special rights for each a... more >>
Getting the current procedure name?
Posted by Ronchese at 11/10/2006 5:11:22 PM
Hello,
is there any way to get the name of the current running procedure?
For example:
Public Sub Test( )
'do something
'...
'log activity (for example)
objLog.Write(Text :=3D "bla bla bla", _
ProcName :=3D dontKnowWhatIsThis.GetProcName() )
End Sub
... more >>
Printign data over form
Posted by E. Ortega at 11/10/2006 3:08:14 PM
Hi All,
I'm new to VB. I would like to know, how to print data over a form. Much
like Turbo Tax prints the data over the tax forms, all in shot.
Visual Studio 2005, SQL 2005.
TIA,
E Ortega
... more >>
How to properly "name" a class library?
Posted by Terry Olsen at 11/10/2006 2:06:43 PM
I have written a class library that I want to reference from a windows
app. The filename is UPSTrackTool.dll. The Class name is UPSTrackTool.
When I reference it from my windows app, I put the Imports UPSTrackTool
at the top. But when I call any methods I have to use:
UPSTrackTool.UPSTrackT... more >>
Newbie: Textbox text from string
Posted by Jarry at 11/10/2006 1:56:26 PM
If I were to set textbox text from a string, as such:
dim myString as string = "Hello"
textbox1.text = myString
It of course works. But what is the rule concerning new lines, for
instance, the following:
dim myString as string = "Hello" & chr(10) & "Goodbye"
textbox1.text = myS... more >>
newbie: is this the appropriate use of a class?
Posted by Keith at 11/10/2006 12:09:58 PM
VB.Net2003, Win XP
I plan to build an interface to view video clips, and associate any of a
number of "flags" with each clip (videos are research data, with flags for
any of a number of participants, behaviors, etc. who are in each clip).
I was originally thinking that I'd need to learn mo... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Make copy of arraylist
Posted by tshad at 11/10/2006 10:34:52 AM
How do you easily make a copy of an arraylist?
If you do:
arrayList2 = arrayList1
You get a pointer so that if you clear arrayList2 (arrayList2.Clear) -
arrayList1 is also cleared.
I want to create a copy of the arrayList, which I can do looping through the
arrayList1 and adding ... more >>
VB.Net XML Comments and Intellisense for COM?
Posted by TCook at 11/10/2006 12:29:22 AM
Hey All,
I have added my XML comments to my VB.Net solution and from within VS2005
they show up quite nicely in the Object Browser, etc.
However, when the class library is referenced from a COM app, the procedure
attributes do not show up.
Is there a way to fix this?
Thanks,
TC
... more >>
Clipboard Question
Posted by Newbie at 11/10/2006 12:22:45 AM
How do I clear the clipboard in VB.NET 2003?
TIA
Newbie
... more >>
|