microsoft.public.dotnet.languages.vb
  Home FAQ Contact Sign in
microsoft.public.dotnet.languages.vb only
 
Advanced search
December 2008
motuwethfrsasuw
1234567 49
891011121314 50
15161718192021 51
22232425262728 52
293031     1
2008
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007 2006  
total
microsoft ... languages.vb Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  Value violates the MaxLength - from combo box         


Author: CAM
Date: Dec 26, 2008 14:35

Hello,

I am using Visual Studio 8 (Visual Basic.Net) Within my form I have a
combo box called "cboState" the data is pick up from another table call
"tblState" containing the following fields "State_Name"...
Show full article (1.02Kb)
no comments
  Re: DataGridView and Xml as DataSource         


Author: kimiraikkonen
Date: Dec 26, 2008 13:19

On Dec 24, 1:28 am, black_...@email.it wrote:
> Hi to all,
> I have a problem with a DataGridView.
> I have this xml file:
>
>
>
>  
>     Intestazione
>     Monitor
>  

>  
>     Intestazione
>     Periodo
>     01/01/2008 - 31/07/2008
>  

>  
>     Intestazione
>     Totale
>     Anno2003 ...
Show full article (2.07Kb)
no comments
  SOCKET_ERROR [10054]         


Author: fniles
Date: Dec 26, 2008 13:15

We are using VB.NET 2005 and a 3rd party Socket .net component
(socketwrench) to send messages to another program. This other program is
written in C++ 6.0.
There are 6 of this VB.NET programs and 6 of the C++ programs running on 6
different servers

We had the same problem last week and this week where around the same time
all 6 programs could not send messages to each other.
All 6 of the C++ programs got the error message "Socket Error [10054]" when
receiving from or sending a message to the VB.NET programs.
All the VB.NET program still think that it is connected to the C++ programs,
and when it sends a message to the C++ program it did not get any error
message, as if the connection to the C++ program still good.
What can cause this "Socket Error [10054]" error around the same time for
all 6 connections ?
Thank you.
1 Comment
  Can you force the placement of handled events on double-click?         


Author:
Date: Dec 26, 2008 09:57

I use the #region in my code to attempt to partition the code so that it is
easier to get to the code for events and to gather code in the region for
things like Drag/Drop in which there could be 3 or 4 events that handle the
overall functionallity.

Now what I am wondering (since I have not been able to find a way to do it),
is there a way to force the creation of the event stub to the current line
(where the cursor is or at least after the procedure in which the cursor is
at) within the file holding the code?

If not I will enter this request in Connect as a possible upgrade for the
next version of VS.

Thanks
LS
no comments
  Designer Evisu Men's fashion jean         


Author: luxuryfashion_org
Date: Dec 26, 2008 06:43

Designer Evisu Men's fashion jean

Please see it :
http://www.luxury-fashion.org/static/Apparels/Evisu-Men-Jeans-35.html
http://www.luxury-fashion.org/static/Apparels/Evisu-Men-Jeans-36.html
http://www.luxury-fashion.org/static/Apparels/Evisu-Men-Jeans-37.html
http://www.luxury-fashion.org/static/Apparels/Evisu-Men-Jeans-38.html

Our Designer Evisu Men's fashion jean are fine quality
And find more new fashion apparels please view :
http://www.luxury-fashion.org/static/Apparels/Evisu-Men-Jeans.html

Welcome check our other pages or feel free contact us.
You can find what do you want here!
no comments
  Destroy Objects How ?         


Author: Abhishek
Date: Dec 26, 2008 01:47

hi,

To destroy objects in vb6 we used to write

Set MyObj = Nothing

But how do i destroy objects to clean up memory in vb.net 2005

MyObj.Dispose

is that a right code or i still need to use Set MyObj = Nothing ?

Set MyObj = Nothing
MyObj.Dispose

thank you,
abhishek
9 Comments
  Multi VB apps         


Author: AMP
Date: Dec 25, 2008 23:07

I have a set of VB 2005/2008 apps that are use, they were all
published using click once, I have now writen an app that calls any
these app depending on the users selection, what the best way to
action these, at present when the Button is pressed it exec a shell
to
a BAT file that sits in the published folder, so that if a app is
update the new one get installed. Is there a better way of doing
this?
i am sure there is
no comments
  Error accessing Outlook folder         


Author: John
Date: Dec 25, 2008 21:37

Hi

I am trying to access the Draft folder using the following vb.net code;

Dim objOutlook As Object = CreateObject("Outlook.Application")
Dim oNS As Object = objOutlook.GetNamespace("MAPI")
Dim oFld As Object = objOutlook.Folder

oFld = oNS.GetDefaultFolder(olfolderDrafts)

Problem is I am getting a "Public member 'Folder' on type 'ApplicationClass'
not found." error on the line Dim oFld As Object = objOutlook.Folder. What
is the issue and how can I fix it?

Thanks

Regards
no comments
  Prada shoes (paypal payment)www.king-trade.cn )         


Author: hhhhhh
Date: Dec 25, 2008 19:37

Footwear (paypal payment)www.king-trade.cn )
Paul Smith shoes
Jordan shoes
Bape shoes
Chanel shoes (paypal payment)www.king-trade.cn )
D&G shoes
Dior shoes
ED hardy shoes
Evisu shoes
Fendi shoes (paypal payment)www.king-trade.cn )
Gucci shoes `
Hogan shoes (paypal payment)www.king-trade.cn )
Lv shoes
Prada shoes (paypal payment)www.king-trade.cn )
Timberland shoes
Tous shoes
Ugg shoes (paypal payment)www.king-trade.cn )
Ice bream shoes
Sebago shoes (paypal payment)www.king-trade.cn )
Lacoste shoes ...
Show full article (1.77Kb)
no comments
  FtpWebRequest downloads         


Author:
Date: Dec 25, 2008 16:46

I recently made a ftp upload, and now I am trying to make a ftp download, my
problem is the file is always corrupted. I can upload the file no
problems, I can download text files, but I cant download images. I have a
217 kb png image, when I download it it is corrupted and it is 391 kb in
size.

any ideas

Private Sub downloadFileFromFTP(ByVal fileName)
Dim ftpUrl As Uri = New Uri("ftp://192.168.0.2/" & fileName)
Try
Dim ftpReq As FtpWebRequest =
WebRequest.Create(ftpUrl.AbsoluteUri)
ftpReq.Proxy = Nothing

ftpReq.Method = WebRequestMethods.Ftp.DownloadFile
ftpReq.Credentials = New NetworkCredential("au\mosley",
"faron&missy")
ftpReq.UseBinary = True
Dim ftpResp As FtpWebResponse = ftpReq.GetResponse
Dim ftpRespStream As Stream = ftpResp.GetResponseStream
Show full article (1.28Kb)
5 Comments
1 2 3 4 5 6 7 8 9