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

Sujith C Jose

@Sujith C Jose
About
Posts
11
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to create a dynamic session
    S Sujith C Jose

    vishnukamath wrote:

    the problem is If another user 'B' logged on to the application,then the session is overwritted by the by the 'B's user name and i m losing the 'A's user name which is stored previously in the session

    Hi, Are you sure that you are using Session object (which is for each users) and not Application state (which is common for all users or sessions) Eg:

    //Session Object
    Session["UserName"] = txtUserName.Text;

    //Application Object
    Application["Message"] = "Message to All users";

    Sujith My Blog

    ASP.NET help tutorial

  • How can we remove address bar of browser
    S Sujith C Jose

    hi, just try this. I think in new versions of IE address bar will be visible ...:~

    var strVal = "toolbar=0,location=0, directories=0, status=0, menubar=0,scrollbars=0,resizable=0," + "width=" + width + ",height=" + height +",left=" + left + ",top=" + top

    window.open("newWindow.aspx", "new", strVal);

    Sujith My Blog

    ASP.NET javascript help

  • How to Send WebMail to Yahoo id
    S Sujith C Jose

    May be this will help you get a better idea ... http://randomcodingtips.blogspot.com/2008/06/send-email-using-cnet-visual-studio.html[^]

    Sujith My Blog

    ASP.NET tutorial question

  • Reading Registry Key Problem.
    S Sujith C Jose

    using Microsoft.Win32; //Statements (In your case) //------------------------------ RegistryKey Reg; //open the registry key Reg = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Active Setup\Installed Components\{22d6f312-b0f6-11d0-94ab-0080c74c7e95}"); //get the requested values if(Reg!=null) { string str1 = Reg.GetValue("Version").ToString(); MessageBox.Show(str1); } //close the key Reg.Close(); //Regards :)

    Sujith Blog 123

    C# windows-admin debugging help question announcement

  • Problem with Access database connectivity in C#.Net
    S Sujith C Jose

    hi verghese, Try this 1. If you are using standard security Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\dbsample.mdb;User Id=admin;Password=; 2. If you are using a password for your access file Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\dbsample.mdb;Jet OLEDB:Database Password=MyDbPassword; ;) regards

    Sujith Blog 123

    C# help csharp database

  • how to set digits precision of a float
    S Sujith C Jose

    :) Or simply use Math.Round(floatvalue,2);

    Sujith

    C# tutorial question

  • vb.net
    S Sujith C Jose

    If you are asking how to filter the doc files, it can be done as follows. In the "Filter" property of the opendialog control write this Word Documents (*.doc)|*.doc :)

    Sujith

    Visual Basic

  • My app works on the PC but not on the Smart Device - I'm desperate!
    S Sujith C Jose

    Dewald wrote:

    I can run it on the PC but when I copy it across to the device I get various exceptions

    what do you mean by this? running in emulator. How r you copying files to the device? vs2005 can automatically deploy the solution and all the required dlls to the device, and later you can develop a cab project of the solution and then install it on the device if needed. you can run the program with out manually copying.Check if you are following these steps. 1.From Tools menu select "Connect to Device",select "Pocket pc 2003 device" and press connect buttom. If connection succeeds, ok. 2.Build or Rebuld the solution 3.Then run the project, ensure you have selected "Pocket pc 2003 device" in the combo box for target device. It may take some time for the first time but after that you can run the project again with less time.By doing this vs2005 will deploy the solution to the device and all the supporting files. regards

    Sujith

    Mobile csharp help c++ visual-studio tutorial

  • My app works on the PC but not on the Smart Device - I'm desperate!
    S Sujith C Jose

    Hi Dewald, I think this is because the .net framework in vs2005 you r using is 2.0. Can you try this. File->New Project->Visual C#->Smart devices->Smart Phone2003->Device Application. I know you want pocket pc 2003, we can do to it .This is to make sure that vs2005 will take .net framework 1.0. From Project menu select "Change Target Platform" and select pocket pc 2003 and accept the changes.This will change the target platform to pocket pc but the .net framework will remain the same (ie 1.0). Now u try ur code . If the problem is what i think it will work, other wise sorry man.

    Sujith

    Mobile csharp help c++ visual-studio tutorial

  • ?????????????
    S Sujith C Jose

    If a word was spelled wrong in the dictionary...... we will know that only if we knew the correct spelling , huh Even dictionaries are made by people for the people, if we find one wrong they will correct it.

    sujithcjose@yahoo.com http://www.sujith.cjb.net

    The Lounge c++ help question

  • how to break/continue a for loop? [modified]
    S Sujith C Jose

    If you have a textbox named Text1 in your form(VB), then this will do the job For i=0 To 10 If i=4 then GoTo ss End If Text1.Text=Text1.Text & i ss: Next

    sujithcjose@yahoo.com http://www.sujith.cjb.net

    Visual Basic 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