Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
166 user(s) are online (103 user(s) are browsing Forums)

Members: 0
Guests: 166

more...

Headlines

Forum Index


Board index » All Posts (zzd10h)




Re: SimpleMail AREXX script
Just can't stay away
Just can't stay away


Thank you sba for the new version of SimpleMail.

ATTACHMENT works great !

just to know :
Is it planned to be able to add multiple files to the same mail by ATTACHMENT command ?

Thank you again

Go to top


Re: SimpleMail AREXX script
Just can't stay away
Just can't stay away


Great and impressive to see all the changelog !

Impatiently waiting for this new version.
Thank for your work.

Go to top


Re: SimpleMail AREXX script
Just can't stay away
Just can't stay away


Great !

It will be for the next release (> 0.38) or is it still available ?

Because, when I use
'MAILWRITE MAILTO test@test.fr ATTACHMENT RAM:Readme.txt' it doesn't work.
of course
'MAILWRITE MAILTO test@test.fr' works.

And are multiples attachments in the same mail works (or will be working) by ATTACHMENT 1 2 3 ... ?

It's a chance that you read this thread :)

Go to top


Re: SimpleMail AREXX script
Just can't stay away
Just can't stay away


Yes, bad, it must be nice to add attachment in a easily manner.

Just by curiosity, which mailer is the most popular on AmigaOS4 (YAM or SimpleMail)?

Personally, I use SimpleMail, because...
I don't know why !

Go to top


Re: Post-Update 6 updates
Just can't stay away
Just can't stay away


Wonderful

Go to top


Re: How to find all open files ?
Just can't stay away
Just can't stay away


Thank you Tony for the explanations,
I wanted to use it to monitor all the files opened in the system at a precise instant.


Go to top


Re: How to find all open files ?
Just can't stay away
Just can't stay away


Thank for reply,
hoping in a next version...

Go to top


How to find all open files ?
Just can't stay away
Just can't stay away


Hi,
I'm looking for a tip using C to retrieve

-all the opened/locked files in the system (in a Dos system structure ?)
Or
-the file that a process has currently locked/opened (in an anchor in the process structure ?)

I must have made bad research but I found nothing in the autodocs and include.

Is somebody know a "simple" way to achieve this ?

Thank by advance for your help.

Go to top


Re: KingCon and Amiga OS 4.1
Just can't stay away
Just can't stay away


KingCON works very well on my system with

the aminet version + this update

http://amikit.amiga.sk/download/misc/KingCON-update18.lha


Go to top


Re: 7zip compression in batch failed with DSI
Just can't stay away
Just can't stay away


Thank you very much Salass.
This old version work nice with my script ;)

Thank again !

Go to top


7zip compression in batch failed with DSI
Just can't stay away
Just can't stay away


Hi,
I'm trying to compress multiples files & drawers with 7zip ( 7za program from http://sourceforge.net/projects/amiga ... zip-4.65-OS4.lha/download )

With the script below that I run with EXECUTE script.txt

When I run it, at the begining of the second file I obtain a DSI.
If I remove the intermediate command "date" it works fine, but I need to include a command (not date command) between each file to send a notification to another program.

Is somebody knows why this intermediate command make thsi DSI ? Is it my 7za command who is incorrect ?
This method works with lha, zip and lzx

Thank by advance for your help


"
cd "System:Utilities/"
7za a Fast7z.7zip "UnArc/"
date
7za a  Fast7z.7zip "UnArc.info"
date
7za a Fast7z.7zip "ShowConfig/"
date
7za a  Fast7z.7zip "ShowConfig.info"
date
7za a Fast7z.7zip "AmiDVD/"
date
7za a Fast7z.7zip "AmiDVD.info"
date
7za  a  Fast7z.7zip "RawDisk/"
date
7za a Fast7z.7zip "RawDisk.info"
date
"

Go to top


Re: X1000
Just can't stay away
Just can't stay away


And what about the "simple" passively cooled 5450 ?

i'm waiting mine next week, and I took this card for the passive cooling (want the minimum of noise)

i just realize that when you wrote 6450, you maybe wanted to write 5450?

Go to top


Re: Use of Glow icon as Picture in a MUI program
Just can't stay away
Just can't stay away


Thank you Thore,
now, therefore I have to learn how to use rastport with MUI.


Go to top


