Click here to Skip to main content
15,896,063 members
Home / Discussions / C#
   

C#

 
GeneralRe: Image Transparent for Web Pin
Dave Kreskowiak18-May-04 0:13
mveDave Kreskowiak18-May-04 0:13 
GeneralRe: Image Transparent for Web Pin
Heath Stewart18-May-04 3:45
protectorHeath Stewart18-May-04 3:45 
GeneralRe: Image Transparent for Web Pin
Dave Kreskowiak18-May-04 10:11
mveDave Kreskowiak18-May-04 10:11 
GeneralRe: Image Transparent for Web Pin
Heath Stewart18-May-04 10:15
protectorHeath Stewart18-May-04 10:15 
GeneralHELP on Blob analysia on captured images Pin
Rais Hafidz17-May-04 18:52
Rais Hafidz17-May-04 18:52 
Generalthread confusion Pin
macromark17-May-04 18:19
macromark17-May-04 18:19 
GeneralRe: thread confusion Pin
valikac17-May-04 18:33
valikac17-May-04 18:33 
GeneralRe: thread confusion Pin
macromark18-May-04 10:05
macromark18-May-04 10:05 
Heres what the code looks like:

static void Main()
{

//making a new instance of this class to run outside of main
Form1 f = new Form1();
f.startScheduler();

Application.Run(new Form1());
}
public void startScheduler()
{
//get this thread goin
Thread t1 = new Thread(new ThreadStart(ripper));
t1.Start();
}
public void ripper()
{
//infinite loop
for ( ;;)
{
if (hc.getNumThemes() >= 1)
{
MessageBox.Show("calling riptheme");
hc.rip_Theme();
}
Thread.Sleep(4000);
}
}

during the application, hc.getNumThemes gets bumped from 0 to 1,2,3. But the thread always remains at 0.
GeneralPropertyGrid ----Third Party tool Pin
Jay Shankar17-May-04 18:19
Jay Shankar17-May-04 18:19 
GeneralRe: PropertyGrid ----Third Party tool Pin
Heath Stewart18-May-04 3:49
protectorHeath Stewart18-May-04 3:49 
GeneralRe: PropertyGrid ----Third Party tool Pin
leppie18-May-04 7:16
leppie18-May-04 7:16 
GeneralRe: PropertyGrid ----Third Party tool Pin
Heath Stewart18-May-04 7:21
protectorHeath Stewart18-May-04 7:21 
Questionhow to use *msg in C# ? Pin
fu017-May-04 15:31
fu017-May-04 15:31 
AnswerRe: how to use *msg in C# ? Pin
Heath Stewart18-May-04 3:54
protectorHeath Stewart18-May-04 3:54 
GeneralDataTable - DataGrid Pin
moonboy17-May-04 14:33
moonboy17-May-04 14:33 
GeneralRe: DataTable - DataGrid Pin
Jay Shankar17-May-04 16:07
Jay Shankar17-May-04 16:07 
GeneralRe: DataTable - DataGrid Pin
Moon Boy17-May-04 18:20
Moon Boy17-May-04 18:20 
GeneralRe: DataTable - DataGrid Pin
Jay Shankar17-May-04 20:34
Jay Shankar17-May-04 20:34 
GeneralRe: DataTable - DataGrid Pin
Heath Stewart18-May-04 3:55
protectorHeath Stewart18-May-04 3:55 
GeneralA strange question I think Pin
Christer Claesson17-May-04 12:16
Christer Claesson17-May-04 12:16 
GeneralRe: A strange question I think Pin
Colin Angus Mackay17-May-04 12:57
Colin Angus Mackay17-May-04 12:57 
GeneralRe: A strange question I think Pin
Christer Claesson17-May-04 13:07
Christer Claesson17-May-04 13:07 
GeneralRe: A strange question I think Pin
Colin Angus Mackay18-May-04 0:42
Colin Angus Mackay18-May-04 0:42 
GeneralMailto via code with attachment option Pin
myNameIsRon17-May-04 10:26
myNameIsRon17-May-04 10:26 
GeneralRe: Mailto via code with attachment option Pin
Heath Stewart17-May-04 10:52
protectorHeath Stewart17-May-04 10:52 

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.