.net - Equivalent Of C#'s `default` In .Net?

Jan 20, 2011

I'm normally at home in C#, and I'm looking at a performance issue in some VB.Net code -- I want to be able to compare something to the default value for a type (kind like C#'s default keyword).

[Code]...

View 3 Replies


ADVERTISEMENT

VB Equivalent For C#'s Default (T)?

May 7, 2009

What is VB's equivalent for C#'s default(T)

View 2 Replies

User To Select Just Straight To Default Printer With Its Default Settings

Dec 3, 2011

I need to print the contents of 3 textboxs to default printer. what examples I have found dont seem to work. I was trying the documentprint1 component as i thought it would be easy but cant figure out how to tell it what to print the second part is to print a variable (string) to the printer as well.no need for user to select just straight to default printer with its default settings

View 1 Replies

VS 2010 Combobox Default Value - Display The Name Of The Person Who Is Doing The Selection As The Default?

Nov 25, 2011

I have a combobox which contains a sample of names selected from a table.Currently the default name displayed in the box is the 1st name found in the table. What I would like to do is display the name of the person who is doing the selection as the default. The name is stored in a public variable 'PubName' and I do not want the user to be able to type into the combobox themselves.Is this possible?

View 2 Replies

Own Browser Becoming Default/Editing Internet Default Options?

Jun 9, 2012

I am creating my own browser. I want to make an option...to set as the browser to default.To do that I have to:Write a code which opens html(generally internet) file through my browser(form load event) DoneChange the "open with..." of the .html,.xml.... files Problem I want to change the open with event from my web browser. Actually i want an options form which will ask the user "Do you want to set /Browser name/ to be your default browser?" If yes then it will change the default options of the internet files.

View 5 Replies

IDE :: Set Project Default For Winforms Projects S/ Default Modifier For Controls Added To Winforms Is Private

May 28, 2010

Is it possible to set a project default for VB.NET winforms projects so that the default Modifier for controls added to winforms is Private (not Friend)?I know there's a "modifiers" property in the properties window so I can set it for each individual control however I would like to change the project so from now on myself and other developers have to specifically decide to change from friend to private. (Which I would strongly discourage them from doing).I believe there is no way of doing this, but on another forum a while ago someone mentioned it would be possible with an add-in (but didn't name the add-in or where to get it).

View 1 Replies

Getting An Other File Extension As Default Instead Of All Files As Default Extension?

Jun 25, 2009

I am using VB 08 running an openfiledialogue wanting to get the result of the GDS file (*.gds) to be the default extension at the drop down menu instead of All file when the openfiledialogue box opens.

I coded it with:

OpenFileDialogue.Filter = "GDS File(*.gds)|*.gds|All files|*.*"

but the results i get in the open file dialogue box remains as all files being in the drop down menu as the default file extension. How to i set it to ".gds" format?

View 1 Replies

.net - Equivalent Of VB And And Or In C#?

Oct 14, 2010

I know that AndAlso is equivalent to && and OrElse is equivalent to ||. But what is the cleanest way to achieve the equivalent of Visual Basic's And and Or in C#?For example, consider the following VB.NET code.The ValidateForControl method performs some validation and returns whether the state of the specified control is valid. The entire input form is valid if all controls are valid. However, each control must be individually validated even if one is invalid (which requires the operator not to short-circuit). Visual Basic's And operator is perfect for this situation, but unfortunately there's no equivalent operator in C# as far as I know (&& short-circuits).

[Code]...

View 6 Replies

.Net Equivalent In C#?

May 24, 2012

I am Validating a TextBox on it's KeyPress Event in VB.

