2,476 reputation
718
bio website
location Miami, OK
age 43
visits member for 4 years, 3 months
seen 3 hours ago
stats profile views 279

2d
awarded  Popular Question
May
20
comment How can I solve this Object reference Error
This syntax is incorrect. It should be b.Squares = New List(Of Square)
May
16
answered How to refer to an object created by “with” within the construct?
May
15
comment Unable to split strings, and confusing “;” requirements
I'm skeptical that as List<Data> will work at the end of the Where method. It would probably be easier to just add .ToList() at the end instead.
May
15
comment How to combine these If statement conditions
It would probably be better to use OrElse instead of just Or as it will short circuit. Or will still work in this situation, of course, but I believe it is considered a best practice to use OrElse.
May
14
comment How to change the location of a control from a groupbox to form in vb.net?
Just changing Location is not enough. You will have to remove the control from the GroupBox Controls collection and add it to the Form's controls collection.
May
10
answered C# Console Application - Calling Main method or Class?
May
9
comment DbSet Object reference not set to an instance of an object
Which line of code is throwing the exception?
May
8
comment Error in comparing strings
@Ravi - When I look at the string class, the = operator is overloaded with this code: Return String.Equals(a, b) so I see no reason not to use =. It it more readable as well.
May
8
comment Call a generic extension method on another generic extension method's parameter
The variable e is of type TEnum. The GetDescription extension method is for Nullable<TEnum> and not TEnum. Can you make GetDescription an extension of just TEnum (not Nullable<TEnum>)?
May
8
revised Object Required VBA Outlook
Removed VB.Net tag
May
8
comment Error in comparing strings
@Ravi - why not use = to compare strings other than if you need a case insensitive comparison? Can you explain the reason for your statement?
May
7
comment Wrong output using random VB
@BrandanBassett - By the way, 3 * 6 is 18 not 21! :P
May
7
comment Forms open and load very slow. Sometimes they won't open
It is not necessary to have a form in order to place an icon in the system tray. You can just instantiate the NotifyIcon class directly, although I doubt that is causing your lag issues. I would suggest get a good profiler and see where the problem actually is. You can get a trial version of Ants profiler from Red-Gate or there are other profilers available as well.
May
6
comment Is a bad programming practice instantiating a class and not saving it in a object?
If AboutBox1 is derived from System.Form, then I would frown on that usage because the form will not be automatically disposed after it is closed.
May
6
comment Class running when I open VS 2012
I presume that this is a form? What is in the forms constructor?
May
3
comment How Can i Connect C#.net desktop application on My Computer to the MYSQL server of another computer
And that error is?
May
1
comment Length cannot be less than zero
@amitesh - Surely you know how to use an if statement! You would use something like if (r1 >= 0) { //code here } Only execute the rest of the code if r1 >= 0
May
1
comment New pc causing “namespace of type specified in the imports doesn't contain any public member” in VB.NET
"working project that is also not working" The working project is not working?? Have you tried just deleting the Bin and Obj folders for the projects and cleaning the solution and then a full rebuild?
May
1
comment New pc causing “namespace of type specified in the imports doesn't contain any public member” in VB.NET
Does the working project have the same Imports statements? What if you create a brand new project and add the references and then add the Imports statements. Does that work? Are you using file references or project references?