Re: Problems during file writing or During Type Casting ?
Re: Problems during file writing or During Type Casting ?
- Subject: Re: Problems during file writing or During Type Casting ?
- From: "Tom Wenger" <email@hidden>
- Date: Sat, 20 May 2006 20:13:56 +0530
Thanks Christian,
Codes given by you have solved my problems.
We have used the first one as our solutioin -
ie
FILE* theFile = fopen([[theSavePanel filename]
fileSystemRepresentation], "w");
if (theFile != NULL) {
fputs([[[_inspectingGraphicView graphics] description]
UTF8String], theFile);
fclose(theFile);
}
But i am pretty sure that other options given by you too will work with out
any problem.
Once again Thanks a lot.
--
Thanks &Regards
TomWenger.
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden