User Profile

Collapse

Profile Sidebar

Collapse
arunakoride
arunakoride
Last Activity: Oct 17 '06, 01:25 PM
Joined: Sep 22 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • arunakoride
    started a topic CAB file in PocketPC
    in .NET

    CAB file in PocketPC

    Hi

    I have created CAB file using VS2005, Copied to device,installe d successfully in the device , but not able to find the installed application.
    Any body know the reason?How to find the application?
    Thanks
    Aruna
    See more | Go to post

  • arunakoride
    started a topic Socket Option in Windows Mobile Application
    in .NET

    Socket Option in Windows Mobile Application

    Hi
    I am trying to set SocketOption in Windows Mobile Application, but its throwing Exception.
    Please let me know how to set Receive Time out for socket in Windows Mobile VS2005 application.

    s=new Socket(AddressF amily.InterNetw ork,
    SocketType.Stre am, ProtocolType.Tc p);

    s.Bind(new IPEndPoint(IPAd dr, port));

    s.Listen(1);

    ...
    See more | Go to post

  • arunakoride
    started a topic XML parsing
    in .NET

    XML parsing

    Below I have just given a bit of my XML parser class.
    But it seems to be very slow.If I tried on VS2005 windows mobile application its more slow.
    Please suggest me an efficient way.

    while (reader.Read())
    {
    switch (reader.NodeTyp e)
    {
    case XmlNodeType.Tex t: switch (lastElementNam e)
    { case "id":
    currentSearchIt em.id = Convert.ToInt32 (reader.Value);
    break;
    ...
    See more | Go to post

  • arunakoride
    started a topic XML parsing
    in XML

    XML parsing

    Below I have just given a bit of my XML parser class.
    But it seems to be very slow.If I tried on VS2005 windows mobile application its more slow.
    Please suggest me an efficient way.

    Code:
    while (reader.Read())
    	{
     switch (reader.NodeType)
      {
            case   XmlNodeType.Text:
    						switch (lastElementName) 
               {							case "id":
    								currentSearchItem.id
    ...
    See more | Go to post
    Last edited by Dormilich; Mar 7 '09, 07:31 PM. Reason: added [code] tags
No activity results to display
Show More
Working...