how do I Save a temp file?!?!! (REALbasic getting started Mailinglist archive)
Back to the thread list
Previous thread: Help
Next thread: action (as integer) parameter
| how do I Save a temp file?!?!! |
| Date: 04.05.06 03:27 (Wed, 3 May 2006 21:27:52 -0500) |
| From: Brian Heibert |
|
Hi,
I want to be able to save a temporary scrap file that would contain a image Look for the stars *** but I don't want to have a save dialog appear I am not sure how to do this and when the user clicks next the rest code below clears the paint canvas // Reset Variables fNamei fpl picel // Clear Canvas1 Canvas1.Graphics.ClearRect 0, 0, Canvas1.width, Canvas1.height Canvas1.Backdrop Eic // Set PIC as a NEW Picture picow Picture(graphics.width, graphics.height, 32) ******** SEE BELOW Dim dlg as New SaveAsDialog // Check to see if Filename has been created If fName then // Filename has NOT been created so goto SAVE AS dlg.Filter mage/jpg, bmp, pict, gif" dlg.SuggestedFileNameðame dlg.Titleiave Drawing" fÐg.ShowModal() If f <> Nil then f.saveaspicture(pic) fNameðname Else //user canceled End If // Filename has been created so continue to SAVE ElseIf fName<>"" then f.nameðame If f <> Nil then f.saveaspicture(pic) End If End if Brian Heibert <email address removed> _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html> |
| Re: how do I Save a temp file?!?!! |
| Date: 04.05.06 15:48 (Thu, 04 May 2006 07:48:55 -0700) |
| From: Michael Rebar |
|
On 5/3/06 7:27 PM, "Brian Heibert" <<email address removed>> wrote:
> ******** SEE BELOW > Dim dlg as New SaveAsDialog > // Check to see if Filename has been created > If fNamet then > // Filename has NOT been created so goto SAVE AS > dlg.Filtersmage/jpg, bmp, pict, gif" > dlg.SuggestedFileNameðame > dlg.Title:ave Drawing" > fÐg.ShowModal() > If f <> Nil then > f.saveaspicture(pic) > fNameðname > Else > //user canceled > End If > // Filename has been created so continue to SAVE > ElseIf fName<>"" then > f.nameðame > If f <> Nil then > f.saveaspicture(pic) > End If > End if ******** SEE BELOW Dim f as folderItem Dim p as Picture Dim fName as String fName ofPictureName.text p oomePictureName If fName<>"" then f getFolderItem(fName) // this'll attempt to create a // folderItem ref in the same folder // as your app If f <> Nil then f.saveaspicture(somePictureName) End If End if > Brian Heibert > <email address removed> _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html> |
| Re: how do I Save a temp file?!?!! |
| Date: 05.05.06 02:09 (Thu, 4 May 2006 20:09:03 -0500) |
| From: Brian Heibert |
|
I tried to use that
Dim f as folderItem Dim p as Picture Dim fName as String fName sADVCTMP1.PICT" If fName<>"" then f oetFolderItem(fName) // this'll attempt to create a // folderItem ref in the same folder // as your app If f <> Nil then f.saveaspicture(p) End If End if // Reset Variables fNames fkl picol // Clear Canvas1 Canvas1.Graphics.ClearRect 0, 0, Canvas1.width, Canvas1.height Canvas1.Backdrop ric // Set PIC as a NEW Picture picow Picture(graphics.width, graphics.height, 32) But I got a NilObjectException on f.saveasPicture(p) and I was confused a bit when looking at the code all I want to do is save a picture in a file that would only be used temporarily Brian Heibert <email address removed> On May 4, 2006, at 9:48 AM, Michael Rebar wrote: > On 5/3/06 7:27 PM, "Brian Heibert" <<email address removed>> wrote: > >> ******** SEE BELOW >> Dim dlg as New SaveAsDialog >> // Check to see if Filename has been created >> If fName then >> // Filename has NOT been created so goto SAVE AS >> dlg.Filter.mage/jpg, bmp, pict, gif" >> dlg.SuggestedFileNameðame >> dlg.Title ave Drawing" >> fÐg.ShowModal() >> If f <> Nil then >> f.saveaspicture(pic) >> fNameðname >> Else >> //user canceled >> End If >> // Filename has been created so continue to SAVE >> ElseIf fName<>"" then >> f.nameðame >> If f <> Nil then >> f.saveaspicture(pic) >> End If >> End if >> > ******** SEE BELOW > Dim f as folderItem > Dim p as Picture > Dim fName as String > > fName .fPictureName.text > p RomePictureName > > If fName<>"" then > f betFolderItem(fName) // this'll attempt to create a > // folderItem ref in the same folder > // as your app > If f <> Nil then > f.saveaspicture(somePictureName) > End If > End if > >> Brian Heibert >> <email address removed> >> > _______________________________________________ > Unsubscribe or switch delivery mode: > <http://www.realsoftware.com/support/listmanager/> > Search the archives of this list here: > <http://support.realsoftware.com/listarchives/lists.html> _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html> |
| Re: how do I Save a temp file?!?!! |
| Date: 05.05.06 09:37 (Fri, 5 May 2006 10:37:39 +0200) |
| From: Maarten de Vries |
|
You left p nil in your code, so you can't save it as a picture. You have to
make p a picture first. Maarten On 05/05/06, Brian Heibert <<email address removed>> wrote: > > I tried to use that > > Dim f as folderItem > Dim p as Picture > Dim fName as String > > fName = "ADVCTMP1.PICT" > > If fName<>"" then > f = getFolderItem(fName) // this'll attempt to create a > // folderItem ref in the same folder > // as your app > If f <> Nil then > f.saveaspicture(p) > End If > End if > _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html> |
| Re: how do I Save a temp file?!?!! |
| Date: 06.05.06 00:21 (Fri, 5 May 2006 19:21:02 -0400) |
| From: Charles Yeomans |
|
On May 5, 2006, at 7:50 PM, Brian Heibert wrote:
> Hi, > > I tried p.graphics oanvas1.backdrop > but I got Cannot assign a value to this property > I don't know what to do to get it to work If you are using Rb 2006, open the language reference. To do so, go to the Help menu and choose "Language Reference". You should practice doing this repeatedly until you are sure you know how to open the language reference. Once you have opened the language reference, find the column called "Category". Read down until you see "Errors". Place the mouse cursor over this text, depress the mouse button and release it to click the hyperlink. Now look in the column called "Subcategory". Read down until you see "Error Messages". Click this hyperlink by using the mouse, as just described. Now look into the third column, "Item". Read down until you see "Cannot Assign a Value to this Property". Click this hyperlink, again using the mouse as described above. The page that is then displayed in the window provides more explanation as to the meaning of the error message. Here, it says "You tried to assign a value to a constant or other object type that does not accept a value." Returning to your code, the conclusion is that either p.graphics is a constant, or p.graphics is something to which one cannot assign. So now return to the language reference. Remember that you can do so by selecting the Help menu and choosing "Language Reference". At the top of the language reference window is an edit field with caption "Location". Into this field, type "Picture.Graphics", then press the return key. You will learn that Picture.Graphics is a property. There are only three sorts of things to which you can assign -- local variables, method parameters. and mutable (not read-only) properties (whether defined as actual properties, methods using Assigns, or computed properties). In your code, p.Graphics is not a local variable, and it is not a method parameter. It is a property. If it is mutable, then you should be able to assign to it. But you cannot, and the compiler is the final authority (which is not, by the way, the same as always being right). Therefore, p.Graphics must not be mutable. So the documentation is wrong; it should have said that Picture.Graphics is read-only. But because you will know how to open the language reference and look up the meaning of an compiler error message if you practice what I have explained, you'll be able to figure this out for yourself. Charles Yeomans _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html> |
| Re: how do I Save a temp file?!?!! |
| Date: 06.05.06 00:38 (Fri, 5 May 2006 19:38:32 -0400) |
| From: Charles Yeomans |
|
But do you understand why it is not right?
Charles Yeomans On May 5, 2006, at 8:30 PM, Brian Heibert wrote: > Ok so > p.Graphics >anvas1 > isn't right > > how do I save a canvas? > > Brian Heibert > http://www.heibertweb.com > <email address removed> > On May 5, 2006, at 6:21 PM, Charles Yeomans wrote: > >> On May 5, 2006, at 7:50 PM, Brian Heibert wrote: >> >>> Hi, >>> >>> I tried p.graphics ,anvas1.backdrop >>> but I got Cannot assign a value to this property >>> I don't know what to do to get it to work >>> >> If you are using Rb 2006, open the language reference. To do so, >> go to the Help menu and choose "Language Reference". You should >> practice doing this repeatedly until you are sure you know how to >> open the language reference. >> >> Once you have opened the language reference, find the column >> called "Category". Read down until you see "Errors". Place the >> mouse cursor over this text, depress the mouse button and release >> it to click the hyperlink. Now look in the column called >> "Subcategory". Read down until you see "Error Messages". Click >> this hyperlink by using the mouse, as just described. >> >> Now look into the third column, "Item". Read down until you see >> "Cannot Assign a Value to this Property". Click this hyperlink, >> again using the mouse as described above. The page that is then >> displayed in the window provides more explanation as to the >> meaning of the error message. Here, it says >> >> "You tried to assign a value to a constant or other object type >> that does not accept a value." >> >> Returning to your code, the conclusion is that either p.graphics >> is a constant, or p.graphics is something to which one cannot >> assign. So now return to the language reference. Remember that >> you can do so by selecting the Help menu and choosing "Language >> Reference". At the top of the language reference window is an >> edit field with caption "Location". Into this field, type >> "Picture.Graphics", then press the return key. You will learn >> that Picture.Graphics is a property. >> >> There are only three sorts of things to which you can assign -- >> local variables, method parameters. and mutable (not read-only) >> properties (whether defined as actual properties, methods using >> Assigns, or computed properties). In your code, p.Graphics is not >> a local variable, and it is not a method parameter. It is a >> property. If it is mutable, then you should be able to assign to >> it. But you cannot, and the compiler is the final authority >> (which is not, by the way, the same as always being right). >> Therefore, p.Graphics must not be mutable. >> >> So the documentation is wrong; it should have said that >> Picture.Graphics is read-only. But because you will know how to >> open the language reference and look up the meaning of an compiler >> error message if you practice what I have explained, you'll be >> able to figure this out for yourself. >> _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html> |
| Re: how do I Save a temp file?!?!! |
| Date: 06.05.06 00:50 (Fri, 5 May 2006 18:50:48 -0500) |
| From: Brian Heibert |
|
Hi,
I tried p.graphics ~anvas1.backdrop but I got Cannot assign a value to this property I don't know what to do to get it to work Dim f as folderItem Dim p as Picture Dim fName as String fName .ADVCTMP1.PICT" If fName<>"" then f (etFolderItem(fName) // this'll attempt to create a // folderItem ref in the same folder // as your app If f <> Nil then p.Graphics >anvas1.backdrop f.saveaspicture(p) End If End if // Reset Variables fNamen fel picpl // Clear Canvas1 Canvas1.Graphics.ClearRect 0, 0, Canvas1.width, Canvas1.height Canvas1.Backdrop -ic // Set PIC as a NEW Picture picnw Picture(graphics.width, graphics.height, 32) Brian Heibert <email address removed> On May 5, 2006, at 3:37 AM, Maarten de Vries wrote: > You left p nil in your code, so you can't save it as a picture. You > have to > make p a picture first. > > Maarten > > On 05/05/06, Brian Heibert <<email address removed>> wrote: > >> >> I tried to use that >> >> Dim f as folderItem >> Dim p as Picture >> Dim fName as String >> >> fName tADVCTMP1.PICT" >> >> If fName<>"" then >> f tetFolderItem(fName) // this'll attempt to create a >> // folderItem ref in the same folder >> // as your app >> If f <> Nil then >> f.saveaspicture(p) >> End If >> End if >> > _______________________________________________ > Unsubscribe or switch delivery mode: > <http://www.realsoftware.com/support/listmanager/> > Search the archives of this list here: > <http://support.realsoftware.com/listarchives/lists.html> _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html> |
| Re: how do I Save a temp file?!?!! |
| Date: 06.05.06 01:30 (Fri, 5 May 2006 19:30:32 -0500) |
| From: Brian Heibert |
|
Ok so
p.Graphics |anvas1 isn't right how do I save a canvas? Brian Heibert http://www.heibertweb.com <email address removed> On May 5, 2006, at 6:21 PM, Charles Yeomans wrote: > On May 5, 2006, at 7:50 PM, Brian Heibert wrote: > >> Hi, >> >> I tried p.graphics manvas1.backdrop >> but I got Cannot assign a value to this property >> I don't know what to do to get it to work >> > If you are using Rb 2006, open the language reference. To do so, > go to the Help menu and choose "Language Reference". You should > practice doing this repeatedly until you are sure you know how to > open the language reference. > > Once you have opened the language reference, find the column called > "Category". Read down until you see "Errors". Place the mouse > cursor over this text, depress the mouse button and release it to > click the hyperlink. Now look in the column called "Subcategory". > Read down until you see "Error Messages". Click this hyperlink by > using the mouse, as just described. > > Now look into the third column, "Item". Read down until you see > "Cannot Assign a Value to this Property". Click this hyperlink, > again using the mouse as described above. The page that is then > displayed in the window provides more explanation as to the meaning > of the error message. Here, it says > > "You tried to assign a value to a constant or other object type > that does not accept a value." > > Returning to your code, the conclusion is that either p.graphics is > a constant, or p.graphics is something to which one cannot assign. > So now return to the language reference. Remember that you can do > so by selecting the Help menu and choosing "Language Reference". > At the top of the language reference window is an edit field with > caption "Location". Into this field, type "Picture.Graphics", then > press the return key. You will learn that Picture.Graphics is a > property. > > There are only three sorts of things to which you can assign -- > local variables, method parameters. and mutable (not read-only) > properties (whether defined as actual properties, methods using > Assigns, or computed properties). In your code, p.Graphics is not > a local variable, and it is not a method parameter. It is a > property. If it is mutable, then you should be able to assign to > it. But you cannot, and the compiler is the final authority (which > is not, by the way, the same as always being right). Therefore, > p.Graphics must not be mutable. > > So the documentation is wrong; it should have said that > Picture.Graphics is read-only. But because you will know how to > open the language reference and look up the meaning of an compiler > error message if you practice what I have explained, you'll be able > to figure this out for yourself. > > Charles Yeomans > > _______________________________________________ > Unsubscribe or switch delivery mode: > <http://www.realsoftware.com/support/listmanager/> > Search the archives of this list here: > <http://support.realsoftware.com/listarchives/lists.html> _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html> |
| Re: how do I Save a temp file?!?!! |
| Date: 06.05.06 01:57 (Fri, 5 May 2006 19:57:08 -0500) |
| From: Brian Heibert |
|
not sure exactly maybe a little
Brian Heibert http://www.heibertweb.com <email address removed> On May 5, 2006, at 6:38 PM, Charles Yeomans wrote: > But do you understand why it is not right? > > Charles Yeomans > > On May 5, 2006, at 8:30 PM, Brian Heibert wrote: > >> Ok so >> p.Graphics |anvas1 >> isn't right >> >> how do I save a canvas? >> >> Brian Heibert >> http://www.heibertweb.com >> <email address removed> >> >> On May 5, 2006, at 6:21 PM, Charles Yeomans wrote: >> >>> On May 5, 2006, at 7:50 PM, Brian Heibert wrote: >>> >>> >>> >>>> Hi, >>>> >>>> I tried p.graphics manvas1.backdrop >>>> but I got Cannot assign a value to this property >>>> I don't know what to do to get it to work >>>> >>>> >>> >>> If you are using Rb 2006, open the language reference. To do so, >>> go to the Help menu and choose "Language Reference". You should >>> practice doing this repeatedly until you are sure you know how to >>> open the language reference. >>> >>> Once you have opened the language reference, find the column >>> called "Category". Read down until you see "Errors". Place the >>> mouse cursor over this text, depress the mouse button and release >>> it to click the hyperlink. Now look in the column called >>> "Subcategory". Read down until you see "Error Messages". Click >>> this hyperlink by using the mouse, as just described. >>> >>> Now look into the third column, "Item". Read down until you see >>> "Cannot Assign a Value to this Property". Click this hyperlink, >>> again using the mouse as described above. The page that is then >>> displayed in the window provides more explanation as to the >>> meaning of the error message. Here, it says >>> >>> "You tried to assign a value to a constant or other object type >>> that does not accept a value." >>> >>> Returning to your code, the conclusion is that either p.graphics >>> is a constant, or p.graphics is something to which one cannot >>> assign. So now return to the language reference. Remember that >>> you can do so by selecting the Help menu and choosing "Language >>> Reference". At the top of the language reference window is an >>> edit field with caption "Location". Into this field, type >>> "Picture.Graphics", then press the return key. You will learn >>> that Picture.Graphics is a property. >>> >>> There are only three sorts of things to which you can assign -- >>> local variables, method parameters. and mutable (not read-only) >>> properties (whether defined as actual properties, methods using >>> Assigns, or computed properties). In your code, p.Graphics is >>> not a local variable, and it is not a method parameter. It is a >>> property. If it is mutable, then you should be able to assign to >>> it. But you cannot, and the compiler is the final authority >>> (which is not, by the way, the same as always being right). >>> Therefore, p.Graphics must not be mutable. >>> >>> So the documentation is wrong; it should have said that >>> Picture.Graphics is read-only. But because you will know how to >>> open the language reference and look up the meaning of an >>> compiler error message if you practice what I have explained, >>> you'll be able to figure this out for yourself. >>> >>> > _______________________________________________ > Unsubscribe or switch delivery mode: > <http://www.realsoftware.com/support/listmanager/> > Search the archives of this list here: > <http://support.realsoftware.com/listarchives/lists.html> _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html> |
| Re: how do I Save a temp file?!?!! |
| Date: 06.05.06 08:49 (Sat, 6 May 2006 09:49:41 +0200) |
| From: Maarten de Vries |
|
You can't put a canvas in a picture, but you can do it the other way around.
So, I suggest you first paint all your stuff to a picture (a new property of the window) and then draw that picture to you canvas. That way you can acces the picture without trouble. Maarten On 06/05/06, Brian Heibert <<email address removed>> wrote: > > not sure exactly maybe a little > Brian Heibert> _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html> |
| Re: how do I Save a temp file?!?!! |
| Date: 06.05.06 08:54 (Sat, 6 May 2006 09:54:00 +0200) |
| From: Maarten de Vries |
|
Oh, and btw, you did p=Canvas1.Backdrop
p.Graphics is a Graphics Canvas1.backdrop is a Picture You cant make a picture a graphics, or a graphics a picture (you can't make a graphics anything, but that doesn't matter now). p IS a picture and Canvas1.Backdrop is a picture too, so you do p= Canvas1.Backdrop. On 06/05/06, Maarten de Vries <<email address removed>> wrote: > > You can't put a canvas in a picture, but you can do it the other way > around. So, I suggest you first paint all your stuff to a picture (a new > property of the window) and then draw that picture to you canvas. That way > you can acces the picture without trouble. > > Maarten > > On 06/05/06, Brian Heibert <<email address removed>> wrote: > > > > not sure exactly maybe a little > > Brian Heibert> > > _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html> |
| Re: how do I Save a temp file?!?!! |
| Date: 06.05.06 19:13 (Sat, 6 May 2006 14:13:56 -0400) |
| From: Charles Yeomans |
|
Then perhaps your time might be best spent understanding why this is
wrong. Charles Yeomans On May 5, 2006, at 8:57 PM, Brian Heibert wrote: > not sure exactly maybe a little > Brian Heibert > http://www.heibertweb.com > <email address removed> > On May 5, 2006, at 6:38 PM, Charles Yeomans wrote: > >> But do you understand why it is not right? >> >> Charles Yeomans >> >> On May 5, 2006, at 8:30 PM, Brian Heibert wrote: >> >>> Ok so >>> p.Graphics <anvas1 >>> isn't right >>> >>> how do I save a canvas? >>> >>> Brian Heibert >>> http://www.heibertweb.com >>> <email address removed> >>> >>> >>> On May 5, 2006, at 6:21 PM, Charles Yeomans wrote: >>> >>> >>>> On May 5, 2006, at 7:50 PM, Brian Heibert wrote: >>>> >>>> >>>> >>>>> Hi, >>>>> >>>>> I tried p.graphics oanvas1.backdrop >>>>> but I got Cannot assign a value to this property >>>>> I don't know what to do to get it to work >>>>> >>>>> >>>> >>>> If you are using Rb 2006, open the language reference. To do >>>> so, go to the Help menu and choose "Language Reference". You >>>> should practice doing this repeatedly until you are sure you >>>> know how to open the language reference. >>>> >>>> Once you have opened the language reference, find the column >>>> called "Category". Read down until you see "Errors". Place the >>>> mouse cursor over this text, depress the mouse button and >>>> release it to click the hyperlink. Now look in the column >>>> called "Subcategory". Read down until you see "Error >>>> Messages". Click this hyperlink by using the mouse, as just >>>> described. >>>> >>>> Now look into the third column, "Item". Read down until you see >>>> "Cannot Assign a Value to this Property". Click this hyperlink, >>>> again using the mouse as described above. The page that is then >>>> displayed in the window provides more explanation as to the >>>> meaning of the error message. Here, it says >>>> >>>> "You tried to assign a value to a constant or other object type >>>> that does not accept a value." >>>> >>>> Returning to your code, the conclusion is that either p.graphics >>>> is a constant, or p.graphics is something to which one cannot >>>> assign. So now return to the language reference. Remember that >>>> you can do so by selecting the Help menu and choosing "Language >>>> Reference". At the top of the language reference window is an >>>> edit field with caption "Location". Into this field, type >>>> "Picture.Graphics", then press the return key. You will learn >>>> that Picture.Graphics is a property. >>>> >>>> There are only three sorts of things to which you can assign -- >>>> local variables, method parameters. and mutable (not read-only) >>>> properties (whether defined as actual properties, methods using >>>> Assigns, or computed properties). In your code, p.Graphics is >>>> not a local variable, and it is not a method parameter. It is a >>>> property. If it is mutable, then you should be able to assign >>>> to it. But you cannot, and the compiler is the final authority >>>> (which is not, by the way, the same as always being right). >>>> Therefore, p.Graphics must not be mutable. >>>> >>>> So the documentation is wrong; it should have said that >>>> Picture.Graphics is read-only. But because you will know how to >>>> open the language reference and look up the meaning of an >>>> compiler error message if you practice what I have explained, >>>> you'll be able to figure this out for yourself. >>>> >>>> >> _______________________________________________ >> Unsubscribe or switch delivery mode: >> <http://www.realsoftware.com/support/listmanager/> >> >> Search the archives of this list here: >> <http://support.realsoftware.com/listarchives/lists.html> >> > _______________________________________________ > Unsubscribe or switch delivery mode: > <http://www.realsoftware.com/support/listmanager/> > Search the archives of this list here: > <http://support.realsoftware.com/listarchives/lists.html> _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html> |
| Re: how do I Save a temp file?!?!! |
| Date: 06.05.06 22:46 (Sat, 6 May 2006 23:46:25 +0200) |
| From: Maarten de Vries |
|
Charles, if you're just gonna site here and say "go understand it" he isn't
going to. You got to make him understand it. What you did wrong was this: You tried to assign a picture to a graphics (p.graphics=Canvas1.Backdrop) You need to assign a picture to a picture (p=Canvas1.Backdrop) Or draw the picture on the graphics, but thats not smart in this case ( p.Graphics.DrawPicture Canvas1.Backdrop,0,0) And if you don't use backdrop, but draw to the canvas itself, you should first draw to a picture and then draw that picture on the canvas. That way you still have acces to the picture after you did your drawing. But you're not doing that, so you should do p=Canvas1.Backdrop On 06/05/06, Charles Yeomans <<email address removed>> wrote: > > Then perhaps your time might be best spent understanding why this is > wrong. > > Charles Yeomans > _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html> |
| Re: how do I Save a temp file?!?!! |
| Date: 06.05.06 23:06 (Sat, 6 May 2006 16:06:38 -0600) |
| From: Norman Palardy |
|
On May 06, 2006, at 3:46 PM, Maarten de Vries wrote: > Charles, if you're just gonna site here and say "go understand it" > he isn't > going to. You got to make him understand it. Been there and been trying for ... years ... literally. It's why I don't even bother to reply to Brian's requests any more. _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html> |
| Re: how do I Save a temp file?!?!! |
| Date: 07.05.06 00:04 (Sat, 06 May 2006 16:04:36 -0700) |
| From: Terry Ford |
|
On May 6, 2006, at 3:06 PM, Norman Palardy wrote: > > On May 06, 2006, at 3:46 PM, Maarten de Vries wrote: > >> Charles, if you're just gonna site here and say "go understand it" >> he isn't >> going to. You got to make him understand it. > > Been there and been trying for ... years ... literally. > It's why I don't even bother to reply to Brian's requests any more. Don't discourage Maarten. Let him find out for himself. ;-) Terry _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html> |
| Re: how do I Save a temp file?!?!! |
| Date: 07.05.06 09:47 (Sun, 7 May 2006 10:47:39 +0200) |
| From: Maarten de Vries |
|
Well, the point is you did bother replying to his email, just not in a
helpful way. Maybe you don't want to help him, well, fine. But then let someone else do it and don't go patronizing someone who asks a stupid question. Maarten On 07/05/06, Terry Ford <<email address removed>> wrote: > > > On May 06, 2006, at 3:46 PM, Maarten de Vries wrote: > > > >> Charles, if you're just gonna site here and say "go understand it" > >> he isn't > >> going to. You got to make him understand it. > > > > Been there and been trying for ... years ... literally. > > It's why I don't even bother to reply to Brian's requests any more. > _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html> |
| Re: how do I Save a temp file?!?!! |
| Date: 07.05.06 11:34 (Sun, 7 May 2006 20:34:05 +1000) |
| From: Kim Kohen |
|
On 07/05/2006, at 6:47 PM, Maarten de Vries wrote:
> Well, the point is you did bother replying to his email, just not in a > helpful way. I suspect you haven't been around this list for very long. Brian is very persistent at his attempts to learn but, as a consequence, often asks the same questions over and over again - even when given the answer. Charles, Norman and others have helped Brian many, many times in the past. I think Charles was trying to point out that if he learned to use the online help (and the archives as well) he'd be in a better position to help himself learn. In that way the frustration of both Brian, and those trying to assist, would be minimised. > Maybe you don't want to help him, well, fine. But then let > someone else do it and don't go patronizing someone who asks a stupid > question. I genuinely applaud you for helping. Perhaps you can succeed where others have failed. cheers kim _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html> |
| Re: how do I Save a temp file?!?!! |
| Date: 07.05.06 14:38 (Sun, 7 May 2006 15:38:53 +0200) |
| From: Maarten de Vries |
|
>
> > Maybe you don't want to help him, well, fine. But then let > > someone else do it and don't go patronizing someone who asks a stupid > > question. > > I genuinely applaud you for helping. Perhaps you can succeed where > others have failed. lol... Well, he should have the answer by now.. If not, well... emh.. that would be weird.. Maarten _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html> |
| Re: how do I Save a temp file?!?!! |
| Date: 07.05.06 17:01 (Sun, 7 May 2006 10:01:51 -0600) |
| From: Norman Palardy |
|
On May 07, 2006, at 2:47 AM, Maarten de Vries wrote: > Well, the point is you did bother replying to his email, just not in a > helpful way. Maybe you don't want to help him, well, fine. But then > let > someone else do it and don't go patronizing someone who asks a stupid > question. > > Maarten Careful how you quote things Maarten. The way you originally quoted that made it look like Terry replied with >>> Been there and been trying for ... years ... literally. >>> It's why I don't even bother to reply to Brian's requests any more. when in fact it was me. (it should be more like below) I replied to your email, not Brian's, and I did not patronize anyone. I just said that Charles, myself and numerous others have tried to help Brian out before and that now I simply refrain. > On May 06, 2006, at 5:04 PM, Terry Ford wrote: >> >> On May 6, 2006, at 3:06 PM, Norman Palardy wrote: >> >>> >>> On May 06, 2006, at 3:46 PM, Maarten de Vries wrote: >>> >>>> Charles, if you're just gonna site here and say "go understand >>>> it" he isn't >>>> going to. You got to make him understand it. >>> >>> Been there and been trying for ... years ... literally. >>> It's why I don't even bother to reply to Brian's requests any more. >> >> Don't discourage Maarten. Let him find out for himself. ;-) >> >> Terry > _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html> |
| Re: how do I Save a temp file?!?!! |
| Date: 07.05.06 19:38 (Sun, 7 May 2006 20:38:10 +0200) |
| From: Maarten de Vries |
|
Sorry, gmail handles quoting a bit differntly from my last email provider..
It's a bit confusing some times... And you're right you didn't patronize him, but charles did.. but apperantly with good reasons.. or something.... Maarten On 07/05/06, Norman Palardy <<email address removed>> wrote: > > On May 07, 2006, at 2:47 AM, Maarten de Vries wrote: > > > Well, the point is you did bother replying to his email, just not in a > > helpful way. Maybe you don't want to help him, well, fine. But then > > let > > someone else do it and don't go patronizing someone who asks a stupid > > question. > > > > Maarten > > Careful how you quote things Maarten. > The way you originally quoted that made it look like Terry replied with > > >>> Been there and been trying for ... years ... literally. > >>> It's why I don't even bother to reply to Brian's requests any more. > > when in fact it was me. (it should be more like below) > > I replied to your email, not Brian's, and I did not patronize anyone. > I just said that Charles, myself and numerous others have tried to > help Brian out before and that now I simply refrain. > > > On May 06, 2006, at 5:04 PM, Terry Ford wrote: > >> > >> On May 6, 2006, at 3:06 PM, Norman Palardy wrote: > >> > >>> > >>> On May 06, 2006, at 3:46 PM, Maarten de Vries wrote: > >>> > >>>> Charles, if you're just gonna site here and say "go understand > >>>> it" he isn't > >>>> going to. You got to make him understand it. > >>> > >>> Been there and been trying for ... years ... literally. > >>> It's why I don't even bother to reply to Brian's requests any more. > >> > >> Don't discourage Maarten. Let him find out for himself. ;-) > >> > >> Terry > > _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html> |
| Re: how do I Save a temp file?!?!! |
| Date: 07.05.06 21:51 (Sun, 7 May 2006 16:51:54 -0400) |
| From: Charles Yeomans |
|
I normally don't attempt to answer his questions anymore, because
it's a waste of time. The only way to do it is to write his code for him -- as I recently did, more or less, for his menu questions. But the error he was making was so elementary that I thought that perhaps he might be able to follow a detailed explanation. I was wrong, or perhaps he just doesn't care. This guy has been on these lists for several years asking the same questions over and over. We'll let you answer them for awhile. Charles Yeomans On May 7, 2006, at 2:38 PM, Maarten de Vries wrote: > Sorry, gmail handles quoting a bit differntly from my last email > provider.. > It's a bit confusing some times... > And you're right you didn't patronize him, but charles did.. but > apperantly > with good reasons.. or something.... > > Maarten > > On 07/05/06, Norman Palardy <<email address removed>> wrote: >> >> On May 07, 2006, at 2:47 AM, Maarten de Vries wrote: >> >> > Well, the point is you did bother replying to his email, just >> not in a >> > helpful way. Maybe you don't want to help him, well, fine. But then >> > let >> > someone else do it and don't go patronizing someone who asks a >> stupid >> > question. >> > >> > Maarten >> >> Careful how you quote things Maarten. >> The way you originally quoted that made it look like Terry replied >> with >> >> >>> Been there and been trying for ... years ... literally. >> >>> It's why I don't even bother to reply to Brian's requests any >> more. >> >> when in fact it was me. (it should be more like below) >> >> I replied to your email, not Brian's, and I did not patronize anyone. >> I just said that Charles, myself and numerous others have tried to >> help Brian out before and that now I simply refrain. >> >> > On May 06, 2006, at 5:04 PM, Terry Ford wrote: >> >> >> >> On May 6, 2006, at 3:06 PM, Norman Palardy wrote: >> >> >> >>> >> >>> On May 06, 2006, at 3:46 PM, Maarten de Vries wrote: >> >>> >> >>>> Charles, if you're just gonna site here and say "go understand >> >>>> it" he isn't >> >>>> going to. You got to make him understand it. >> >>> >> >>> Been there and been trying for ... years ... literally. >> >>> It's why I don't even bother to reply to Brian's requests any >> more. >> >> >> >> Don't discourage Maarten. Let him find out for himself. ;-) >> >> >> >> Terry >> > >> > _______________________________________________ > Unsubscribe or switch delivery mode: > <http://www.realsoftware.com/support/listmanager/> > Search the archives of this list here: > <http://support.realsoftware.com/listarchives/lists.html> _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html> |
Links
MBS Realbasic tutorial videos - Nachhilfe Nickenich