VB.Net
If InStr("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz`~!@#$%^&*()_+|[]{};:<>/?,.'" & """" & Chr(8), Chr(KeyAscii)) = 0 Then KeyAscii = 0

What will be it's equivalent in C# ?

View 3 Replies

C# Equivalent Of Err In VB?

May 18, 2012

Let me know how can i use this Err in c#.This is VB Code:

If Len(sPart1) <> PART1_LENGTH Then
Err.Raise(vbObjectError, , "Part 1 must be " & PART1_LENGTH)

[code]......

View 4 Replies

Equivalent Of SQL IN In VB

Jul 14, 2011

What I am trying to do is to check if a value matches one of two numbers (and easily be able to add to the numbers to compare to). Rather than doing a longer-winded way such as: [Code] I have found that this only works when SectionID is 2 or PageID is 8. If SectionID is 3 or PageID is 12 then it doesn't work. Why is this and what can I do to try to get around the problem?

View 3 Replies

What Is The Equivalent For OLE In .net

Sep 1, 2010

what is the equivalent for OLE in .net

View 1 Replies

.net - Equivalent To Log4j In VB?

Mar 20, 2012

I am relatively new to Visual Basic. When it comes to logging, in Java I use log4j for logging.What is the equivalent in Visual Basic and can you please guide me to a good tutorial?

View 1 Replies

.net Equivalent For The Code?

Jul 28, 2009

private bool txtRegExStringIsValid(string textToValidate)
{
Regex TheRegExpression;
string TheTextToValidate;

[code]....

View 2 Replies

.Net Equivalent Of A C++ Stub Lib?

Jul 17, 2011

I've got a large codebase which I'd like to expose to plugin authors to allow them to use VB.Net Express to code plugins for a server app, which is not available to them. My problem is that even with obfuscation, I'd rather not distribute the complete app and/or dlls, as even with obfuscation peeling apart a .NET assembly and puzzling out code is relatively easy to do. I'm interested in this because the licensor I obtain the code from requires me to protect IP and assets and while distributing .NET apps opens up the app to disassembly, keeping the server app private and allowing users to utilize a skeleton dll to code against is a happy medium.

What I'm looking for is some way or a utility to go through my server app source code and create a codeless version of the app which only contains method and property signatures.The intent is to provide a stub .NET dll for them to add as a reference and code against as if they were directly interacting with the server, without actually providing the server code to them, compiled or not. I can of course do this by hand but there are over 90 classes and hundreds of thousands of lines of code I'd rather not spend a week hand tweaking. Also, this presents a problem whenever new methods or code are added to the project. Finally, two separate projects is an even worse scenario.Because people will post suggestions that have little or nothing to do with the question, here's a short, clear example. I want to turn this class:

Public Class MyServer
Public ReadOnly Property Name() As String
Get
Return "Whatever"

[code].....

View 2 Replies

.net Equivalent Of C# Expression?

Jan 10, 2012

What is the vb.net expression of this c# expression ?

Frame.GetController<ShowNavigationItemController>().CustomShowNavigationItem += new EventHandler<CustomShowNavigationItemEventArgs>(WindowController1_CustomShowNavigationItem);

View 4 Replies

.Net/C# Equivalent Of ADSYSTEMINFO?

Nov 16, 2011

I'm looking at some old ASP code that contains the following:

Set objDSE = GetObject("LDAP://RootDSE")
Set objSysInfo = CreateObject("adsysteminfo")
Set objUser= Getobject("LDAP://" & Replace(objSysInfo.UserName,"/","/"))
dtmValue = objUser.PasswordLastChanged

[code]....

This is for an intranet app that uses integrated authentication. Is there a replacement for the ASP adsysteinfo object? I can probably port most of the LDAP calls using System.DirectoryServices.DirectoryEntry, but is there a better/easier way to do this in ASP.NET (VB.Net or C#)? how to convert the ASP object properties to DirectoryEntry properties?

View 1 Replies

.Textmatrix Equivalent For .Net?

Aug 2, 2009

I have made an application in vb6 abd now trying to do the same in visual studio 2005. In vb6 i was using MSFlexgrid and its .Textmatrix properties. Would like to know what is the .Texmatrix equivalent for .net. When i pasted the code form vb6 i get the following error...

'TextMatrix' is not a member of 'AxMSFlexGridLib.AxMSFlexGrid'

View 6 Replies

Asp.net Mvc - Equivalent Of [Bind] In Vb

Jul 11, 2011

Is there an equivalent to C#'s MVC [Bind(Include="Title,Description")] in VB?

View 1 Replies

C# - Equivalent Of Program.cs In .NET?

May 10, 2012

What is the equivalent of Program.cs in VB.NET WinForms application?I need to move my .CS app to VB.NET.

As I do not have forms in my WinForms project in Program.cs I do the following:

Application.Run(new MyForm(parm1, parm2);

How to move this code in VB.NET?

View 2 Replies

C# - Implement The Equivalent Of SQL IN() Using .net?

Aug 4, 2010

In .net (c# or vb) expressions, how would you implement SQL's handy IN() functionality?i.e. value in (1, 2, 4, 7)rather than:

value = 1 or value = 2 or value = 4 or value = 7

There are obviously many ways, I'm looking for the most clean and simple!

View 7 Replies

C# - Specify The Equivalent Of Volatile?

Jul 8, 2009

Possible Duplicate: How do I specify the equivalent of volatile in VB.net? What is the VB.NET keyword equivalent of C# "volatile"? If there is no keyword what mechanism is the equivalent?

View 4 Replies

C# - Wordpress Equivalent For ASP.NET?

Jul 27, 2011

I do not know anything about PHP or Wordpress. But I was told Wordpress is very cool to use with PHP.

I use ASP.NET and would like to have a CMS for ASP.NET.

What is the best CMS to use for ASP.NET when cost is not an issue?

View 1 Replies

C#'s Equivalent To .Net's DirectCast?

Apr 21, 2010

Does C# have an equivalent to VB.Net's DirectCast?I am aware that it has () casts and the 'as' keyword, but those line up to CType and TryCast.To be clear, these keywords do the following;CType/() casts: If it is already the correct type, cast it, otherwise look for a type converter and invoke it. If no type converter is found, throw an InvalidCastException.

TryCast/"as" keyword: If it is the correct type, cast it, otherwise return null.DirectCast: If it is the correct type, cast it, otherwise throw an InvalidCastException.

EDIT: After I have spelled out the above, some people have still responded that () is equivalent, so I will expand further upon why this is not true.

DirectCast only allows for either Narrowing or Widening conversions on inheritance tree, it does not support conversions across different branches like () does.ie: C#, this compiles and runs:

//This code uses a type converter to go across an inheritance tree
double d = 10;
int i = (int)d;

[code]....

View 10 Replies

Equivalent C# Expression In .net ?

Feb 19, 2010

i didn't want to trust this one to any number of online conversion websites that I often use.I don't need to convert the declarations, just the expression '(byte)((flen & 0xff00) >> 8)'in

byte[] sendFrameData = new byte[280
ushort flen
sendFrameData[7] = (byte)((flen & 0xff00) >> 8);

View 2 Replies

Equivalent For VB 6's Form_QueryUnload 0, 0?

Nov 3, 2009

I want to progammically close a form, in VB 6 I used Form_QueryUnload 0, 0, on VB.Net (2008) MyForm_Closing 0,0 doesn't work?

View 4 Replies

Equivalent Of C# Code In VB?

Nov 24, 2010

The code in C# is as follows:private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)

[Code]...

View 3 Replies

Equivalent Of Null In VB?

Mar 30, 2009

im using a quesry which returs the max value from a table the issue is the line cmd.ExecuteScalar() may return a value null if there are no records , is there any eway to chk if value returned is null or not?

View 2 Replies

Equivalent Of PopupMenu() In Dot.NET?

Sep 18, 2008

As I understand it Context menus are meant to replace the Popupmenu command as we knew it in VB6. This is fine if the menus are different than the existing main menu.Do I really have to re-create portions of the main menu for my context menus or can I somehow get the context menu to point to the main menu strip branch of my choice? (As in VB6.)

View 5 Replies

Equivalent Of This VB6 Code In .net?

Jun 6, 2011

Schema is a string, lstSchemas is listbpb and rc is a variant

Schema = VB6.GetItemString(lstSchemas, rc)

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved