Wednesday, January 9, 2008

Microsoft Visual Studio 2008

BOOKS LINKS

ABAP

ALL

some more

Microsoft Visual Studio 2008 and .Net Framework 3.5

Get More Info

Try Visual Studio 2008

Download Express Edition

All information about MCSD (.Net) CertificationMCSD (.Net)

Information Career in Information Technology (Hardware/Software/Project Management)

Ebooks

They do have a lot of books (usually computer-related)


http://ebookspyder.net/

http://www.ebookshare.net/

http://reallyusefulebooks.com/update/

http://www.itebookhome.com/

http://knowfree.net/

http://www.ebooksheaven.info/

http://www.ebooksarchive.net/

http://www.flazx.com/

http://www.network-ebooks.com/

http://ebooks-share.info/

http://anonym.to/

http://www.freebooksclub.net/

Video Tutorials for microsoft Tehnologies

Ajax

Asp.net

Linq

Sql Server

Asp.net 3.5

exams 2

Download any ActualTest PDF directly from actualtests.com

1 - create one account in: Actual Test

2 - Select your exam number replace by xxx-xxx and down.
For example, download Microsoft 070-290 exam.

3 - Copy & Paste link in your browser and replace xxx-xxx by number
selected.hxxp://www.actualtests.com/default.asp?show=downfile&file=xxx-xxx.zip

Example:hxxp://www.actualtests.com/default.asp?show=downfile&file=071-290.zip

EXAMS

How can I take a beta exam?
Microsoft sets prerequisites for beta exam candidates that vary by exam. In every case of, this has meant having passed a related exam or older version of the one going into beta testing. For exam 70-218, however, they excluded anyone who was already an MCSE on Windows 2000. They were trying to eliminate overqualified candidates. For some reason, Microsoft also requires you to subscribe to the 'MCP Flash' email newsletter in order to get an invitation.
Wait a minute, if you have to have passed a previous exam to take a beta, how did they choose people for the first exam?
Long ago, MS beta exams were open to anyone interested. There were no prerequisites or invitations. But you had to pay half price to take the exam, so that encouraged candidates to screen themselves to a degree. There were also prizes for passing or sometimes just taking these beta exams.
How do I know when a new exam is on its way?
Microsoft has a page that lists exams in development, it's worth checking once in a while.
All my friends got invitations, but not me. What shall I do?
Email mcphelp@microsoft.com and express your interest in the exam and any qualifications you think are relevant. Also include any MCP ID so they can check any criteria that hadn't thought of. They've always sent you the necessary information to register with very little hassle.
How long does an exam beta period last?
Usually about a week, but if an insufficient number of people take the test, Microsoft will extend the beta. They need a certain minimum to ensure the statistics gathered are valid. The first 4 or 5 betas I did all had significant extensions - Some lasted for months. But in the last couple of years, these extensions seem to be rare, so don't count on seeing one.
How is a beta exam different from a live exam?
It's free. It's much longer than the live exam - up to twice as long. And you don't find out if you passed when you're done. Your result is snail-mailed to you anywhere from 5 to 10 weeks after the beta ends. If you passed the beta, you can usually see results posted to your Microsoft transcript a week or so before the mail arrives. When Microsoft announces a specific 'go live' date for an exam, it usually means that results will be on their way to beta testers soon.
If you pass a beta exam, do you still have to retake the exam after it goes live?
No, in fact you are prohibited from retaking an exam after passing it. Passing the beta counts for everything that passing the live version does.
Why would anyone want to take a beta exam?
Did I mention it was free? Many beta testers also enjoy participating in the process. It's likely that comments on questions during a beta are much more important than after the exam has gone live. There's also some competitiveness about being 'first' to pass an exam, and beta testers have a huge advantage there. There have also been serious problems with braindumps for these exams, eventually requiring great skepticism about results obtained after actual exam questions are widely available. While MS has recently taken some very positive steps in addressing this problem, avoiding any possible suspicion of cheating is one of the big factors that motivates me.
Why doesn't everyone try to take beta exams?
They are much longer than live exams. There is usually a lot less known about an exam during the beta. Is it considered easy or hard? How many questions are there? Are any particular topics emphasized? And there are probably no tools specifically designed to help prepare you for the exam during its beta period. No practice exams, no study guides, just you and your big giant brain. Also, since the beta periods are generally pretty brief and invitations are typically sent about one month in advance, some people are just unable to arrange the time to take the exam even without doing any specific preparation for it.
Is a beta exam easier or harder than the live exam?
In short, no. The question pool for the live exam will be composed of a subset of questions that appeared on the beta exam, just with a small number removed that proved to be extremely easy or difficult or had a strong negative correlation with overall exam performance. And those removed items would not be counted in the scores for the beta testers. The beta statistics provide, among other things, information about the relative difficulty of each question, so the live exams can be reliably structured to be exactly as difficult (or easy) as the beta exam is. Microsoft does not give beta testers any "bonus" or "penalty" for having taken the beta - their criteria for passing is the same in either case.However the beta will be longer, so endurance may be a slight factor making it more difficult. And testers taking the live exam likely have many more resources available to help prepare for the exam.

