Thread: Re: [GD-Windows] MS Platform SDK for IA64
Brought to you by:
vexxed72
From: brian h. <bri...@py...> - 2002-11-09 09:21:35
|
> The platform SDK update site: > http://www.microsoft.com/msdownload/platformsdk/sdkupdate/ Baffling, bloody fricking baffling. I spent at least 15 minutes on the site trying various permutations of searches, and that URL never came up. *sigh* Anyway, thanks, that _seems_ to be what I need, but I'm not sure what the "Windows XP SP1" bit means -- is it a part of XP SP1, or does it require it, or what? > (This reply is late, because my ISP has changed its name, and the > list admin decided to not accept this message for that reason. > Thanks, admin ;-) He's a right bastard, that one. =) Brian |
From: Eero P. <epa...@ko...> - 2002-11-09 10:17:38
|
brian hook wrote: > >The platform SDK update site: > >http://www.microsoft.com/msdownload/platformsdk/sdkupdate/ > > > Baffling, bloody fricking baffling. I spent at least 15 minutes on the > site trying various permutations of searches, and that URL never came > up. *sigh* > > Anyway, thanks, that _seems_ to be what I need, but I'm not sure what > the "Windows XP SP1" bit means -- is it a part of XP SP1, or does it > require it, or what? It seems possible to install the SDK even on Win98 (Don't ask me why I know), but I think it did want WinXP as the platform, but I may remember this incorrectly (NT might also be ok here) Eero |
From: Pierre T. <p.t...@wa...> - 2002-11-28 21:41:09
|
I'd like to be able to drag-and-drop mails from Outlook Express directly into my app. I've already implemented drag-and-drop from files to a running app in the past, it worked fine. But I'm not sure how to do that with mails from Outlook. When I drag a mail from Outlook to, say the Windows desktop, cursor changes to the little "+" indicating drop is possible. Then a file is created, say Mail.eml. However, if I drag that same mail over my app (which otherwise supports drag-and-drop of other files), the cursor doesn't change and nothing happens. So I guess there's something missing to enable that kind of interaction. Ideally I'd like to get back the eml file(s) directly into my app, even if I have to create them myself from whatever I get from Outlook when the drop occurs... Ideas ? Cheers :) Pierre |
From: Ivan-Assen I. <as...@ha...> - 2002-11-28 21:49:36
|
You should write a simple application that dumps all the available Clipboard formats that are carried with the drag'n'drop (drag'n'drop functionality is very similar to Clipboard cut'n'paste). Examine them and you'll probably find one that suits you. Oh, and RTFMSDN too :-) Regards, Assen ----- Original Message ----- From: "Pierre Terdiman" <p.t...@wa...> To: <gam...@li...> Sent: Thursday, November 28, 2002 11:39 PM Subject: [GD-Windows] Drag and drop from Outlook Express > I'd like to be able to drag-and-drop mails from Outlook Express directly > into my app. I've already implemented drag-and-drop from files to a running > app in the past, it worked fine. But I'm not sure how to do that with mails > from Outlook. > > When I drag a mail from Outlook to, say the Windows desktop, cursor changes > to the little "+" indicating drop is possible. Then a file is created, say > Mail.eml. > > However, if I drag that same mail over my app (which otherwise supports > drag-and-drop of other files), the cursor doesn't change and nothing > happens. > > So I guess there's something missing to enable that kind of interaction. > Ideally I'd like to get back the eml file(s) directly into my app, even if I > have to create them myself from whatever I get from Outlook when the drop > occurs... > > Ideas ? > > Cheers :) > Pierre > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Get the new Palm Tungsten T > handheld. Power & Color in a compact size! > http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en > _______________________________________________ > Gamedevlists-windows mailing list > Gam...@li... > https://lists.sourceforge.net/lists/listinfo/gamedevlists-windows > Archives: > http://sourceforge.net/mailarchive/forum.php?forum_id=555 |
From: Jon W. <hp...@mi...> - 2002-11-29 18:55:13
|
I think Outlook may be using OLE/COM drag-and-drop data interchange, which is rather nastier (as far as I can find) than the regular file- and-message-based drag-and-drop that I'm sure you're using now. I just did a search again, and searching for IDropTarget and RegisterDragDrop seems to be the start of the documentation yarn ball for this topic. Cheers, / h+ > -----Original Message----- > From: gam...@li... > [mailto:gam...@li...]On Behalf Of > Pierre Terdiman > Sent: Thursday, November 28, 2002 1:39 PM > To: gam...@li... > Subject: [GD-Windows] Drag and drop from Outlook Express > > > I'd like to be able to drag-and-drop mails from Outlook Express directly > into my app. I've already implemented drag-and-drop from files to > a running > app in the past, it worked fine. But I'm not sure how to do that > with mails > from Outlook. > > When I drag a mail from Outlook to, say the Windows desktop, > cursor changes > to the little "+" indicating drop is possible. Then a file is created, say > Mail.eml. > > However, if I drag that same mail over my app (which otherwise supports > drag-and-drop of other files), the cursor doesn't change and nothing > happens. > > So I guess there's something missing to enable that kind of interaction. > Ideally I'd like to get back the eml file(s) directly into my > app, even if I > have to create them myself from whatever I get from Outlook when the drop > occurs... > > Ideas ? > > Cheers :) > Pierre > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Get the new Palm Tungsten T > handheld. Power & Color in a compact size! > http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en > _______________________________________________ > Gamedevlists-windows mailing list > Gam...@li... > https://lists.sourceforge.net/lists/listinfo/gamedevlists-windows > Archives: > http://sourceforge.net/mailarchive/forum.php?forum_id=555 > |
From: Marek R. <mar...@st...> - 2002-11-29 20:30:17
|
> I think Outlook may be using OLE/COM drag-and-drop data interchange, > which is rather nastier (as far as I can find) than the regular file- > and-message-based drag-and-drop that I'm sure you're using now. > I just did a search again, and searching for IDropTarget and > RegisterDragDrop seems to be the start of the documentation yarn ball > for this topic. > Cheers, > / h+ >> -----Original Message----- >> From: gam...@li... >> [mailto:gam...@li...]On Behalf Of >> Pierre Terdiman >> Sent: Thursday, November 28, 2002 1:39 PM >> To: gam...@li... >> Subject: [GD-Windows] Drag and drop from Outlook Express >> >> >> I'd like to be able to drag-and-drop mails from Outlook Express directly >> into my app. I've already implemented drag-and-drop from files to >> a running >> app in the past, it worked fine. But I'm not sure how to do that >> with mails >> from Outlook. >> >> When I drag a mail from Outlook to, say the Windows desktop, >> cursor changes >> to the little "+" indicating drop is possible. Then a file is created, say >> Mail.eml. >> >> However, if I drag that same mail over my app (which otherwise supports >> drag-and-drop of other files), the cursor doesn't change and nothing >> happens. >> >> So I guess there's something missing to enable that kind of interaction. >> Ideally I'd like to get back the eml file(s) directly into my >> app, even if I >> have to create them myself from whatever I get from Outlook when the drop >> occurs... >> >> Ideas ? >> >> Cheers :) >> Pierre >> >> >> >> ------------------------------------------------------- >> This SF.net email is sponsored by: Get the new Palm Tungsten T >> handheld. Power & Color in a compact size! >> http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en >> _______________________________________________ >> Gamedevlists-windows mailing list >> Gam...@li... >> https://lists.sourceforge.net/lists/listinfo/gamedevlists-windows >> Archives: >> http://sourceforge.net/mailarchive/forum.php?forum_id=555 >> > ------------------------------------------------------- > This SF.net email is sponsored by: Get the new Palm Tungsten T > handheld. Power & Color in a compact size! > http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en > _______________________________________________ > Gamedevlists-windows mailing list > Gam...@li... > https://lists.sourceforge.net/lists/listinfo/gamedevlists-windows > Archives: > http://sourceforge.net/mailarchive/forum.php?forum_id=555 |