by Bar Zohan
10. June 2010 01:28
Huffman Coding - C++
[More]
by Bar Zohan
21. April 2010 23:07
Compressing strings using c#
[More]
by Bar Zohan
16. April 2010 23:55
Here you can download the OpenNETCF Desktop Communication Library which includes all necessary classes to use activesync to connect and transfer files to/from a mobile device.
Add the project to your solution. Add a reference to the OpenNETCF Project you've just added inside the project you want t...
[More]
by Bar Zohan
16. April 2010 23:32
If you have a mobile device that has an entegrated gps and uses windows mobile as operating system you can access the gps data very simply using a wrapper library that handles gps operations.
First download this wrapper library.
Microsoft.WindowsMobile.Samples.Location.rar (7.19 kb)
Add a referen...
[More]
by Bar Zohan
6. April 2010 00:48
Writing an asp.net web service function which handles file upload.
[More]
by Bar Zohan
5. April 2010 23:46
Storing An Object In Sequential File, C++
[More]
by Bar Zohan
5. April 2010 23:34
A dynamic sized array class in c++
[More]
by Bar Zohan
5. April 2010 23:20
Writing a linked list in c++
[More]
by Bar Zohan
5. April 2010 23:02
Using GDI To Draw Outlined Text
[More]
by Bar Zohan
5. April 2010 21:12
For sorting IQueryable's
[code:c#]
public enum SortDirection { Ascending, Descending }
public static IQueryable<T> DynamicSort<T>(this IQueryable<T> data , string columnName, SortDirection direction) { ...
[More]
by Bar Zohan
26. January 2010 19:53
Problem
In a page you need to list items and their photos but those photos are all in different sizes. So you have a standart photo area and you have to fit those images into it. And not only fit them, but also you have to preserve their width to height ratio. So here is how we deal with this probl...
[More]
by Bar Zohan
21. January 2010 02:06
A listview that creates it's column structure and populates it's rows directly from a generic list.
[More]
by Bar Zohan
21. January 2010 01:40
Briefing:
In this article I'm going to implement a simple plug in structured calculator. Calculator will take two numeric inputs from the user and user will select which calculator plug in to use. After that user will hit calculate button and our little program will ask the plug in to calculate tho...
[More]
by Bar Zohan
21. January 2010 00:25
Mvc framework has an html helper for giving ajax links (Ajax.ActionLink), but it does not provide one like Ajax.ImageActionLink. But ofcourse there is a simple, tricky workaround .
<%= Ajax.ActionLink("[imglnk]", "IndexContent", new { id = "main" }, new AjaxOptions { UpdateTargetId = "Righ...
[More]
by Bar Zohan
20. January 2010 21:03
Briefing
As mentioned in the title, our data provider is going to be very simple. Aim of this article is giving the main idea behind a Linq to Sql like data structure.
So what we are going to do now is as simple as this;
Create a new database and a new table inside it. (I'll use Sql Server 2008...
[More]