Click here to Skip to main content
15,887,746 members
Home / Discussions / C#
   

C#

 
QuestionC# console application to dll and register..... Pin
greendragons14-Oct-09 8:20
greendragons14-Oct-09 8:20 
AnswerRe: C# console application to dll and register..... Pin
Dave Kreskowiak14-Oct-09 8:28
mveDave Kreskowiak14-Oct-09 8:28 
GeneralRe: C# console application to dll and register..... Pin
greendragons14-Oct-09 8:31
greendragons14-Oct-09 8:31 
GeneralRe: C# console application to dll and register..... Pin
DaveyM6914-Oct-09 8:38
professionalDaveyM6914-Oct-09 8:38 
GeneralRe: C# console application to dll and register..... Pin
greendragons14-Oct-09 8:46
greendragons14-Oct-09 8:46 
GeneralRe: C# console application to dll and register..... Pin
Dave Kreskowiak14-Oct-09 8:59
mveDave Kreskowiak14-Oct-09 8:59 
GeneralRe: C# console application to dll and register..... Pin
greendragons14-Oct-09 9:04
greendragons14-Oct-09 9:04 
QuestionProblem changing text on from lable from another class [modified] Pin
yogi_bear_7914-Oct-09 6:20
yogi_bear_7914-Oct-09 6:20 
Below are the applicable code snippits. Basically from my class poker I update a Global Variable Int from the class GlobalVar. I then want to update the lblwinnings on frmMain from my poker class.

namespace vdp
{
     partial public class frmMain: Form
     {
          public string credits { set { this.lbl.winnings.Text = value; } }
     }


     class poker 
     {
          public static void Results()
          {
               frmMain Form1 = new frmMain();
               Form1.credits = Convert.ToString(GlobalVar.Winnings);
          }
     }
}


modified on Wednesday, October 14, 2009 12:26 PM

AnswerRe: Problem changing text on from lable from another class Pin
Dave Kreskowiak14-Oct-09 6:38
mveDave Kreskowiak14-Oct-09 6:38 
GeneralRe: Problem changing text on from lable from another class Pin
yogi_bear_7914-Oct-09 8:02
yogi_bear_7914-Oct-09 8:02 
GeneralRe: Problem changing text on from lable from another class Pin
DaveyM6914-Oct-09 8:05
professionalDaveyM6914-Oct-09 8:05 
GeneralRe: Problem changing text on from lable from another class Pin
yogi_bear_7914-Oct-09 8:42
yogi_bear_7914-Oct-09 8:42 
GeneralRe: Problem changing text on from lable from another class Pin
DaveyM6914-Oct-09 9:05
professionalDaveyM6914-Oct-09 9:05 
GeneralRe: Problem changing text on from lable from another class Pin
yogi_bear_7914-Oct-09 10:17
yogi_bear_7914-Oct-09 10:17 
QuestionPerform a mouse click Pin
p3rson14-Oct-09 6:11
p3rson14-Oct-09 6:11 
AnswerRe: Perform a mouse click Pin
Keith Barrow14-Oct-09 6:24
professionalKeith Barrow14-Oct-09 6:24 
AnswerRe: Perform a mouse click Pin
Luc Pattyn14-Oct-09 6:36
sitebuilderLuc Pattyn14-Oct-09 6:36 
QuestionCreate Singleton Class Different AppDomain Pin
dataminers14-Oct-09 5:36
dataminers14-Oct-09 5:36 
AnswerRe: Create Singleton Class Different AppDomain Pin
Not Active14-Oct-09 6:09
mentorNot Active14-Oct-09 6:09 
GeneralRe: Create Singleton Class Different AppDomain Pin
dataminers14-Oct-09 10:25
dataminers14-Oct-09 10:25 
GeneralRe: Create Singleton Class Different AppDomain Pin
Not Active14-Oct-09 10:50
mentorNot Active14-Oct-09 10:50 
GeneralRe: Create Singleton Class Different AppDomain Pin
dataminers14-Oct-09 12:02
dataminers14-Oct-09 12:02 
GeneralRe: Create Singleton Class Different AppDomain Pin
Not Active14-Oct-09 14:40
mentorNot Active14-Oct-09 14:40 
GeneralRe: Create Singleton Class Different AppDomain Pin
dataminers14-Oct-09 21:20
dataminers14-Oct-09 21:20 
GeneralRe: Create Singleton Class Different AppDomain Pin
Keith Barrow14-Oct-09 22:59
professionalKeith Barrow14-Oct-09 22:59 

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.