Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

saksp

@saksp
About
Posts
29
Topics
23
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Not able to connect VS 2008 and SQL Server2000
    S saksp

    I am using ASP.Net 2008, and I want to connect Database SQL Server 2000 But when i add new database connection "Network related - Or Instance specific error occurred while establishing connection to the SQL Server." error comes. and when I connect to SQL Server 2005 it works properly. Anyone know the solution.

    thanks

    .NET (Core and Framework) database sysadmin csharp asp-net sql-server

  • how to shut down the PC programatically.
    S saksp

    I tried both the functions but they are not working for Smart device application.

    thanks

    C / C++ / MFC c++ tutorial question

  • how to shut down the PC programatically.
    S saksp

    I am using Smart device application & MFC option in VS2005 I want to shut down the PC programatically. how to do that?

    thanks

    C / C++ / MFC c++ tutorial question

  • Errors occurs while compiling Smart device MFC application using VS2005
    S saksp

    I am trying to make an smart device MFC application using VS2005. The VS2005 gave Pocket PC 2003 + some other ones as SDK. But i wanted to make my own SDK and make it work. Why I wanted this way was that, I have created an OS image ( I had given set sysgen_mfc=1). Also I created a sample SDK. So I can build my smart device application using sample sdk , Then download the image. Now i can make the application work fine and for debugging the same I can use emulator. But I am getting these errors while compling "stdafx.cpp" C:\Program Files\Windows CETools\wce600\SDK2\include\ARMV4I\malloc.h(45) : error C2143: syntax error : missing ',' before '*' D:\Program Files\Microsoft Visual Studio 8\VC\ce\atlmfc\include\atltime.h(403) : error C3861: 'wcsftime': identifier not found D:\Program Files\Microsoft Visual Studio 8\VC\ce\atlmfc\include\atltime.h(430) : error C3861: 'wcsftime': identifier not found D:\Program Files\Microsoft Visual Studio 8\VC\ce\atlmfc\include\atlcomtime.h(367) : error C3861: 'wcsftime': identifier not found Can anyone know what to do, to resolve these errors.

    thanks

    C / C++ / MFC c++ csharp visual-studio help

  • how to attach horizontal scroll bar to combo box control
    S saksp

    I have inserted a combo-box control in my project. In that control vertical scroll bar is present. I want horizontal scroll bar also. how to attach horizontal scroll bar to control

    thanks

    C / C++ / MFC tutorial

  • problem while booting Winows CE
    S saksp

    I have created image file of windows CE OS using visual studio 2005. when I boot the Windows CE, PC gets hanged. Any body knows what would be the reason.

    thanks

    Windows Forms csharp visual-studio help

  • Problem in DataGrid Control
    S saksp

    I have written following code, in that i have attached Array to datagrid control, It is working fine. But now I want the column size to be fixed. & I am not able to do it programatically. Any one know that how to do ? TwoDimItem [] stuff1 = new TwoDimItem[5]; stuff1[0] = new TwoDimItem("10 : 11" , "75", "99", "26"); stuff1[1] = new TwoDimItem("10 : 12", "76", "95", "17"); stuff1[2] = new TwoDimItem("10 : 13", "60", "94", "28"); stuff1[3] = new TwoDimItem("10 : 14", "76", "95", "29"); stuff1[4] = new TwoDimItem("10 : 15", "85", "96", "24"); dataGrid1.DataSource = stuff1;

    thanks

    C#

  • How to lock the adjustment of column runtime.
    S saksp

    How to lock datagrid column width adjustment at runtime

    thanks

    C#

  • color of individual cell of DataGrid control
    S saksp

    I am using DataGrid class not DataGridView class.

    thanks

    C#

  • color of individual cell of DataGrid control
    S saksp

    How to change the text color of individual cell of DataGrid control in C#

    thanks

    C#

  • not able to view Picture box on the form
    S saksp

    I have written following code but It is not displayed on the form pictureBox1 = new System.Windows.Forms.PictureBox(); pictureBox1.Location = new Point(Wnd[18].Left + 2, Wnd[18].Top + 2); pictureBox1.Name = "pictureBox1"; pictureBox1.Size = new System.Drawing.Size(80, 40); pictureBox1.Image = new System.Drawing.Bitmap("c:\\bitmap1.bmp"); pictureBox1.Show(); pictureBox1.BringToFront(); what to do ?

    thanks

    C# graphics question

  • How to remove title bar of form .
    S saksp

    How to remove title bar of form .

    thanks

    C# tutorial

  • Idle processing
    S saksp

    I have written following code. I have selected Project type as Visual C# --> Smart Devise --> Windows CE 5.0 When i built the solution i am getting error as "'System.Windows.Forms.Application' does not contain a definition for 'Idle'" int counter = 0; private void Form1_Idle(object sender, System.EventArgs e) { counter++; label1.Text = counter.ToString(); } private void Form1_Load(object sender, System.EventArgs e) { Application.Idle +=new EventHandler(Form1_Idle); } how to handle Idle event.

    thanks

    C# csharp help tutorial

  • How to handle Idle loop processing for windows CE application
    S saksp

    I want to write application which will run on Windows CE & I want to use Idle processing but I am not able to handle Idle processing for windows CE application i.e I can not handle Application.Idle event. How to do that.

    thanks

    C# tutorial

  • Error while displaying 2 dimentional data in data grid
    S saksp

    thanks i got it.

    thanks

    C# css help

  • Error while displaying 2 dimentional data in data grid
    S saksp

    Error was : "Array was not a one dimentional array"

    thanks

    C# css help

  • Error while displaying 2 dimentional data in data grid
    S saksp

    I am getting error when I do following. string[,] myArray = new string[2,2]; myArray[0,0] = "elad"; myArray[0,1] = "3"; myArray[1,0] = "david"; myArray[1,1] = "5"; grd.DataSource = myArray; grd.DataBind();

    thanks

    C# css help

  • Application.Idle Event
    S saksp

    I am not able to attach Application.Idle event with the event handler. what will be the reasons??

    thanks

    C# question

  • Idle processing in windows forms
    S saksp

    I tried this. But with this how will it attach the Application_Idle to Applications Idle processing?

    thanks

    C# csharp winforms tutorial question

  • Idle processing in windows forms
    S saksp

    How to associate event handler with the Idle event in c#?

    thanks

    C# csharp winforms tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups