Stories recently tagged with 'VB'

Work Around LINQ to DataSet Limitations in Visual Basic Device Project(www.microsoft.com)

submitted by rcashrcash(4149) 10 months ago

The absence of commonly used LINQ to DataSet extension methods in Microsoft Visual Basic can complicate many data binding scenarios. In this video, Jim Wilson explains what’s behind this limitation and provides options for working around the issue. read more...

add a comment |category: |Views: 10

tags: another

How to prevent Extension methods from appearing as global functions(msmvps.com)

submitted by JoacimJoacim(255) 2 years, 11 months ago

C# have static (or shared) classes which VB lacks. Instead VB uses modules which are almost the same thing. One thing differs though and that is that modules makes its public methods appear as global accessible functions, meaning you don’t have to type the ModuleName.MethodName() when calling such a member. You can instead simply call MethodName() directly. A disadvantage of this fact is that extension methods, that must exist in modules in VB, will appear in IntelliSense as global functions and not only as a method of the type you extended. read more...

add a comment |category: |Views: 13

tags: another

Visual Studio macro to add file headers(jamesewelch.com)

submitted by jamesewelchjamesewelch(2275) 3 years, 8 months ago

Microsoft’s StyleCop analyzes C# source code to enforce a set of style and consistency rules. It can be run from inside of Visual Studio or integrated into an MSBuild project. One of these rules is #SA1633. This rule requires that each of your files have a file header that contains a copyright XML element. Of course, you can disable this rule if you want through StyleCop settings. But just in case you have a similar rule at your work (or your own personal rule) or need to adhere to this rule, I’ll describe the situation and provide the macro below. read more...

add a comment |category: |Views: 170

tags: another

.NET Reference Posters(chadmoran.com)

submitted by ChadMoranChadMoran(535) 4 years, 2 months ago

Printable and viewable .NET resources posters (read Cheatsheet). read more...

add a comment |category: |Views: 20

tags: another

VB Power Packs DataRepeater control(onteorasoftware.net)

submitted by vb2aevb2ae(175) 4 years, 3 months ago

How tobind the vb power packs datarepeater control with code read more...

add a comment |category: |Views: 138

tags: another

Serving PDF Reports from ASP.NET using SQL Reporting Services(arkesystems.com)

submitted by ericsstollericsstoll(225) 4 years, 4 months ago

How to create and deliver a PDF using ASP.NET and SQL Server Reporting Services. read more...

add a comment |category: |Views: 58

tags: another

Extending LINQ to SQL(arkesystems.com)

submitted by ericsstollericsstoll(225) 4 years, 4 months ago

Creating a partial class to extend LINQ to SQL capabilities. read more...

add a comment |category: |Views: 22

tags: another

With Contempt(codechimp.org)

submitted by codechimpcodechimp(345) 4 years, 7 months ago

A macro to remove With blocks from VB.net code. read more...

add a comment |category: |Views: 1

tags: another

DotNetSlackers: VB4: "XAML, I am your father"(dotnetslackers.com)

submitted by plbyrdplbyrd(825) 4 years, 11 months ago

Great example of using XAML for non-WPF purposes. I would actually love to see WinForms via XAML become part of the .net Toolchain. read more...

add a comment |category: |Views: 1

tags: another

InnerWorkings tackles Transact-SQL for developers (cs.innerworkings.com)

submitted by bfinnertybfinnerty(105) 4 years, 11 months ago

We help developers learn to code fundamental Transact-SQL activities such as making queries, sorting and filtering, and using table joins. Delve into control-of-flow language and using functions to manipulate data. Hands-on, practice-based, just for developers looking to learn T-SQL. read more...

1 comment |category: |Views: 2

tags: another

A Better View On Your Coding Community!(codefeeds.com)

submitted by deksildeksil(10) 5 years ago

A great site that aggregates the top coding-related feeds in one convenient and easy-to-use location. Filter information by providers, topics and keywords in order to quickly find the information that you need. read more...

add a comment |category: |Views: 3

tags: another

One Pager: Why we should use C# for .NET development(geekzilla.co.uk)

submitted by fatdavehfatdaveh(1420) 5 years, 8 months ago

A one pager on why I think C# can be more productive than VB in our scenario. Our primary language is Java and developers multi-skill. I would be interested to hear your feedback. read more...

add a comment |category: |Views: 8

tags: another