Connecting an Expression Blend Project to Team Foundation Server
I have heard of people wanting and needing to add projects created in Expression Blend to Team Foundation Server.
Here is the recipe:
1) Create your project in Expression Blend … click OK
![]()
2) Select the option to open your recently created project in Visual Studio.
![]()
Once that option is selected, your solution will open up in Visual Studio, close Expression Blend at this point.
![]()
Now, I want to add this project to Source Control …
![]()
Next, I connect to my TFS environment, and pick the location to save my project
Once the project is added, I will get a status window of pending changes for my project, all that we are left to do is to check in those changes.
![]()
![]()
Since we have checked in our project, we can now close Visual Studio, and we will proceed to open Expression Blend again. And select our project we will!
![]()
We notice some differences from before, just by opening it
![]()
What differences you say?!?
Notice the lock to the right of the item name …
![]()
And we also get this when we right click …
![]()
And there we have it, it is a combination of tools to achieve this, but it is well worth it.
convert decimal into octal in assembly language
SOURCE CODE:
.model small
.stack 100h
.code
main proc
mov ax,635
mov bx,8
mov dx,0
mov cx,0
lbl1:
div bx
push dx
mov dx,0
inc cx
cmp ax,0
jnz lbl1
lbl2:
pop dx
add dx,30h
mov ah,2
int 21h
loop lbl2
mov ax,4c00h
int 21h
main endp
end main
.model small
.stack 100h
.code
main proc
mov ax,635
mov bx,8
mov dx,0
mov cx,0
lbl1:
div bx
push dx
mov dx,0
inc cx
cmp ax,0
jnz lbl1
lbl2:
pop dx
add dx,30h
mov ah,2
int 21h
loop lbl2
mov ax,4c00h
int 21h
main endp
end main
Assembly assignment
Assembly assignment 1 to 10 except 5
Download here:
Download here:
How to use Emu8086 for assembly language programming
Emu8086 is an emulator program that contains a source editor, assembler,
disassembler, and emulator for assembly programs. This software is
useful for those who has just began to study assembly language. It
compiles the source code and execute it on emulator step by step. This
is really important as one can see the register, memory, stack,
variables and flag contents after execution of each instruction. All
memory values can be investigated and edited by a double click. The
instructions can be executed in a regular forward direction and also in
reverse direction.
To start Emu8086 click the Icon on your desktop or from your start menu. Now if u select New you will be given an workspace. If you want your workspace initially clear just check the corresponding "Empty Workspace" option. This will open the source editor window where you can enter your program. You can also open sample programs that are already stored select Sample.
To test the software enter a very simple program and Click Emulate
You can also compile the program before emulating it. If the program is successfully compiled its expected that the program will give expected result after emulation not considering any logical error of course. Some logical errors remain undetected while compiling the program.
This will lead to the Advanced emulation screen where you can test the whole program step by step and observe the outcome. You can use single step forward or reversed to troubleshoot an executable. You can also Load other executables to debug by the Load option or Reload the program itself by the Reload option.

emu8086 can create a tiny operating system and write its binary code to a bootable floppy disk. This software package includes several virtual external devices: robot, stepper motor, led display, and traffic lights intersection. Virtually anyone with any programming experience can design animated virtual devices in assembly language or in any other programming language.
Click here to download Emu8086
To start Emu8086 click the Icon on your desktop or from your start menu. Now if u select New you will be given an workspace. If you want your workspace initially clear just check the corresponding "Empty Workspace" option. This will open the source editor window where you can enter your program. You can also open sample programs that are already stored select Sample.
To test the software enter a very simple program and Click Emulate
You can also compile the program before emulating it. If the program is successfully compiled its expected that the program will give expected result after emulation not considering any logical error of course. Some logical errors remain undetected while compiling the program.
This will lead to the Advanced emulation screen where you can test the whole program step by step and observe the outcome. You can use single step forward or reversed to troubleshoot an executable. You can also Load other executables to debug by the Load option or Reload the program itself by the Reload option.
emu8086 can create a tiny operating system and write its binary code to a bootable floppy disk. This software package includes several virtual external devices: robot, stepper motor, led display, and traffic lights intersection. Virtually anyone with any programming experience can design animated virtual devices in assembly language or in any other programming language.
Subscribe to:
Posts (Atom)

