Pages

11/11/2014

c# and asp.net development on Ubuntu

MonoDevelop  is the tool used to develop .Net language applications on ubuntu To install on Ubuntu use terminal with following command: sudo apt-get install monodevelo...


Show Windows Virtual Keyboard c#

The simplest way to show windows virtual keyboard using c# is as follows: 1. Create new windows form project. 2. Double Click on newly created form to create form load event. 3. Now start a process of virtual keyboard by following code on form load event: System.Diagnostics.Process.Start("osk.exe"); 4. Now create form closing event by right clicking the form view and clicking on events from properties windows. Now double click on formclosing event. It will create the form closing event. Add following code in it: Process.GetProcessesByName("osk")[0].Kill();   For any question you may contact m...


8/07/2012

Browse images from directory and Convert Colored Images to Gray Scale c#

Recently i have to convert colored bitmap/jpeg images to gray scale in my project. I found many solutions on Google but found one useful. This tutorial will help you browse images from directory and convert them to gray scale one by one. First of all create a solution and windows form project in visual studio. Then drag two picture boxes from toolbox on the left on to the form and two buttons also. Name picture boxes pctColoredImage and pctGrayScale. Also the two buttons btnNext and btnPrevious and show text on them Next and Previous respectively. Double click on each picture boxes and buttons to create their events. Now create List<string> FilesFromFolder = null; a global variable and in constructor initialize it like this FilesFromFolder = new List<string>(); Now...


6/01/2012

HP g6 weak wireless issue resolved

I recently bought HP g6 i5 and very first day got issue of weak wireless signals. First i thought its  just the router issue but it kept as it is for week or so.  Got frustrated with it and started googling it. Read some different posts so gonna conclude them. One post said remove the back cover and check if wireless antennas are not connected to the wireless card. This may be one of the issue. It resolved the issue of the person who posted it. Another said that just update the wlan broadcomm drivers. It can be done by going into the device manager and clicking expand on the network adapters. Find wireless there and right click on it and update drivers. It works on windows 7. You can also download the drivers from hp site.  Both are the solutions. I followed the second...


4/10/2012

Use Morse Code to write text in Desktop Apps

First of all create a windows form project in visual studio and drag three buttons on the form and a textbox(you can add further controls but these are minimum controls needed). Declare following global variables.\ private string inputString = "";        private int count = 0;        private static readonly Dictionary<string, string> mapping = new Dictionary<string, string>() {        {  ".-","a" },        {  "-...","b" },        {  "-.-.", "c"},        {  "-..","d" },        {  "." ,"e"},       ...


5/05/2011

Getting all databases from Sql Server 2005-2008 using c#

This code will help you in getting all databases of Sql Server and show them in the drop down list. Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table...


4/19/2011

Paging through SQL Server

This query will help you in doing paging through SQL Server. You will need to pass just the starting and ending index and it will return the records.. DECLARE @startingindex int; DECLARE @endingindex int set @startingindex=10 set @endingindex=20 select * from Table_Name where table_id in( SELECT us.table_id FROM (SELECT ROW_NUMBER() OVER (ORDER BY table_id) AS Row, Table_id FROM Table_Name) us WHERE Row >@startingindex and Row<@endingindex ...


12/28/2010

Running SQL Server Compact on WINCE--Tutorial

Recently i had to use SQL server in WINCE which was installed on Friendly ARM device. I had to go through some R&D to find it. Got some errors in the beginning but finally was able to do so. Just to be simple on the new image of WINCE just copy these cab files from the pc and copy them to TEMP folder in the WINCE. You can find these cab files in the Program Files/SQL Server Compact in ARM folder. You will also need a .NET cab file which you can get from Framework installed directory. If you have Visual Studio 2008 installed you can get them easily you don't need to download these. The files are 1. NETCFv35.wce.armv4 2. sql.wce5.armv4i 3. sqlce.dev.ENU.wce5.armv4i 4. sqlce.repl.wce5.armv4i 5. sqlce.wce5.armv4i After copying these files in TEMP folder in WINCE double click...


11/21/2010

Image Store Save/Retrieve C# Web SQL Server using Handler/ Generic Handler

This tutorial is to guide you to save/retrieve image using C# in ASP.Net Web The saving image process is same as the windows form saving image process. You can get detail on my other tutorial which i wrote earlier which guide you to save/retrieve image in Windows Forms. You can read that tutorial from Click Here For you ease i will copy past the code to show you how you save image in SQL server using C#. 1. First of all we need a database in SQL Server which contains a table with only two columns one is 'id' of type 'int' and second is of 'image' of type 'image'. 2. Open SQL Server 2005 Express Management Studio and create new database. Name it according to your choice. 3. After successfully creating database create a table with two columns described in step 1. 4. Now Open Visual Studio...


10/27/2010

Image Save/Retrieve C# Windows Form SQL Server

This tutorial will guide you to save or retrieve image from SQL Server in C#. 1. First of all we need a database in SQL Server which contains a table with only two columns one is 'id' of type 'int' and second is of 'image' of type 'image'. 2. Open SQL Server 2005 Express Management Studio and create new database. Name it according to your choice. 3. After successfully creating database create a table with two columns described in step 1. 4. Now Open Visual Studio 2008/2010. 5. Create a project of windows form. 6. In Design View of Form1(you can rename it to your choice) drag a control of picture box to the form with two buttons. 7. Change text of one button to Save and second to Retrieve. 8. Double click Save button to create event for double click. 9. In this event function, create...


Pages 81234 »
Twitter Delicious Facebook Digg Favorites More