Forum: Assembly Oct 19th, 2008 |
| Replies: 4 Views: 1,326 thx a lot for your reply. I've already solved the problem by (ustr2dw and ustr2dw) |
Forum: Assembly Oct 19th, 2008 |
| Replies: 4 Views: 1,326 Actually no. I mean add 2+3=5
The Answer Must Be "5"
thx. |
Forum: Assembly Oct 19th, 2008 |
| Replies: 4 Views: 1,326 Hey guys, how can I add two numbers stored in asciiz format ?
str1 db "2",0
str2 db "3",0
thx. |
Forum: Computer Science Sep 6th, 2008 |
| Replies: 10 Views: 1,559 First Check out this site:
http://msdn.microsoft.com/en-us/library/ms713505.aspx
Learn Windows Multimedia API. |
Forum: VB.NET Mar 11th, 2008 |
| Replies: 3 Views: 966 Hi,
I'm not sure for the first question but the answer for the second one is here:
# to remove the borders of the form you have to change the FormBorderStyle property of the form = None.
# to... |
Forum: VB.NET Mar 9th, 2008 |
| Replies: 5 Views: 6,728 Hi,
This code is gonna connect to the Access database and load data into datagrid:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)
Handles MyBase.Load
... |
Forum: VB.NET Mar 9th, 2008 |
| Replies: 1 Views: 3,195 Hi,
It's pretty simple:
PictureBox1.Image.Save("FileName",Image Format)
E.G.:
PictureBox1.Image.Save("C:\NewFileName.jpg", System.Drawing.Imaging.ImageFormat.Jpeg)
MaxDev |
Forum: VB.NET Mar 9th, 2008 |
| Replies: 1 Views: 4,685 Hi,
You can Make a combobox non-editable by setting its DROPDOWNSTYLE = DropDownList.
It's Simple!
MaxDev |