Click here to Skip to main content
16,005,037 members
Home / Discussions / C#
   

C#

 
GeneralDifference between 2 datetime Pin
Apusnaias25-Sep-04 11:48
Apusnaias25-Sep-04 11:48 
GeneralRe: Difference between 2 datetime Pin
Alex Korchemniy25-Sep-04 12:28
Alex Korchemniy25-Sep-04 12:28 
GeneralRe: Difference between 2 datetime Pin
Apusnaias25-Sep-04 12:44
Apusnaias25-Sep-04 12:44 
GeneralRe: Difference between 2 datetime Pin
Roland Bär29-Sep-04 3:39
Roland Bär29-Sep-04 3:39 
Generalsaving a sequence of gif images in a single file Pin
hudhud25-Sep-04 10:15
hudhud25-Sep-04 10:15 
GeneralHelp needed.....Writing a Swap function using pointer variables... Pin
Kiran Satish25-Sep-04 9:44
Kiran Satish25-Sep-04 9:44 
GeneralRe: Help needed.....Writing a Swap function using pointer variables... Pin
Colin Angus Mackay25-Sep-04 14:59
Colin Angus Mackay25-Sep-04 14:59 
GeneralRe: Help needed.....Writing a Swap function using pointer variables... Pin
Kiran Satish25-Sep-04 19:18
Kiran Satish25-Sep-04 19:18 
Hi,

it helped tough and I am able to fix the function definition... but the only other repeated error was

----: You can only take the address of unfixed expression inside of a fixed statement initializer.. wht is a fixed statement initializer and unfixed expression... i did went through MSDN, but not able to understand their definition and the way they r defining...

here is how i defined my methods

unsafe static void Swap(int *x, int *y)
{
int temp;
temp=*x;
*x=*y;
*y=temp;
}

unsafe public void Flip_Hor()
{
Swap(&TopLeft11,&BottomLeft31);
Swap(&TopLeft12,&BottomLeft32);
Swap(&TopLeft13,&BottomLeft33);
Swap(&TopLeft21,&BottomLeft21);
Swap(&TopLeft22,&BottomLeft22);
Swap(&TopLeft23,&BottomLeft23);.....
.
.
.
}

Are my method definitons are wrong?
or should i have to add anything more...

anotehr error is...

Method System.Windows.Forms.Form.CenterToParent not found.

I have implemented a form to take a value as a parameter to my program.... but in its defintion it is giving the above error. The same form is workin well in another project, but givin the above eroor in another project..any idea why it is like tht...

can anyone help me....

thanks in advance,


Suman
GeneralProblem Solved Pin
Kiran Satish25-Sep-04 19:50
Kiran Satish25-Sep-04 19:50 
GeneralConverting byte[] to string Pin
João Paulo Figueira25-Sep-04 9:20
professionalJoão Paulo Figueira25-Sep-04 9:20 
GeneralRe: Converting byte[] to string Pin
Alex Korchemniy25-Sep-04 10:13
Alex Korchemniy25-Sep-04 10:13 
GeneralRe: Converting byte[] to string Pin
Tristan Rhodes25-Sep-04 11:32
Tristan Rhodes25-Sep-04 11:32 
GeneralRe: Converting byte[] to string Pin
Alex Korchemniy25-Sep-04 12:10
Alex Korchemniy25-Sep-04 12:10 
GeneralRe: Converting byte[] to string Pin
Tristan Rhodes26-Sep-04 4:20
Tristan Rhodes26-Sep-04 4:20 
GeneralRe: Converting byte[] to string Pin
João Paulo Figueira25-Sep-04 23:50
professionalJoão Paulo Figueira25-Sep-04 23:50 
GeneralObtaining Font Size (Pixel / EM) from COM Caption Logfont Struct Pin
Tristan Rhodes25-Sep-04 8:25
Tristan Rhodes25-Sep-04 8:25 
Generalmemory increase Pin
tifa25-Sep-04 8:16
tifa25-Sep-04 8:16 
GeneralRe: memory increase Pin
Alex Korchemniy25-Sep-04 13:06
Alex Korchemniy25-Sep-04 13:06 
GeneralRe: memory increase Pin
Colin Angus Mackay25-Sep-04 15:03
Colin Angus Mackay25-Sep-04 15:03 
General.Net Remoting Issue Pin
jtmtv1825-Sep-04 7:56
jtmtv1825-Sep-04 7:56 
GeneralRe: .Net Remoting Issue Pin
Alex Korchemniy25-Sep-04 12:34
Alex Korchemniy25-Sep-04 12:34 
GeneralRe: .Net Remoting Issue Pin
jtmtv1825-Sep-04 17:51
jtmtv1825-Sep-04 17:51 
Generalretreiving hardware information Pin
alanazi25-Sep-04 4:46
alanazi25-Sep-04 4:46 
GeneralRe: retreiving hardware information Pin
alanazi27-Sep-04 3:39
alanazi27-Sep-04 3:39 
General.net remoting problem Pin
rclayclements25-Sep-04 3:24
rclayclements25-Sep-04 3:24 

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.