all groups > vb.net > january 2006 > threads for saturday 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
Deleting all forms in collection
Posted by Yuk Tang at 1/14/2006 8:48:20 PM
I have created my own custom forms called baseform, inheriting normal
form properties and such. Baseform is, as can be expected, the basis
for the other forms in my project. I want to close all forms
whenever the x is clicked on any of those forms, so I go to the
closing event and cycle th... more >>
help urgent
Posted by fbouabcha at 1/14/2006 8:03:31 PM
Hi,
My problem is the breakpoint doesn't work, I have the red line but it
doesn't stop.
Thanks a lot.
... more >>
Problems with Datagrid with a tables Styles Tablestyles
Posted by Marc R. at 1/14/2006 7:05:43 PM
Hi all,
once more I come here with a really Easy one for you :
I got a datagrid, Wich I Set the datasources to be an Dataview.
So far so good,
I just added a TableStyles to it and into the tableStyle I can't select
anything into MappingName ("None") is the only choice.
I did an Othe... more >>
Microsoft Jet40
Posted by JCM at 1/14/2006 7:04:07 PM
Bonjour
quand je veux tester une aplli sur VS2005, j'ai le message
> Microsoft.Jet.OLEB.4.0
> n'est pas enregistré sur la machine.
> j'ai téléchagé et installé Jet4.0
> Je suis allé dans Add référence onglet COM et j'ai ajouté Microsoft
Jet And
> Replication Objects 2.6 Librairy(je n'ai rie... more >>
How to set the TextBox digital only?
Posted by Steven.Xu at 1/14/2006 7:02:02 PM
Hi, men.
It's just a small problem. On previous VB, I can reset the keycode in the
KeyDown or KeyUp event. But in VB.NET, The property of parameter "e" is
readonly. How can I have a TextBox just only could be imputed digital.
Without any letter.
Thx
... more >>
Keep form on top of everything - even other apps ?
Posted by Rob at 1/14/2006 3:50:10 PM
Is there a way to keep a form on top of everything - even other apps ?
... more >>
How to send an Email in VB.NET
Posted by me at 1/14/2006 3:45:31 PM
Hi all,
Does anyone have a simple SendEmail routine?
I want to be able to set the Subject, Send To address, Body and SMTP server
details (server, username, password).
Thanks
... more >>
Wall Charts 2005
Posted by Adam at 1/14/2006 3:09:02 PM
Hi All,
I am a novice when it comes to VB.Net so I am interested in getting the wall
charts that show all objects, methods, etc for VB.Net 2005.
Does anyone know where I can get them? The only place I have seen them is
with the academic version of Visual Studio 2002.
Regards,
Adam.... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
next / next x difference
Posted by new q. at 1/14/2006 2:17:30 PM
I've tried testing this to see if there is any difference but couldn't find
any... is there any difference in doing a For - Next loop with/without a
value after the 'Next' at the end?
e.g. -->
For x in 1 to 10
'statements
Next
versus
For x in 1 to 10
'statements
Next x
... more >>
Sharing source code between Vs2003 and Vs2005 IDE
Posted by Carlo (MCP only) at 1/14/2006 1:59:22 PM
Hi to all
I'm askyng you a suggestion about the best way to share the same source code
between VS2003 and VS2005.
The project I'm developing is a controls and components library, and the
Solution.sln includes a standard WindowsForms application for testing
pourposes.
What I need is an eff... more >>
Namespace not available...
Posted by Rob at 1/14/2006 1:45:39 PM
Tried to add...
Imports System.Web.Mail to my project..
but "Mail" was not an option...
Anyone know why ?
... more >>
Datagrid multi-selected rows collection
Posted by Marc R. at 1/14/2006 1:30:47 PM
hi,
Is that such thing as selected collection exist ?
I need a way to select all selected rows into a datagrid then "unchecked"
the Active columns then save the result.
but as soon i modified 1 row all other row aren't selected any more
Do I have to build the rows collection my-self?
t... more >>
Way to store the current event to a variable ?
Posted by Rob at 1/14/2006 1:07:36 PM
Let's say the event is form Load....
Is there code you could use within that Sub that would return that the
current event is Load ?
i.e.,
Me.CurrentEvent
or something like that ?
... more >>
Store Current form name to a variable
Posted by Rob at 1/14/2006 12:27:52 PM
Tried...
Dim str as string
str = Me.ActiveForm.Name
and
str = ActiveForm.Name
... more >>
[VB.NET express 2005] - Regular expressions
Posted by Movie_ManiacĀ® at 1/14/2006 12:25:16 PM
Hi
I'm writing a little app and I need some html parsing through regular
expressions.
I wrote this piexe of code
Private Function findImgTags(ByVal strHTML As String) As Object
dim MatchObj As Match = Regex.Match(strHTML, "<img[^>]*>",
RegexOptions.IgnoreCase)
return MatchObj
... more >>
Tabbed MDI Interface
Posted by Martin at 1/14/2006 11:36:32 AM
Hi all!
As a preparation of a conversion from VB6 to VB2005 I'm playing around with
VB2005. One of the first things that strike me is the user-interface. In all
documentation Microsoft keeps going on about this beautiful Tabbed MDI
Interface that we all should be using. And I agree, it is n... more >>
How to Exit an application properly on Error
Posted by Rob at 1/14/2006 11:00:05 AM
I have the following code...
Try
da.Fill(ds,"myset")
Catch exc as exception
Msgbox("Check Connection string Info")
Ffrm.Dispose()
Application.Exit()
Exit Sub
EndTry
I noticed that the Application.Exit() alone did not exit the Sub
Procedure... so I added the Exit Sub. ... more >>
Problem on MSHFlexGrid
Posted by mc at 1/14/2006 1:32:23 AM
HI,
I face a problem on using MSHFlexGrid currently. I have developed a grid
using the MSFlexGrid control at office, it does work at my office machine.
Later, I copy the whole source code folder to my home computer. When I open
the source code in Visual Studio at home, I found that the gri... more >>
datagridview print
Posted by Arno Au at 1/14/2006 12:44:13 AM
Hi,
how can I print the content of a datagridview in vb 2005?
thanks for answers,
Arno
... more >>
|