29 December 2006

download a good tool for ASP.NET 2.0

you can see also online example with code. for menu, tree, formview, detailview etc.

click here to open site.
click here to directly download.

27 December 2006

there are many many utility software to download on this site...

King Downloads

all most all area Business, Games, Web & Software Developer, Desktop Enhancements and many more.

download your required software and keep up your performance batter.

25 December 2006

download such a advance tool for web developer for debugging in Firefox named Firebug,

Firebug is free and open source.

you can read it's features there and also show screen shot.

  • Just the way you like it
  • Inspect and edit HTML
  • Tweak CSS to perfection
  • Visualize CSS metrics
  • Monitor network activity
  • Debug and profile JavaScript
  • Quickly find errors
  • Explore the DOM
  • Execute JavaScript on the fly
  • Logging for JavaScript

click here to open Firebug site.

click here to find another tool like this

24 December 2006

07 December 2006

hi, Microsoft Have started new Community Content in MSDN,

this is for MSDN2, you can add your own notes, code, comment in MSDN,

just use have to give a user name to register and you can access it like i have,

you can find RSS feed also Click Here

you can add a Title and write your code or comment there with simple HTML format like
font, code style, bold, italic, underline, teb indent ect.


Click here to see my ID

register here and share your knoledge.

05 December 2006

Windows Vista Presentation Foundation and the new Extensible Application Markup Language (XAML) stunning 3D visualizations of your applications and animations will be easy to implement.

you can also download source code.

you will find there
  • UniveRSS - a 3D Vista RSS reader
  • Live Gadget "Special offers"
  • Live Gadget "Job Openings"
  • Live Gadget "Recipe of the day"
Click Here ThePanel

03 December 2006

download some very good resume template in Microsoft Word format form Microsoft office online off site

Click here to open Template Page. where some template have been download more the 280000.

13 November 2006

You will find here Microsoft Feeds Directory.

  • orange rectangle a feed icon
  • with the letters XML
  • or RSS
all most all RSS for Microsoft are available here.

Click here to find detailed information for RSS Feeds. Where you will find some RSS Reader sites and applications. and also that how it's help us.

A to Z Microsoft Feed

Find detailed information for RSS on Wikipedia, Open XML Developer, RSS-Specifications
This site has been designed by the SQL Server Data Mining team to provide the SQL Server community with access to and information about our exciting data mining features.


Click here.

25 October 2006

it a very good site, where you can create robot own.
Click Here to try it.

Click here to launch it home page.

where you will found for news, forum, articles, magazine and more.
now Google allows to create custom search it create feature try it out.

just like my custom search engine is there.
find Web Component, Windows Forms Component, Additional Components and Third Party Controls Developers for ASP.NET, all most third party. Click here.


and you can see online ASP.NET Control Gallery also. Click Here

17 October 2006

hurry up, to download Microsoft e-Learnign Course.

click Here where you found details

there is all most all Microsoft Office 2007 course avalable.

remember that it is limited for 90 Days

i fond this information form
Microsoft Higher Education - Mid-Atlantic

16 October 2006

you can found here all download list avalable in Microsft download center.

like A to Z :

15 October 2006

get free tools to download for vista operating system click here.

see video to learn vista click here.

14 October 2006

I have come to know that there is some new version for Visual Studio. but it is actualy "Orcas",

i try to search for this and i found many information for this. here it is one of them.

HTMLKit.com's CSS Poster is an online tool that can be used to generate graphical quick references for your CSS files.

http://www.chami.com/html-kit/services/cssposter/

there are many other tools:

or click here

07 October 2006

03 October 2006

add hit counter on your site or blog free.

just add you e-mail address.

select your hit counter style and simple copy paste code for hit counter.

enjoy!

27 September 2006

this is a grate opportunity to create blog in MSDN for India.

find more details on here.

26 September 2006

i know before this that we can debug all sql query and all kind of transction in sql server 2000 and 2005, but i don't know how to do this today i found some details about this.

We can debug every transction of sql server.

