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

C#

 
QuestionBinding a property to a textbox problem Pin
Ming Luo3-Oct-05 0:53
Ming Luo3-Oct-05 0:53 
QuestionChange another forms controls properties Pin
freshonlineMax2-Oct-05 23:52
freshonlineMax2-Oct-05 23:52 
AnswerRe: Change another forms controls properties Pin
Wjousts3-Oct-05 2:52
Wjousts3-Oct-05 2:52 
GeneralRe: Change another forms controls properties Pin
freshonlineMax3-Oct-05 19:15
freshonlineMax3-Oct-05 19:15 
QuestionTransparencyKey does not work in combination with Opacity! Pin
Martin#2-Oct-05 22:59
Martin#2-Oct-05 22:59 
Questioncall the function from CODE BEHIND page to HTML Pin
mohd rafi2-Oct-05 22:30
mohd rafi2-Oct-05 22:30 
QuestionPointers in struct to itself Pin
Dominik Reichl2-Oct-05 22:13
Dominik Reichl2-Oct-05 22:13 
AnswerRe: Pointers in struct to itself Pin
Mathew Hall2-Oct-05 22:44
Mathew Hall2-Oct-05 22:44 
You'd probably want to do something like:

[StructLayout(LayoutKind.Sequential)]
public struct HuffTreeNode
{
    uint code;
    uint count;
    IntPtr leftNode;
    IntPtr rightNode;
}


and then use Marshal.StructureToPtr[^] and Marshal.PtrToStructure[^] to convert the struct to/from a pointer

"I think I speak on behalf of everyone here when I say huh?" - Buffy
GeneralRe: Pointers in struct to itself Pin
Dominik Reichl2-Oct-05 22:56
Dominik Reichl2-Oct-05 22:56 
GeneralRe: Pointers in struct to itself Pin
Daniel Turini2-Oct-05 23:11
Daniel Turini2-Oct-05 23:11 
AnswerRe: Pointers in struct to itself Pin
mav.northwind2-Oct-05 23:27
mav.northwind2-Oct-05 23:27 
QuestionTransparent Windows Forms Pin
Gihansam2-Oct-05 20:42
Gihansam2-Oct-05 20:42 
AnswerRe: Transparent Windows Forms Pin
g00fyman3-Oct-05 4:03
g00fyman3-Oct-05 4:03 
QuestionPls help in email grouping..... Pin
2-Oct-05 19:16
suss2-Oct-05 19:16 
QuestionSQL Server does not exist Pin
Anonymous2-Oct-05 18:57
Anonymous2-Oct-05 18:57 
AnswerRe: SQL Server does not exist Pin
Luis Alonso Ramos2-Oct-05 19:07
Luis Alonso Ramos2-Oct-05 19:07 
GeneralRe: SQL Server does not exist Pin
Mahesh Kumar V K2-Oct-05 19:45
Mahesh Kumar V K2-Oct-05 19:45 
QuestionSoccer Game Pin
nume2-Oct-05 18:11
nume2-Oct-05 18:11 
QuestionSending WinForm to printer Pin
MeterMan2-Oct-05 16:49
MeterMan2-Oct-05 16:49 
AnswerRe: Sending WinForm to printer Pin
Robert Rohde2-Oct-05 19:15
Robert Rohde2-Oct-05 19:15 
Questionsome questions... Pin
Sasuko2-Oct-05 12:59
Sasuko2-Oct-05 12:59 
AnswerRe: some questions... Pin
Robert Rohde2-Oct-05 19:19
Robert Rohde2-Oct-05 19:19 
QuestionMicrosoft Money in C# Pin
jgallen232-Oct-05 12:27
jgallen232-Oct-05 12:27 
AnswerRe: Microsoft Money in C# Pin
Vasudevan Deepak Kumar2-Oct-05 23:25
Vasudevan Deepak Kumar2-Oct-05 23:25 
GeneralRe: Microsoft Money in C# Pin
jgallen233-Oct-05 5:23
jgallen233-Oct-05 5:23 

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.