Click here to Skip to main content
15,892,005 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionGUID changes from immediate window to table? [modified] Pin
lemarshall4-Jun-10 17:08
lemarshall4-Jun-10 17:08 
AnswerRe: GUID changes from immediate window to table? Pin
Dave Kreskowiak4-Jun-10 19:21
mveDave Kreskowiak4-Jun-10 19:21 
AnswerRe: GUID changes from immediate window to table? Pin
riced4-Jun-10 20:10
riced4-Jun-10 20:10 
QuestionApache configuration files parser Pin
Murr@y4-Jun-10 7:54
Murr@y4-Jun-10 7:54 
AnswerRe: Apache configuration files parser Pin
Dave Kreskowiak4-Jun-10 8:53
mveDave Kreskowiak4-Jun-10 8:53 
GeneralRe: Apache configuration files parser Pin
Murr@y4-Jun-10 18:38
Murr@y4-Jun-10 18:38 
GeneralRe: Apache configuration files parser Pin
Dave Kreskowiak4-Jun-10 19:16
mveDave Kreskowiak4-Jun-10 19:16 
QuestionVB.Net syntax. Pin
priyamtheone4-Jun-10 6:27
priyamtheone4-Jun-10 6:27 
what's the vb.Net counterpart of the following blocks in Csharp?

public class NullableDateTimePicker : System.Windows.Forms.DateTimePicker
  {
    // Default Constructor
    public NullableDateTimePicker() : base()
    {
      base.Format = DateTimePickerFormat.Custom;
      NullValue = " ";
      Format = DateTimePickerFormat.Custom;
      CustomFormat = "dd MMM yyyy";

      this.DataBindings.CollectionChanged += new CollectionChangeEventHandler(DataBindings_CollectionChanged);
    }
}



//NullableDateTimePicker is the class from which DateTimePickerEditingControl class inherits.
//IDataGridViewEditingControl is the interface which DateTimePickerEditingControl class implements.
class DateTimePickerEditingControl : NullableDateTimePicker, IDataGridViewEditingControl
    {
	//Constructor
        public DateTimePickerEditingControl()
        {
            this.Format = DateTimePickerFormat.Custom;
            this.CustomFormat = "dd MMM yyyy";
        }
}

AnswerRe: VB.Net syntax. Pin
Smithers-Jones4-Jun-10 7:42
Smithers-Jones4-Jun-10 7:42 
GeneralRe: VB.Net syntax. Pin
priyamtheone6-Jun-10 4:23
priyamtheone6-Jun-10 4:23 
AnswerRe: VB.Net syntax. Pin
mvdcorput11-Jun-10 23:02
mvdcorput11-Jun-10 23:02 
QuestionSingle Value Aggregation with PLINQ Pin
Agarwaen594-Jun-10 1:38
Agarwaen594-Jun-10 1:38 
AnswerRe: Single Value Aggregation with PLINQ Pin
Dave Kreskowiak4-Jun-10 8:38
mveDave Kreskowiak4-Jun-10 8:38 
GeneralRe: Single Value Aggregation with PLINQ Pin
Agarwaen596-Jun-10 5:40
Agarwaen596-Jun-10 5:40 
GeneralRe: Single Value Aggregation with PLINQ Pin
Dave Kreskowiak6-Jun-10 7:00
mveDave Kreskowiak6-Jun-10 7:00 
GeneralRe: Single Value Aggregation with PLINQ Pin
Agarwaen596-Jun-10 7:06
Agarwaen596-Jun-10 7:06 
GeneralRe: Single Value Aggregation with PLINQ Pin
Dave Kreskowiak6-Jun-10 8:27
mveDave Kreskowiak6-Jun-10 8:27 
QuestionParameter passing from a combo to Stored procedure Pin
Sabui4-Jun-10 1:10
Sabui4-Jun-10 1:10 
AnswerRe: Parameter passing from a combo to Stored procedure Pin
Johnny J.4-Jun-10 1:19
professionalJohnny J.4-Jun-10 1:19 
QuestionHow to Set different forecolor to numbers between 0-9. Pin
mdrizwan_14-Jun-10 0:31
mdrizwan_14-Jun-10 0:31 
AnswerRe: How to Set different forecolor to numbers between 0-9. Pin
Dave Kreskowiak4-Jun-10 2:07
mveDave Kreskowiak4-Jun-10 2:07 
GeneralRe: How to Set different forecolor to numbers between 0-9. Pin
mdrizwan_14-Jun-10 2:43
mdrizwan_14-Jun-10 2:43 
GeneralRe: How to Set different forecolor to numbers between 0-9. Pin
Dave Kreskowiak4-Jun-10 4:34
mveDave Kreskowiak4-Jun-10 4:34 
GeneralRe: How to Set different forecolor to numbers between 0-9. Pin
mdrizwan_14-Jun-10 21:13
mdrizwan_14-Jun-10 21:13 
GeneralRe: How to Set different forecolor to numbers between 0-9. Pin
Dave Kreskowiak5-Jun-10 2:10
mveDave Kreskowiak5-Jun-10 2:10 

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.