Hey!
Learn how to create a blog and make money online with Google on Googling Matters

Friday, March 14, 2008

The Static solver project

I have some days that I attended classes about Static and I found it quite cool.
The classes give me an idea on creating a new project this time will help math students. The project is simple:

1- Fill your table
2- The program calculates the overall, the difference…
3- Estimate
4- Draw graphs
5- I still think

The program should use a Database? No I think a table is sufficient, but a table will be necessary to save the static table! Or saving it on file format will need much work!
Still think on it and on solutions.
Online static solver? May be after I finish the following :)
When I’ll start?
30 May 2008 (When I finish exams)
When I’ll finish
15 days are estimated
Lines of code
2’000 or I think a little more
Size
Won’t be more than 1 MB with the installer
Download and use
Free to download and use
Where?
When I finish I’ll post it right on this blog!

Wednesday, March 12, 2008

MSDN Forums, the best on the Net?

I think they are (MSDN Forums) the best on the web. No ad, no much links, simple skin, easy to navigate, many users are ready to solve your problems and other are friendly…
Plus as you answer you’ll get a higher rank on the forums, you can also publish your tutorials and articles. I’m doing so and I have many friends right their.
What about other forums?
You can see Google groups, answering rate is high their, but there’s so much traffic and your problem can be unseen.
So I advice you to choose the MSDN forums.
Turn off your passivity
Don’t ask only! Try to solve others’ problem, especially beginners one.
Post tutorials and sample codes.
Join the Miscellaneous forums and exchange ideas
Get fame and prosperity
By solving other problem you show to moderator and MVP your knowledge and your capacities.
You may win the MVP Reward

Wednesday, March 5, 2008

Two nested Loop? How to exit then!

I think I write a lot about web and forget dot net tricks and solutions!
It’s because searching is the most important things and… and let’s start solving our problem.
Finally the problem comes upon every beginner on programming.
If you have a loop, you can exit it at any moment by executing an Exit Do statement and continue...
Let suppose you have two nested loops or for…Next
Let suppose that you want to exit them from the innermost loop
In the following code you want to exit the both loop but this code don’t work as desired!
For I as integer = 1 To 10
For J as integer = 1 To 10
If I = 0 then Exit
For
Next
Next
The solution is to use two different kinds of loops.
For I as integer = 1 To 10
Do while J <= 10
If I = 0 then exit for
J += 1
Loop
Next
The following code will quit both of the loops! Nice, no?
Still get a problem? Post a comment.