all this tool are avalable in 'Binn' folder of the sql server directory. like:
C:\Program Files\Microsoft SQL Server\80\Tools\Binn


  • Start sql server from run : sqlservr.exe
  • Start sql server query analyzer from run : isqlw.exe
  • Monitoring with SQL Profiler : profiler.exe
  • show chart view for sql server from : Administrative Tools/Performance

these are important tools. suppose you are working in front end application and you want to know that which query fire to sql server you can show it.

14 September 2006

find almost all import leader blog.
Click here to open the page.

there are many many leader blog path avalable.

like
Visual Studio Team System Foundation Server
Visual Studio
.NET Compact Framework

and many other
read there idea

12 September 2006

last few days i m working with cryatal report 9 and vb.net 2003.

i found some usefull information for crystal report and vb.net. here are some
of that. i have to create a report with some sub report. The report is using
sql stored procedure in back-end. i have to pass it's parameter from vb.net.

there is one primary report and eleven sub report. this is a new experience for
me. i use stored procedure to calculate and retrive complex data from data
base. there was very good use of stored procedure. but finaly i have to work


with crystal report and vb.net for front-end.








'Finaly i create a class to show that report. this are the referance, in that class.


Imports System.Data.SqlClient Imports CrystalDecisions.CrystalReports.Engine
Imports CrystalDecisions.Shared

Public Class rpt_Schema

Dim TheReport As Integer

Public Sub New(ByVal ReportIDX As Integer)

TheReport = ReportIDX

End Sub


'i create a function which returm all required informationform database for this report. and pass it in to parameter for crystal report.
'this fucntion return that report document.

Private Function generateReport() As

ReportDocument

Dim tmpCrystalReport As New ReportDocument
tmpData = generateBasicInfo()
tmpCrystalReport.Load(Application.StartupPath & "\Report\rptMain.rpt")

Dim crParameterDiscreteValue As ParameterDiscreteValue
Dim crParameterFieldDefinitions As ParameterFieldDefinitions
Dim crParameterFieldLocation As ParameterFieldDefinition
Dim crParameterValues As ParameterValues

' Get the report's parameters collection.
crParameterFieldDefinitions = tmpCrystalReport.DataDefinition.ParameterFields

'not i have to pass all parameters here. as follow:
'there was 36 parameters so i create this procedure "generateReport_child".

'param 1
generateReport_child("@vCenterIDX", tmpData.CenterIDX,crParameterFieldDefinitions, crParameterFieldLocation,crParameterValues)

'param 2
generateReport_child("@vYearIDX", tmpData.YearIDX, crParameterFieldDefinitions,
crParameterFieldLocation, crParameterValues)

.....
.....

'finaly

generateReport = tmpCrystalReport tmpCrystalReport = Nothing End Function

End Function

Private Sub generateReport_child( _ ByVal ParamName As String, _
ByVal ParamValue As Integer, _
ByVal crParameterFieldDefinitions As ParameterFieldDefinitions, _
ByVal crParameterFieldLocation As ParameterFieldDefinition, _
ByVal crParameterValues As ParameterValues)

'i have all arguments datatype was integer here
Dim crParameterDiscreteValue As ParameterDiscreteValue
crParameterFieldLocation = crParameterFieldDefinitions.Item(ParamName)
crParameterValues = crParameterFieldLocation.CurrentValues
crParameterDiscreteValue = New CrystalDecisions.Shared.ParameterDiscreteValue
crParameterValues.Add(crParameterDiscreteValue)
crParameterFieldLocation.ApplyCurrentValues(crParameterValues)

End Sub

End Class

'-----------------------------------
''in form coding. just three line code.

Private Sub rptPreview_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load

'create instance Dim rpt1 As New rpt_Schema(<>)
CrystalReportViewer1.ReportSource = generateReport()
rpt1 = Nothing

End Sub




Crystal Decisions Project Examples

VB.NET Web Sample ApplicationsVB.NET Windows Sample Applications

a ready code for sub report click here.

but i had a problem with, when i attach account report more then one time as sub
report in same primary report. i cant successfully pass parameters in that sub
report. if i will found any result for the same put that here letter.

09 September 2006

there are many many flash game on Ianag where you can play them.

http://www.ianag.com/arcade/page-allgames

enjoy them.

29 August 2006

