-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I want to skin a vb.net app I made ive googled some stuff and I've seen skinned vb.net apps.
However it seems like any time i try to find someone explaining it its a link to a pay for product.
Does anyone have anything useful on this?
>>> More
-
as seen on ASP.net Weblogs
- Search for 'ASP.net Weblogs'
I am trying to use the equivalent of the C# “??” operator in some VB.NET code that I am working in. This StackOverflow article for “Is there a VB.NET equivalent for C#'s ?? operator?” explains the VB.NET IF() statement syntax which is exactly what I am looking for... and I thought I was going to…
>>> More
-
as seen on Programmers
- Search for 'Programmers'
Now before someone tells me VB.Net isn't bad like VB was, I know it isn't. But, I've yet to speak to a programmer who is completely content that some project they work on is written in VB.Net.
Basically, my question is would a programmer knowing both C# and VB.Net (and all of their team knowing both)…
>>> More
-
as seen on Programmers
- Search for 'Programmers'
The company I work for uses vb.net since there are many programmers who moved up from vb6 to vb.net. Basically more vb.net resources in the company for support/maintenance vs c#. I am a c# coder and was wondering if I could just continue coding in c# and just use the many online free c# to vb.net…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Generally speaking, when VB.NET and C# are compared, there is a lot of strong support for C#, accompanied by some bashing of VB.NET until a respected developer comes along and acts as The Voice Of Reason, pointing out that while VB prior to VB.NET had its fair share of issues, VB.NET is really a very…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I made a similar question a few days ago, but now I have new requirements, and new challenges =). As usual, I'm using the animal enums for didactic purposes, once I don't want to explain domain-specific stuff
I have a basic enum of animals, which is used by the whole zoo (I can add stuff to it, but…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a Java Enum:
public enum Equipment { Hood, Blinkers, ToungTie, CheekPieces, Visor, EyeShield, None;}
and a corresponding Postgres enum:
CREATE TYPE equipment AS ENUM ('Hood', 'Blinkers', 'ToungTie', 'CheekPieces', 'Visor', 'EyeShield', 'None');
Within my database I have a table which…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've been trying for 3 hours and I just can't understand what is happening here.
I have an enum 'Maze'. For some reason, when the method 'search' is called on this enum it's EXTREMELY slow (3 minutes to run). However, if I copy the same method to another class as a static method, and I call it from…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi all,
Just out of curiosity, asking this
Like the expression one below
a = (condition) ? x : y; // two outputs
why can't we have an operator for enums?
say,
myValue = f ??? fnApple() : fnMango() : fnOrange(); // no. of outputs specified in the enum definition
instead of switch statements…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've switched from using constants for Strings:
public static final String OPTION_1 = "OPTION_1";
... to enums:
public enum Options {
OPTION_1;
}
With constants, you'd just refer to the constant:
String s = TheClass.OPTION_1
But with Enums, you have to specify toString():
String…
>>> More