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

santhosh padamatinti

@santhosh padamatinti
About
Posts
59
Topics
35
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to access the application
    S santhosh padamatinti

    Thanks for quick reply, Data base point of view ok. I will use SQLServer. i want to know,how to access access user interface. How to create shortcut on each desktop. So that my application should located in shared drive and access to every one.

    To invent something, you need a mountain of junk in your mind. ---------------------Thomas alva edison

    C# csharp sysadmin help tutorial

  • how to access the application
    S santhosh padamatinti

    Hi to all, I am working on academic project. I require some help, please help me any one who knows the answer for following: In my college 20 systems are connected with home network. Where we have a share(every system can access this space) drive. Now I developed a professor details interface. This professor details is placed at shared location. So that any student can access this information from any system. How can write such kind of application(using windows based C# application). Please if you have any links related this share me. Thanks In advance..

    To invent something, you need a mountain of junk in your mind. ---------------------Thomas alva edison

    C# csharp sysadmin help tutorial

  • application object
    S santhosh padamatinti

    Hi, I am beginner to ASP.Net. I just learned Application[] class and session[] class. My question is which one is better? And where i have to use application[] object and where i have to use session[]. I have one more doubt: I have two asp pages, Page 1: take the choice from the user where i have three check boxes. check 1. person names start with 's' check 2. person names starts with 'a' check 3. person name starts with 'g'. So page one is contains above three check boxes. When user selects check box and submitted, it goes to second page where i have to write code for get the values from data base based on check boxes user selected. For this kind of problem can i use Application[]. Or any other method to write solution for this..... Thanks in advance .....

    To invent something, you need a mountain of junk in your mind. ---------------------Thomas alva edison

    ASP.NET question csharp asp-net help learning

  • what is differnce between both following
    S santhosh padamatinti

    sorry, And thanks for valuable reply. My internet connection is having problem. First time it given a message "not update your message". That's why i updated again. Any way sorry for inconvenience. I deleted first one.

    To invent something, you need a mountain of junk in your mind. ---------------------Thomas alva edison

    C / C++ / MFC question c++

  • what is differnce between both following
    S santhosh padamatinti

    I have one doubt please give me the answer. I read some where in C++, if we want to access base class constructor using derived class constructor like bellow is possible:

    class base
    {
    base()
    };

    class derived:public base
    

    {
    derived():base()
    {
    }
    };

    normally i used like bellow

    class base
    {
    base()
    {
    }
    };

    class derived:public base
    

    {
    derived()
    {
    }
    };

    My question is what is the difference between both approaches. In which cases I have to use first one and in which cases i have to use second one.

    To invent something, you need a mountain of junk in your mind. ---------------------Thomas alva edison

    C / C++ / MFC question c++

  • how to access base class member function
    S santhosh padamatinti

    Thanks for reply, sorry, I am not check my code properly. It s giving me correct answer.

    To invent something, you need a mountain of junk in your mind. ---------------------Thomas alva edison

    C / C++ / MFC help tutorial

  • how to access base class member function
    S santhosh padamatinti

    Hi to all Please look at the following code:

    class base
    {
    public:
    void show_base()
    {
    cout<<"executing base"<

      In the above my problem is "I want to access a base class member function.i.e when i called show\_derived(), it needs first calls show\_base() and then show\_derived() remaining code should execute. Is it possible to call like this. Or please show me any other possibilities 
    

    Thanks in advance......................

    To invent something, you need a mountain of junk in your mind.
    ---------------------Thomas alva edison

    C / C++ / MFC help tutorial

  • how to read windows registry
    S santhosh padamatinti

    Sorry friends , I got the solution. I am reading incorrectly. I am reading in local machine instead of reading current user. Any way it is working thanks......

    To invent something, you need a mountain of junk in your mind. ---------------------Thomas alva edison

    C / C++ / MFC help windows-admin tutorial

  • how to read windows registry
    S santhosh padamatinti

    Hi to all, I am using windows registry. please look the following.

    const char* subkey ="Software\\Microsoft\\Windows NT\\CurrentVersion";

      if(RegOpenKey(HKEY\_LOCAL\_MACHINE,subkey,&hKey)== ERROR\_SUCCESS)
      {
    	  cout<<"register is opened";
      }
      else
      {
    	  cout<<"still not working";
      }
    

    Above one is working correctly. And also displaying the message correctly. But when subkey i written like follows it is not working.

    const char* subkey ="Software\\Microsoft\\Windows NT\\CurrentVersion\\Windows Messaging Subsystem";

    I am not getting the exact problem please address the solution.... Thanks in advance.....

    To invent something, you need a mountain of junk in your mind. ---------------------Thomas alva edison

    C / C++ / MFC help windows-admin tutorial

  • tree view using form view.
    S santhosh padamatinti

    Hi, I am beginner to VC++. Now I want to develop an application where window divided into two parts. left side i am having tree view and right side display information. I already implemented tree view using SDI application (CTreeView). Now I want to implement a tree in CFormView. How can i write a tree implementation in CForm View. Please suggest me the solution. Also If you have any references related to this please send me. Thanks in advance........

    To invent something, you need a mountain of junk in your mind. ---------------------Thomas alva edison

    C / C++ / MFC c++ data-structures question learning

  • concat two char * variables
    S santhosh padamatinti

    My interviewer thrown a question like: He wants to implement a function where he needs to takes two char* parameters as input at the end it should return a char* by concatenating these two char* values(without using strcat(), strcmp() functions). required function prototype is

    char\* concat(const char\* c1, const char\* c2)
    

    I am unable to solve this one. Please give me the approach Thanx in advance.....

    To invent something, you need a mountain of junk in your mind. ---------------------Thomas alva edison

    modified on Thursday, January 21, 2010 2:21 AM

    C / C++ / MFC help tutorial

  • concat two char * variables
    S santhosh padamatinti

    Rajesh R Subramanian wrote:

    You could use strcat()[^] to concatenate strings.

    Actually my requirement is "not use the strcat() function".

    To invent something, you need a mountain of junk in your mind. ---------------------Thomas alva edison

    C / C++ / MFC help tutorial

  • concat two char * variables
    S santhosh padamatinti

    Hi to all, I have a small doubt.Is it possible to use arithmetic operators between two char* variables, like bellow

    char\* conc(const char\* c1,const char\* c2)
    {
     char\* c3=c1+c2     // error" adding two pointer variables is invalid   
     return c3
    }
    

    Above code is giving error "adding two pointer variables is invalid". Please tell me how to concat(add) two char*.

    To invent something, you need a mountain of junk in your mind. ---------------------Thomas alva edison

    C / C++ / MFC help tutorial

  • [Message Deleted]
    S santhosh padamatinti

    [Message Deleted]

    C#

  • RichTextBox - Text
    S santhosh padamatinti

    Hi, Try like this may be its not correct approach. But it solves your problem.

    public partial class Form1 : Form
    {
    public Form1()
    {
    InitializeComponent();
    }

        private void Form1\_Load(object sender, EventArgs e)
        {
            string s1 = this.richTextBox1.Text;
            sample o1 = new sample();
            o1.sobject = s1;   
        }
    
    }
    public class sample
    {
        public string sobject;
       
    }
    

    To invent something, you need a mountain of junk in your mind. ---------------------Thomas alva edison

    C# question tutorial

  • problem with list view selection.
    S santhosh padamatinti

    Hi, I am receiving a problem with my code. Actually in my code I have taken a list view. name is Listview1. Setting values and performing sorting every thing fine. But when I am trying to display selected value like bellow.

    private void listView1_SelectedIndexChanged(object sender, EventArgs e)
    {
    this.label1.Text = listView1.SelectedItems[0].ToString();
    }

    In first click it showing correct value. When clicking the other It throwing exception "System.ArgumentOutOfRangeException: InvalidArgument=Value of '0' is not valid for 'index'. Parameter name: index". How can i solve this problem. Only my intention is it has to display selected value in list view. How it is possible please show me the solution If any one knows this problem Thanks in advance.........

    sampath-padamatinti

    C# database algorithms help question

  • how to write a object data into a file?
    S santhosh padamatinti

    Thanx for valuable suggestion.

    sampath-padamatinti

    C# question csharp tutorial

  • how to write a object data into a file?
    S santhosh padamatinti

    Hi, I am new to C#, I have a doubt please tell me the answer. I have a form1. In that I am retrieving student information(studentgroup, studentname, admintionnumber). Now namespace student_information { public partial class Form1 : Form { string m_stname; string m_sgroup; int m_iadminnum; public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { m_stname = this.textBox1.Text; m_iadminnum = int.Parse(this.textBox2.Text); m_sgroup = this.comboBox1.SelectedItem.ToString(); Form1 f1 = new Form1(); f1.m_iadminnum = m_iadminnum; f1.m_sgroup = m_sgroup; f1.m_stname = m_stname; } } } In the above code what i did is i am receiving information from form1, Now that information in f1(object). Can any one tell what is the procedure for store this data into a file. Also please tell me the procedure for retrieving object information from the same file. Thanx in advance......

    sampath-padamatinti

    C# question csharp tutorial

  • windows azure
    S santhosh padamatinti

    Thanks for reply, It is useful for me......

    sampath-padamatinti

    C# cloud

  • windows azure
    S santhosh padamatinti

    Hi, I am currently trying a sample on windows azure. Some where I heard that using windows azure. we can develop some mobile applications which runs plat form independently. Can any one know about this or any samples related to this please send me.. Thanx in Advance..................

    sampath-padamatinti

    C# cloud
  • Login

  • Don't have an account? Register

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