Flash is 10 year old 1996-2006.
see wrold best site here.

22 August 2006

If you are trying to find some ready code.
just visit http://www.keithrull.com/ or direct go to .NET category.

you will found many many usefull code and information there.

20 August 2006

this is one usefull editor to for javascript, html, and css and javascript functions also.

you can download this tool form site.

this are some images form that site. i just use this images to provide just information. all images source is http://www.aptana.com/

Image 1


Image 2

18 August 2006

i found this inforamation from Microsoft Coding4Fun!!

http://ebooks.bloggoing.com/
http://www.conitec.net/english/gstudio/download.php
http://www.gamasutra.com/features/20060524/puech_01.shtml
Some eBooks

Download Demonstration
Download Customer Stories, grate link
Download Game Engine Information/Code

Popular ScienceMonthly magazine about current science and technology

12 August 2006

very very usefull tool for windows operating system.

you must download this tool.


i found this tool information form here.
there is also an image

you just go thourgh it.
here is such a grate link for the downloading software to allow automatically blocks websites.

Click here to open main link from i knew this.

Click here to download that software for Mozilla Firefox.
i found a blog where some one have put link to download die an der C# Language Specification - ECMA 334 standard (4th Edition – June 2006) interessiert sind, bitte sehr (2,49 MB)!

plz click here to open that blog.

09 August 2006

here you found some usefull information about crystal report and visual studio.net 2.0

you will also found some examples for c# and vb.

Click here to open download link page for this
or
Click here to open download link page for example for Crystal Report 9 ans 10 with C#.net and VB.net
this is a grate feature utility tool for you computer by microsoft.

realy very quick search result on desktop as well as web.

Click Here to open it's home page.


Click here to show demo of features of desktop search.

08 August 2006

if dou you want to download some best traning in visual studio 2005

1) Developing Applications in Visual C# .NET

2) ASP.net web applicaions with Visual C# .NET

both download is more then 200MB but will find such grate idea form this.

find more details here.


there are many Learning Resources for Microsoft SQL Server 2005. you will find more usefull information here about Sql Server.

07 August 2006

i got email from TechRepublic NetNote about new updates on theis site.

there a new directory of over 50,000 software downloads for our TechRepublic members in this Beta Directory. Within this software directory, you'll find everything from Windows Developer Tools to Collaboration and Management Tools and CRM Downloads to Anti-virus and Spyware Utilites to Games for Mac and Games for Windows.

please click here to get them.
Web Application Projects provide a companion web project model that can be used as an alternative to the built-in Web Site Project in Visual Studio 2005. This new model is ideal for web site developers who are converting a Visual Studio .Net 2003 web project to Visual Studio 2005. (Released May 8, 2006)

Click here to see more information or to download it.

06 August 2006

if you are still working in vb.net 2003
there are some cool controls for the desktop application.
find out them form MSDN

It is a grate online book to learn DataBinding Controls with Dasktop Application. it is a grate for beginers. you can found many many examples there, which are so easy to understand.

i found this link form
http://www.itzero.com/0day/0day_ebook_OL_read/
0day_Online_Microsof/Index.html

there is also many other usefull information.

i just look today this about this cool technology. i also try online example for this. you must also visit this site one time because we developers have to use some this kind of feature in the nearest feature.

Live clipboard is a new technology you can visit it's web site on http://microformats.org/
you can also shwo video on channel9.

here are some other related links.
above image comes from that site directily, i use this image to just as information provide to you.

05 August 2006

If you want to take your love for gaming or developing to the next level by learning how to build arcade games, you've come to the right place. Unleash the arcade in your PC with free downloadable resources tailored for either the beginner or the intermediate developer:
  • Free software to develop
  • Complete how-to guides
  • Informative webcasts
send your project and win $100
for more details..

Microsoft Express Heroes Promotion
you can easily debug srored procedure same as like you debud vb or c# code.

1) open server explore.
2) select stored procedure and open it.
3) add break point any where after all arguments of that sp.
4) now right click on that sp and click on "Step Into Stored Procedure" Command.
5) you can see that is in debud mode.
6) click graphical view of this solution on


29 July 2006

28 July 2006

test

26 April 2006

saAction