keyboard shorcuts

Auto html format/indent in Visual Studio .NET

Auto html format or indent
For example, let's say I paste this HTML into VS.NET "source"view: I'd like to issue a command to VS to have it reformat this source and change it. Try this : "Tools", "Options", scroll to "Text Editor", and then "HTML","Miscellaneous", select "Format HTML on Paste".That does exactly what you want. Simply press:Control + K AND Control + D....and the code will be auto-formatted. This works in HTML and in code(VB/C#) windows

1 comments

Labels: keybord shorcuts, visual studio


Visual Studio shortcut keys

[-]



Visual Studio shortcut keys



Visual Studio
shortcut keys Understanding Code: Exploring the .NET framework’s Class
Relationships The dynamic class diagram is a great way of exploring class relationships
in ­­the .NET framework. Now I’m sure most people will already be using
the class diagram for their own class hierarchies (Add a class diagram, go to class
view [Ctrl-W, Ctrl-C], and drag a class to the diagram), but did
you know that you can also use a class diagram as a great way of getting familiar
with the .NET framework in VS2005? In class view, open the “Project References”
tree and drag a namespace to the class diagram (e.g. System.IO). Also, don’t forget
you can “Show Derived classes” by right-clicking on a class. Navigating Code You
are probably aware of the right-click ‘Go to Definition” navigation (with your cursor
placed in a symbol). It is also bound to F12. What you might not be aware of is
its counterpart, Shift-F12 which shows all references to the symbol defined at the
current cursor location. F12 - Go to symbol definition Shift-F12
- Show all references to a symbol The F8 key is a great shortcut
key to remember. It can cycle through all references found with F12,
and in addition it can cycle through any ‘List’ output window, such as the task
list, error list, etc. F8 - Cycle through list of items in the
currently active output window Shift-F8 - Same as F8 but in the
opposite direction The next two key ‘chords’ are very useful when you are dealing
with unfamiliar code, as they provide a high level view of a class’s methods:
Ctrl-M, Ctrl-O - Collapses all methods to outline view Ctrl-M, Ctrl-M
- Collapses/expands the method the cursor is currently in. Most people are aware
of the “IE style navigation” using Ctrl-minus and Ctrl-Shift-minus to move backwards
and forwards through visited code: Ctrl-‘-‘ - Move backwards to
previous cursor location Ctrl-Shift-‘-‘ - Move forwards to last
cursor location But the following two are less well known (and in many instances,
more useful). If you are navigating a sequence of method calls, and you move around
in the surrounding code, the IE style navigation will cycle through every location
the cursor was placed. The following two commands move up and down the “Definition
Navigation Stack”, so just those methods that you delved into using F12: Ctrl-Shift-8
- Move up the definition navigation stack (stack pop) Ctrl-Shift-7
- Move down the definition navigation stack (stack push) Another less known shortcut
is Ctrl-I which activates incremental search. Open a source file,
hit Ctrl-I and start typing the first few letters of your search
text. Visual Studio will go to the first occurrence and continuing searching as
you enter more characters. Hit Ctrl-I to go to the next occurrence
(and of course, Ctrl-Shift-I to go to the previous). Pressing Escape
will turn off incremental search. Ctrl-Shift-I - Incremental search
Ctrl-Shift-F - Find in all files (more useful than Ctrl-F)
Ctrl-H - Replace Another tip involves finding files. You can download
a free add-in called VS File Finder from the following link: http://www.zero-one-zero.com/vs.
It’s easy to use and good for navigating in large solutions. File Finder shows up
as a new window after you install it from the .msi file. I docked mine with the
output and list panels at the bottom of the IDE window. Any text you enter in the
textbox will filter the list of files displayed by partial file name matches. For
some reason, I always seem to forget these two shortcuts: F7 -
Switch to code view Shift-F7 - Switch to design view Modifying
Code Ctrl-K, Ctrl-C - Comment out currently selected code Ctrl-K,
Ctrl-U - Uncomment currently selected code Ctrl-K, Ctrl-F
- Auto format selected code FxCop is a Static Analysis tool that can not only help
you come to terms with an unfamiliar code base (see previous post) but also to improve
existing code. FxCop runs over the IL generated from your source code and performs
a set of rule based comparisons on it. There are 2 rule sets that can help with
refactoring: naming and maintainability. One of the rules that can generate warnings
relates to something called ‘cyclomatic complexity’. Cyclomatic complexity is just
the number of branches in a method. The higher the value, the greater the likelihood
that a method could be reduced by having sections of code extracted into new methods
(refactored). Visual Studio 2005 contains a number of refactoring commands to help
you reorganise code: Ctrl-R, Ctrl-M - Extract method Ctrl-R,
Ctrl-E - Encapsulate field Ctrl-R, Ctrl-I - Extract
Interface F2 - Rename [Ctrl-R is the first ‘note’
in most refactoring key combinations, and there are other refactoring commands in
addition to those I've listed above] Debugging Code These are essential debugging
shortcuts: F10 – Step over Ctrl-F10 – Run to cursor
F11 – Step into Shift-F11 – Step out F9
– Toggle a breakpoint F5 – Run with debugging Shift-F5
– Stop debugging Control-F5 – Run without debugging Attributes
can make your debugging more effective by declaratively altering the behaviour of
the debugger: [DebuggerStepThrough()] is used to decorate a method or property to
prevent the debugger stepping into it whilst debugging. [DebuggerDisplay(“{propertyname}”)]
allows you to define the value which is displayed by default in debugger visualisers.
[DebuggerBrowsable(DebuggerBrowsableState.Never)] can be used to prevent the display
of data, such as private fields, in visualisers. In order to use the debugger attributes
you will need to import the System.Diagnostics namespace. You can find out more
about debugger attributes here: Enhancing Debugging with the Debugger Display Attributes.
One final debugging tip: you can hold down control key when drilling into a visualiser
to make it transparent while you inspect the code beneath it.



0 comments

Labels: keybord shorcuts, visual studio


Saturday, November 17, 2007
KeyBoard Shortcuts XP
Getting used to using your keyboard exclusively and leaving your mouse behind will make you much more efficient at performing any task on any Windows system. I use the following keyboard shortcuts every day:
Windows key + R = Run menu
This is usually followed by:cmd = Command Promptiexplore + "web address" = Internet Explorercompmgmt.msc = Computer Managementdhcpmgmt.msc = DHCP Managementdnsmgmt.msc = DNS Managementservices.msc = Serviceseventvwr = Event Viewerdsa.msc = Active Directory Users and Computersdssite.msc = Active Directory Sites and ServicesWindows key + E = Explorer
ALT + Tab = Switch between windows
ALT, Space, X = Maximize window
CTRL + Shift + Esc = Task Manager
Windows key + Break = System properties
Windows key + F = Search
Windows key + D = Hide/Display all windows
CTRL + C = copy
CTRL + X = cut
CTRL + V = paste
Also don't forget about the "Right-click" key next to the right Windows key on your keyboard. Using the arrows and that key can get just about anything done once you've opened up any program.
Keyboard Shortcuts
[Alt] and [Esc] Switch between running applications
[Alt] and letter Select menu item by underlined letter
[Ctrl] and [Esc] Open Program Menu
[Ctrl] and [F4] Close active document or group windows (does not work with some applications)
[Alt] and [F4] Quit active application or close current window
[Alt] and [-] Open Control menu for active document
Ctrl] Lft., Rt. arrow Move cursor forward or back one word
Ctrl] Up, Down arrow Move cursor forward or back one paragraph
[F1] Open Help for active application
Windows+M Minimize all open windows
Shift+Windows+M Undo minimize all open windows
Windows+F1 Open Windows Help
Windows+Tab Cycle through the Taskbar buttons
Windows+Break Open the System Properties dialog box

