Conditional activities in activity diagram
-----------------|
| |
| |
----------------- |
Activity Diagram - UML 2 Diagrams - UML Modeling Tool: "optiona"
'via Blog this'
Popular Posts
-
Kendo UI applying SUM in footer template kendo ui - KendoUI: Grid Summary values in Footer - Stack Overflow : ", footerTemplate:...
-
MVC grid example ASP.NET MVC Flexigrid sample - CodeProject : 'via Blog this'
-
A possible way of handling distributed transaction for multiple contexts without alleviation to MSDTC??? c# - Entity Framework - Using Trans...
Monday, July 30, 2012
Sparx Systems - UML 2 Tutorial - Activity Diagram
UML 2 activity diagram and shapes
Sparx Systems - UML 2 Tutorial - Activity Diagram:
'via Blog this'
Sparx Systems - UML 2 Tutorial - Activity Diagram:
'via Blog this'
Sunday, July 29, 2012
ExpandoObject Class (System.Dynamic)
Wowwww ....
Creating Object dynamically at run time, add property and functions to it and remove properties and functions .... ExpandoObject!!!!
Also enables to return anonymous type cross the libraries!!!
ExpandoObject Class (System.Dynamic):
'via Blog this'
Creating Object dynamically at run time, add property and functions to it and remove properties and functions .... ExpandoObject!!!!
Also enables to return anonymous type cross the libraries!!!
ExpandoObject Class (System.Dynamic):
'via Blog this'
Saturday, July 28, 2012
ASP.NET MVC 3: Layouts and Sections with Razor - ScottGu's Blog
Good example of Layouts = Masterpages by Scott Gu
ASP.NET MVC 3: Layouts and Sections with Razor - ScottGu's Blog:
'via Blog this'
ASP.NET MVC 3: Layouts and Sections with Razor - ScottGu's Blog:
'via Blog this'
Using Areas in ASP.NET MVC Application
Using areas to create same View / Model / Controller structure for each sub module of a big application. By default we can not use let is say HomeController for both Finance and HR departments. To be able to do so then we need to create Area in MVC by just right clicking on folder and then selecting add new Area...
Using Areas in ASP.NET MVC Application:
'via Blog this'
Using Areas in ASP.NET MVC Application:
'via Blog this'
Friday, July 27, 2012
Demos -- Trirand jqGrid for ASP.NET MVC
Excellent advanced jqGrid with paging, sorting, searching!!!
Demos -- Trirand jqGrid for ASP.NET MVC:
'via Blog this'
Demos -- Trirand jqGrid for ASP.NET MVC:
'via Blog this'
MVC3 Webgrid Html helper » BroersA Blog
Webgrid with inline edit, delete, view links ...
MVC3 Webgrid Html helper » BroersA Blog:
'via Blog this'
MVC3 Webgrid Html helper » BroersA Blog:
'via Blog this'
Consuming an OData feed in MVC « Bryan Rhea
oData and MVC, Dropdown list and Jquery filtering
Consuming an OData feed in MVC « Bryan Rhea:
'via Blog this'
Consuming an OData feed in MVC « Bryan Rhea:
'via Blog this'
Thursday, July 26, 2012
Monday, July 23, 2012
Registering components by conventions - Castle Project
Registering the components based on convention .... Castle!
Registering components by conventions - Castle Project:
'via Blog this'
Registering components by conventions - Castle Project:
'via Blog this'
Monday, July 16, 2012
Refresh All Views in Database with T-SQL « Greg Olsen – Yellow Duck Guy -
Refresh all views in the database ...
Refresh All Views in Database with T-SQL « Greg Olsen – Yellow Duck Guy -:
'via Blog this'
Refresh All Views in Database with T-SQL « Greg Olsen – Yellow Duck Guy -:
'via Blog this'
Saturday, July 14, 2012
Copy As HTML extension
visual studio addin to copy code as HTML... eg for blogs etc
Install the addin, select code and right click and then Export As HTML ...
That is it ... here is the output:
Copy As HTML extension:
'via Blog this'
Code Snippet
- Private Sub SetPrivateProperty(Of t)(
- ByVal targertObject As t,
- ByVal targetPropertyName As String,
- ByVal targetPropertyValue As Object
- )
- Dim type As Type = targertObject.GetType
- type.InvokeMember(targetPropertyName,
- BindingFlags.NonPublic Or
- BindingFlags.SetProperty Or
- BindingFlags.Instance, Nothing,
- targertObject, New Object() {targetPropertyValue})
- End Sub
Copy As HTML extension:
'via Blog this'
EF 5.x DbContext Generator for VB.NET extension
DbContext and entity generator for VB.Net
EF 5.x DbContext Generator for VB.NET extension:
'via Blog this'
EF 5.x DbContext Generator for VB.NET extension:
'via Blog this'
Friday, July 13, 2012
VBnet™ Visual Basic Developers Resource Centre
Get UNP path based on mapped drives ...
VBnet™ Visual Basic Developers Resource Centre:
'via Blog this'
VBnet™ Visual Basic Developers Resource Centre:
'via Blog this'
Thursday, July 12, 2012
.net - Is it possible to set private property via reflection - Stack Overflow
Once the class is published then we don't have any control on how it will be used,,,, even we can set the Private or protected members of the class using refelection... see below
Private Sub SetPrivateProperty(Of t)(
ByVal targertObject As t,
ByVal targetPropertyName As String,
ByVal targetPropertyValue As Object
)
Dim type As Type = targertObject.GetType
type.InvokeMember(targetPropertyName,
BindingFlags.NonPublic Or
BindingFlags.SetProperty Or
BindingFlags.Instance, Nothing,
targertObject, New Object() {targetPropertyValue})
End Sub
.net - Is it possible to set private property via reflection - Stack Overflow:
'via Blog this'
Private Sub SetPrivateProperty(Of t)(
ByVal targertObject As t,
ByVal targetPropertyName As String,
ByVal targetPropertyValue As Object
)
Dim type As Type = targertObject.GetType
type.InvokeMember(targetPropertyName,
BindingFlags.NonPublic Or
BindingFlags.SetProperty Or
BindingFlags.Instance, Nothing,
targertObject, New Object() {targetPropertyValue})
End Sub
.net - Is it possible to set private property via reflection - Stack Overflow:
'via Blog this'
Wednesday, July 11, 2012
How to make the treeview to scroll to a Position
I had terrible issues with treeview ... eg if you want to select a node in the bottom of the treeview and scrollbars are there then treeview does not scroll to the node ... ie does not ensure the node is visible. This code worked for me:
Justin Davis: How to control the scrollbar position in a Tree View Control:
'via Blog this'
Private Const SB_HORZ As Integer = &H0 Private Const SB_VERT As Integer = &H1 Private Sub SetTreeViewScrollPos(ByRef treeView As TreeView, ByRef scrollPosition As Point) Try SetScrollPos(DirectCast(treeView.Handle, IntPtr), SB_HORZ, scrollPosition.X, True) SetScrollPos(DirectCast(treeView.Handle, IntPtr), SB_VERT, scrollPosition.Y, True) If treeView.Nodes.Count > 0 Then Dim currentNode As TreeNode = treeView.SelectedNode currentNode.EnsureVisible() End If Catch ex As Exception End Try End Sub <DllImport("user32.dll", CharSet:=System.Runtime.InteropServices.CharSet.Auto)> _ Public Shared Function GetScrollPos(ByVal hWnd As Integer, ByVal nBar As Integer) As Integer End Function <DllImport("user32.dll")> _ Private Shared Function SetScrollPos(ByVal hWnd As IntPtr, ByVal nBar As Integer, ByVal nPos As Integer, ByVal bRedraw As Boolean) As Integer End Function
Justin Davis: How to control the scrollbar position in a Tree View Control:
'via Blog this'
Monday, July 9, 2012
Visual Studio CSLA Extension for ADO.NET Entity Framework
Visual studio extension for CSLA and EF
Visual Studio CSLA Extension for ADO.NET Entity Framework:
'via Blog this'
Visual Studio CSLA Extension for ADO.NET Entity Framework:
'via Blog this'
Saturday, July 7, 2012
Nancy - Lightweight Web Framework for .net
Another ASP.net web application framework - same like MVC
Nancy - Lightweight Web Framework for .net:
'via Blog this'
Nancy - Lightweight Web Framework for .net:
'via Blog this'
Thursday, July 5, 2012
One small thing about printers and Windows - CodeProject
Interesting :-> Get list of printers from system 32
One small thing about printers and Windows - CodeProject:
'via Blog this'
One small thing about printers and Windows - CodeProject:
'via Blog this'
Microsoft Dynamics CRM Server 2011 software requirements
Dynamic CRM installation prerequisite
Microsoft Dynamics CRM Server 2011 software requirements:
'via Blog this'
Microsoft Dynamics CRM Server 2011 software requirements:
'via Blog this'
Sunday, July 1, 2012
VB.NET Generics with Multiple Constraints
adding constraint to generic classes vb.net
VB.NET Generics with Multiple Constraints:
'via Blog this'
VB.NET Generics with Multiple Constraints:
'via Blog this'
Subscribe to:
Posts (Atom)