Click here to Skip to main content
16,016,024 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: After postback Datagrids items and cells are not visible Pin
N a v a n e e t h3-Aug-07 0:27
N a v a n e e t h3-Aug-07 0:27 
GeneralRe: After postback Datagrids items and cells are not visible Pin
Anees Mitha3-Aug-07 1:41
Anees Mitha3-Aug-07 1:41 
GeneralRe: After postback Datagrids items and cells are not visible Pin
N a v a n e e t h3-Aug-07 1:48
N a v a n e e t h3-Aug-07 1:48 
AnswerRe: After postback Datagrids items and cells are not visible Pin
sulabh20203-Aug-07 1:39
sulabh20203-Aug-07 1:39 
GeneralRe: After postback Datagrids items and cells are not visible Pin
Anees Mitha3-Aug-07 3:39
Anees Mitha3-Aug-07 3:39 
QuestionThe control does not exist. in telerik Pin
Piyush Vardhan Singh3-Aug-07 0:07
Piyush Vardhan Singh3-Aug-07 0:07 
AnswerRe: The control does not exist. in telerik Pin
Bino B3-Aug-07 6:39
Bino B3-Aug-07 6:39 
Questiontrying to access a form from a class( same instance) Pin
Hardboiled862-Aug-07 23:52
Hardboiled862-Aug-07 23:52 
Been trying find a way to update a form ( same instance) directly from a class.My example below compiles but the form result leaves the textbox blank. Can anyone help? I'm new to this so go easy on me.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace test1
{
public partial class Form1 : Form
{
public string strStringVarible;

public Form1()
{
InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{


}

private void button1_Click(object sender, EventArgs e)
{
classtest1 clstest = new classtest1();
clstest.external_class();


}

public void accessor_method()
{
this.textBox1.Text = strStringVarible;
this.textBox1.Refresh();
}

private void textBox1_TextChanged(object sender, EventArgs e)
{

}

}
}


________________________________________________________

using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms.Design;
using System.Data;




namespace test1
{
class classtest1 : Form1
{


public void external_class()
{
this.strStringVarible = "test123";
this.accessor_method();


}




}
}
AnswerRe: trying to access a form from a class( same instance) Pin
Talal Sultan3-Aug-07 0:08
Talal Sultan3-Aug-07 0:08 
GeneralRe: trying to access a form from a class( same instance) Pin
Hardboiled863-Aug-07 0:42
Hardboiled863-Aug-07 0:42 
AnswerRe: trying to access a form from a class( same instance) Pin
N a v a n e e t h3-Aug-07 1:03
N a v a n e e t h3-Aug-07 1:03 
GeneralRe: trying to access a form from a class( same instance) Pin
Hardboiled863-Aug-07 1:08
Hardboiled863-Aug-07 1:08 
GeneralRe: trying to access a form from a class( same instance) Pin
N a v a n e e t h3-Aug-07 1:09
N a v a n e e t h3-Aug-07 1:09 
GeneralRe: trying to access a form from a class( same instance) Pin
Hardboiled863-Aug-07 1:56
Hardboiled863-Aug-07 1:56 
Questionmaster page and user control Pin
ravikiranreddydharmannagari2-Aug-07 23:45
ravikiranreddydharmannagari2-Aug-07 23:45 
AnswerRe: master page and user control Pin
Rhys Gravell3-Aug-07 5:12
professionalRhys Gravell3-Aug-07 5:12 
AnswerRe: master page and user control Pin
Bino B3-Aug-07 6:54
Bino B3-Aug-07 6:54 
QuestionDelete directory recursively throwing an error Pin
Nicejith2-Aug-07 23:22
Nicejith2-Aug-07 23:22 
AnswerRe: Delete directory recursively throwing an error Pin
N a v a n e e t h3-Aug-07 0:06
N a v a n e e t h3-Aug-07 0:06 
GeneralRe: Delete directory recursively throwing an error Pin
Nicejith3-Aug-07 1:30
Nicejith3-Aug-07 1:30 
QuestionMultiple file uploading [modified] Pin
Milind Panchal2-Aug-07 23:02
Milind Panchal2-Aug-07 23:02 
AnswerRe: Multiple file uploading Pin
N a v a n e e t h3-Aug-07 0:04
N a v a n e e t h3-Aug-07 0:04 
QuestionAccessing back end variable into asp.net Pin
Anurag Gandhi2-Aug-07 22:23
professionalAnurag Gandhi2-Aug-07 22:23 
AnswerRe: Accessing back end variable into asp.net Pin
Christian Graus2-Aug-07 22:36
protectorChristian Graus2-Aug-07 22:36 
AnswerRe: Accessing back end variable into asp.net Pin
sulabh20202-Aug-07 23:32
sulabh20202-Aug-07 23:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.