Re: Use of Glow icon as Picture in a MUI program
Just can't stay away
Just can't stay away


Thank you Thore for your reply.

But in AboutBox which method do you use ?

GetIconTags, LayoutIcon, IconControl
followed by an
ImageObject, MUIA_Image_OldImage

or another method ?
thank you

Go to top


Re: Use of Glow icon as Picture in a MUI program
Just can't stay away
Just can't stay away


Thank Broadblues,
but I don't find any references to this MUI_Pixmap class (or MUIA_Pixmap parameters) neither on the SDK noor by googling it.

I will try to ask to the AboutBox authors which object is in use in his class.

Thank


Go to top


Re: Use of Glow icon as Picture in a MUI program
Just can't stay away
Just can't stay away


Thank you broadblues,
I take several hours to try it with your advices.
it doesn't work but with your code I can see if the icon is PNG or Amiga type...
But it doesn't load some pictures on my MUI interfaces.

With the below code,
for PNG icon , I obtain
GetIconTags OK
LayoutIcon OK
IconControl OK PNG

for Glow Icon,
GetIconTags OK
LayoutIcon OK
IconControl OK Amiga

Therefore, I think that the icons are well loaded but not displayed. it must be my call to the MUI ImageObject who must be wrong (at least, certainly many others wrong things in my code...)

Broadblues, if you have times, could you look at this ?
But again, thanks to have send me this code.

Here is my code, :

struct DiskObject *ApplIcone;

struct Screen *monEcran ;
if ((monEcran = LockPubScreen(NULL)))
UnlockPubScreen(NULL,monEcran);


ApplIcone = GetIconTags("SysMon",ICONGETA_FailIfUnavailable,FALSE,TAG_DONE) ; /* or with SysMon.info */
//ApplIcone = GetIconTags(NULL,ICONGETA_GetDefaultName,"SysMon.info", ICONGETA_FailIfUnavailable,FALSE,TAG_DONE) ; /* GetIconTags failed like this or with "SysMon" */
if(ApplIcone)
printf("GetIconTags OK\n");
else
printf("GetIconTags KO\n");

//UBYTE *image = NULL;
struct Image *image = NULL ;
int w,h;

w = h = 0;
BOOL rc ;
rc = LayoutIcon(ApplIcone,monEcran,TAG_DONE);
//rc = LayoutIcon(ApplIcone,NULL,TAG_DONE); /* or with this */
if (rc)
printf("LayoutIcon OK\n");
else
printf("LayoutIcon KO\n");

STRPTR * iconFormat;

if (IconControl(ApplIcone,ICONCTRLA_GetImageData1,&image,
ICONCTRLA_GetWidth,&w,
ICONCTRLA_GetHeight,&h,
ICONCTRLA_GetIconFileFormat,&iconFormat,
TAG_DONE))
printf("IconControl OK %s\n",iconFormat);
else
printf("IconControl KO\n");

And finally to load picture in my MUI interface :

Child, DtpicObject, MUIA_Dtpic_Name, image, End, /* or with (struct Image *)image */
Child, ImageObject, MUIA_Image_OldImage, image,End, /* or with (struct Image *)image */

...
And at end :
if (ApplIcone)
{
FreeDiskObject(ApplIcone);
printf("FreeDiskObject final de l'icone\n") ;
}



Go to top


Re: Use of Glow icon as Picture in a MUI program
Just can't stay away
Just can't stay away


Sinisrus,
why are you sorry ? (je t'ai envoyé un mail)


Edited by zzd10h on 2012/11/1 19:58:25
Go to top


Re: Use of Glow icon as Picture in a MUI program
Just can't stay away
Just can't stay away


Thank
i will try bin2c tool :)

Go to top


Re: Use of Glow icon as Picture in a MUI program
Just can't stay away
Just can't stay away


Thank broadblues, very nice to you to have made the test :)

Or a simpler solution will be, maybe, to translate this icon in a embedded image structure ?

For my 2) question, do you have some idea? How to transform a picture to be included in the source code ?

Sorry to ask so much things...

Go to top


Re: Use of Glow icon as Picture in a MUI program
Just can't stay away
Just can't stay away


Thank will try and post result

Go to top



TopTop
« 1 ... 66 67 68 (69) 70 »




Powered by XOOPS 2.0 © 2001-2023 The XOOPS Project