Click here to Skip to main content
15,919,245 members
Home / Discussions / C#
   

C#

 
GeneralRe: single quote error in SQL Pin
Roy Heil6-Feb-06 7:37
professionalRoy Heil6-Feb-06 7:37 
GeneralRe: single quote error in SQL Pin
emran8346-Feb-06 13:18
emran8346-Feb-06 13:18 
AnswerRe: single quote error in SQL Pin
Thomas Lau4-Feb-06 15:37
Thomas Lau4-Feb-06 15:37 
GeneralRe: single quote error in SQL Pin
emran8344-Feb-06 17:23
emran8344-Feb-06 17:23 
Questiontyped dataset Pin
fmardani4-Feb-06 10:23
fmardani4-Feb-06 10:23 
QuestionAccess Controls from another class Pin
tray_gator4-Feb-06 9:07
tray_gator4-Feb-06 9:07 
AnswerRe: Access Controls from another class Pin
kasik4-Feb-06 11:00
kasik4-Feb-06 11:00 
QuestionRe: Access Controls from another class Pin
tray_gator4-Feb-06 22:44
tray_gator4-Feb-06 22:44 
Thank for anwer, but...dont work Frown | :(
as I undestand right:
class Class1
{
public Class1()
{
}

public Class1(Form1 frm1):this()
{
_frm1 = frm1;
}
public Form1 frm1
{
get
{
return _frm1;
}
set
{
_frm1 = value;
}
}
public void test()
{
_frm1 = new Form1();
_frm1.comboBox1.Items.Add("test"); //dont work
}
}
class Form1
{
public comboBox comboBox1;
public void aaa()
{
Class1 cls1 = new Class1(this);
cls1.test();
}
}


-- modified at 4:51 Sunday 5th February, 2006
AnswerRe: Access Controls from another class Pin
Colin Angus Mackay4-Feb-06 15:22
Colin Angus Mackay4-Feb-06 15:22 
QuestionRe: Access Controls from another class Pin
tray_gator4-Feb-06 22:51
tray_gator4-Feb-06 22:51 
AnswerRe: Access Controls from another class Pin
mav.northwind4-Feb-06 23:52
mav.northwind4-Feb-06 23:52 
QuestionRe: Access Controls from another class Pin
tray_gator5-Feb-06 0:41
tray_gator5-Feb-06 0:41 
AnswerRe: Access Controls from another class Pin
kasik5-Feb-06 1:28
kasik5-Feb-06 1:28 
AnswerRe: Access Controls from another class Pin
tray_gator5-Feb-06 2:04
tray_gator5-Feb-06 2:04 
AnswerRe: Access Controls from another class Pin
mav.northwind5-Feb-06 3:07
mav.northwind5-Feb-06 3:07 
GeneralRe: Access Controls from another class Pin
tray_gator5-Feb-06 4:22
tray_gator5-Feb-06 4:22 
GeneralRe: Access Controls from another class Pin
kasik5-Feb-06 4:57
kasik5-Feb-06 4:57 
GeneralRe: Access Controls from another class Pin
tray_gator5-Feb-06 6:04
tray_gator5-Feb-06 6:04 
GeneralRe: Access Controls from another class Pin
Colin Angus Mackay5-Feb-06 10:42
Colin Angus Mackay5-Feb-06 10:42 
GeneralRe: Access Controls from another class Pin
tray_gator5-Feb-06 22:05
tray_gator5-Feb-06 22:05 
Questionjoining the server with my application Pin
moonangel_bio4-Feb-06 7:39
moonangel_bio4-Feb-06 7:39 
AnswerRe: joining the server with my application Pin
Colin Angus Mackay4-Feb-06 15:18
Colin Angus Mackay4-Feb-06 15:18 
General[Message Deleted] Pin
emran8344-Feb-06 19:48
emran8344-Feb-06 19:48 
GeneralRe: joining the server with my application Pin
Colin Angus Mackay4-Feb-06 23:45
Colin Angus Mackay4-Feb-06 23:45 
GeneralRe: joining the server with my application Pin
moonangel_bio5-Feb-06 1:42
moonangel_bio5-Feb-06 1:42 

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.