acessability shortcuts
Right SHIFT for eight seconds........ Switch FilterKeys on and off.
Left ALT +left SHIFT +PRINT SCREEN....... Switch High Contrast on and off.
Left ALT +left SHIFT +NUM LOCK....... Switch MouseKeys on and off.
SHIFT....... five times Switch StickyKeys on and off.
NUM LOCK...... for five seconds Switch ToggleKeys on and off.
explorer shortcuts
END....... Display the bottom of the active window.
HOME....... Display the top of the active window.
NUM LOCK+ASTERISK....... on numeric keypad (*) Display all subfolders under the selected folder.
NUM LOCK+PLUS SIGN....... on numeric keypad (+) Display the contents of the selected folder.
NUM LOCK+MINUS SIGN....... on numeric keypad (-) Collapse the selected folder.
LEFT ARROW...... Collapse current selection if it's expanded, or select parent folder.
RIGHT ARROW....... Display current selection if it's collapsed, or select first subfolder.

Type the following commands in your Run Box (Windows Key + R) or Start Run
devmgmt.msc = Device Managermsinfo32 = System Informationcleanmgr = Disk Cleanupntbackup = Backup or Restore Wizard (Windows Backup Utility)mmc = Microsoft Management Consoleexcel = Microsoft Excel (If Installed)msaccess = Microsoft Access (If Installed)powerpnt = Microsoft PowerPoint (If Installed)winword = Microsoft Word (If Installed)frontpg = Microsoft FrontPage (If Installed)notepad = Notepadwordpad = WordPadcalc = Calculatormsmsgs = Windows Messengermspaint = Microsoft Paintwmplayer = Windows Media Playerrstrui = System Restorenetscp6 = Netscape 6.xnetscp = Netscape 7.xnetscape = Netscape 4.xwaol = America Onlinecontrol = Opens the Control Panelcontrol printers = Opens the Printers Dialog
internetbrowser
type in u're adress "google", then press [Right CTRL] and [Enter]add www. and .com to word and go to it