Application179 아웃룩으로 메일 보내자.. uses ComObj; procedure TForm1.Button16Click(Sender: TObject); const olMailItem = 0; olByValue = 1; var OutlookApp, MailItem, MyAttachments: OLEVariant; begin try OutlookApp := GetActiveOleObject('Outlook.Application'); except OutlookApp := CreateOleObject('Outlook.Application'); end; try MailItem := OutlookApp.CreateItem(olMailItem); MailItem.Recipients.Add('YourMailAddress@something.com'); Mail.. 2008. 8. 13. WideChar := WideString .... PChar := String이나 array of Char := String 대입은 되지만 wideString이나 wideChar계열은 그게 안되죠.. 그래서 제가 아래와같이 했습니다.(좀 한심하죠) C의 내용을 Pascal로 포팅하는 중 필요해서 만들었죠.. ///////////////////////////////////////////////// // WideString을 WCHAR 에 넣는다. // aPWChar := aWideString 이렇게 되도록,... ///////////////////////////////////////////////// procedure StrToWCBuffer( var Buf; Sentence: WideString ); var SrcPtr, DstPtr: Pointer; .. 2008. 8. 13. COM+ in Delphi 원문 위치 http://www.agnisoft.com/white_papers/complus/complus.asp COM+ in Delphi Author: Deepak Shenoy Download the code for this white paper (ComPlusCode.zip, 255 KB) Abstract Most of you are now using Windows 2000 or XP. As a programmer you now have a new model to work with - COM+. But are you using it at all? In this session you'll see what COM+ provides you more than COM, what you CAN use in yo.. 2008. 8. 13. XML 이용하기 원문 위치 http://www.agnisoft.com/white_papers/xml_delphi.asp Data Exchange using XML and Delphi Author: Deepak Shenoy Introduction Introduction to XML Where does XML fit in? XML and Delphi Stock Demo - Steps 1 to 4 Converting Existing Applications to use XML Data communication using XML Interoperability with other systems Communication Demo Technologies that use XML Internet Express BizTalk SOAP - .. 2008. 8. 13. 이전 1 ··· 30 31 32 33 34 35 36 ··· 45 다음