Click here to Skip to main content
15,915,508 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionSMTP Mails - working in one computer not with other computer Pin
Paramu197317-Jun-09 4:58
Paramu197317-Jun-09 4:58 
AnswerRe: SMTP Mails - working in one computer not with other computer Pin
nlarson1117-Jun-09 6:21
nlarson1117-Jun-09 6:21 
GeneralRe: SMTP Mails - working in one computer not with other computer Pin
Paramu197317-Jun-09 19:16
Paramu197317-Jun-09 19:16 
GeneralRe: SMTP Mails - working in one computer not with other computer Pin
Rajesh Anuhya17-Jun-09 20:33
professionalRajesh Anuhya17-Jun-09 20:33 
QuestionUsing 'SetParent' function in VB 2008 Pin
Filippo197417-Jun-09 2:31
Filippo197417-Jun-09 2:31 
AnswerRe: Using 'SetParent' function in VB 2008 Pin
nlarson1117-Jun-09 3:33
nlarson1117-Jun-09 3:33 
GeneralRe: Using 'SetParent' function in VB 2008 Pin
Filippo197417-Jun-09 3:55
Filippo197417-Jun-09 3:55 
QuestionPropertyGrid image Selection while Property is ReadOnly Problem Pin
VB 8.017-Jun-09 2:04
VB 8.017-Jun-09 2:04 
Readonly with Editor is not working as readonly after setting the image and it is working as readonly but not setting the iMage to picture

<[ReadOnly](True)> <Editor(GetType(ImageOpenFileDialog), GetType(System.Drawing.Design.UITypeEditor))> _
Public Property BackgroundPicture() As String

Public Class ImageOpenFileDialog
Inherits UITypeEditor
Dim openFileDialog As OpenFileDialog

Public Overrides Function EditValue(ByVal context As System.ComponentModel.ITypeDescriptorContext, ByVal provider As System.IServiceProvider, ByVal value As Object) As Object
openFileDialog = New OpenFileDialog()
openFileDialog.FileName = ""
openFileDialog.Filter = "JPEG Images|*.jpg|GIF Images|*.gif|Bitmaps|*.bmp"
openFileDialog.InitialDirectory = My.Computer.FileSystem.SpecialDirectories.MyPictures
If openFileDialog.ShowDialog() = DialogResult.OK Then
Return openFileDialog.FileName
End If
Return MyBase.EditValue(context, provider, value)
End Function
Public Overrides Function GetEditStyle(ByVal context As System.ComponentModel.ITypeDescriptorContext) As System.Drawing.Design.UITypeEditorEditStyle
Return UITypeEditorEditStyle.Modal
End Function
End Class


I am creating a readonly Property and if i click i open the Images to select the image . as it is a readonly property i am not able to set teh image to picture box .

----------
Working on Visual Studio 2005 PropertyGrid .

I want to lock all the keys not to enter in the propertygrid at the Picture Property like in Visual Basic 6.0 after selecting the image . Only Delete has to work

PictureBox -- Picture Property -- (Bitmap) after setting the image
so that the user shouldnot change the value


Presently i got the (None) in this way . Now i want to set the ReadOnly and only Delete key has to work and i want to set the Picture to PictureBox.
QuestionIssue while creating tables in ms access using VB.NET ADOX [modified] Pin
sivakumar.mariappan17-Jun-09 0:32
sivakumar.mariappan17-Jun-09 0:32 
AnswerRe: Issue while creating tables in ms access using VB.NET ADOX Pin
Johan Hakkesteegt17-Jun-09 0:47
Johan Hakkesteegt17-Jun-09 0:47 
GeneralRe: Issue while creating tables in ms access using VB.NET ADOX Pin
sivakumar.mariappan17-Jun-09 1:15
sivakumar.mariappan17-Jun-09 1:15 
AnswerRe: Issue while creating tables in ms access using VB.NET ADOX Pin
Ashfield17-Jun-09 1:25
Ashfield17-Jun-09 1:25 
GeneralRe: Issue while creating tables in ms access using VB.NET ADOX Pin
sivakumar.mariappan17-Jun-09 3:49
sivakumar.mariappan17-Jun-09 3:49 
GeneralRe: Issue while creating tables in ms access using VB.NET ADOX Pin
Ashfield17-Jun-09 8:57
Ashfield17-Jun-09 8:57 
QuestionRead the Excel upto used range Pin
Member 402761716-Jun-09 21:36
Member 402761716-Jun-09 21:36 
AnswerRe: Read the Excel upto used range Pin
Johan Hakkesteegt16-Jun-09 21:54
Johan Hakkesteegt16-Jun-09 21:54 
AnswerRe: Read the Excel upto used range Pin
Ebube17-Jun-09 0:09
Ebube17-Jun-09 0:09 
QuestionHow to identify the Users Network Credentials? [modified] Pin
Paramu197316-Jun-09 21:20
Paramu197316-Jun-09 21:20 
AnswerRe: How to identify the Users Network Credentials? Pin
Johan Hakkesteegt16-Jun-09 21:49
Johan Hakkesteegt16-Jun-09 21:49 
QuestionChange the size od MDI container in the parent form Pin
sohaib_a16-Jun-09 21:06
sohaib_a16-Jun-09 21:06 
AnswerRe: Change the size od MDI container in the parent form Pin
Dave Kreskowiak17-Jun-09 7:57
mveDave Kreskowiak17-Jun-09 7:57 
GeneralRe: Change the size od MDI container in the parent form Pin
sohaib_a17-Jun-09 19:20
sohaib_a17-Jun-09 19:20 
GeneralRe: Change the size od MDI container in the parent form Pin
Dave Kreskowiak18-Jun-09 11:23
mveDave Kreskowiak18-Jun-09 11:23 
QuestionUnistall from vb.net Pin
Mithun.Shitole16-Jun-09 20:21
Mithun.Shitole16-Jun-09 20:21 
AnswerRe: Unistall from vb.net Pin
dan!sh 16-Jun-09 21:52
professional dan!sh 16-Jun-09 21:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.