oldtpfun-dotnet-memo.blogspot.com oldtpfun-dotnet-memo.blogspot.com

oldtpfun-dotnet-memo.blogspot.com

どっとネット・プリズム怪

Unit DirZipImp; namespace ConsoleApplication1; interface type ConsoleApp = class public class method Main(args: array of String); end; implementation class method ConsoleApp.Main(args: array of String); begin / add your own code here Console.WriteLine('ならやめれば、うそよ'); Console.ReadLine(); end; end. Namespace ConsoleApplication2; interface uses System.Reflection; type ConsoleApp = class public class method Main(args: array of String); end; implementation class method ConsoleApp.Main(args: array of St...Metho...

http://oldtpfun-dotnet-memo.blogspot.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR OLDTPFUN-DOTNET-MEMO.BLOGSPOT.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

April

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Wednesday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 2.8 out of 5 with 8 reviews
5 star
0
4 star
2
3 star
4
2 star
0
1 star
2

Hey there! Start your review of oldtpfun-dotnet-memo.blogspot.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.3 seconds

FAVICON PREVIEW

  • oldtpfun-dotnet-memo.blogspot.com

    16x16

  • oldtpfun-dotnet-memo.blogspot.com

    32x32

  • oldtpfun-dotnet-memo.blogspot.com

    64x64

  • oldtpfun-dotnet-memo.blogspot.com

    128x128

CONTACTS AT OLDTPFUN-DOTNET-MEMO.BLOGSPOT.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
どっとネット・プリズム怪 | oldtpfun-dotnet-memo.blogspot.com Reviews
<META>
DESCRIPTION
Unit DirZipImp; namespace ConsoleApplication1; interface type ConsoleApp = class public class method Main(args: array of String); end; implementation class method ConsoleApp.Main(args: array of String); begin / add your own code here Console.WriteLine('ならやめれば、うそよ'); Console.ReadLine(); end; end. Namespace ConsoleApplication2; interface uses System.Reflection; type ConsoleApp = class public class method Main(args: array of String); end; implementation class method ConsoleApp.Main(args: array of St...Metho...
<META>
KEYWORDS
1 どっとネット・プリズム怪
2 activex exeもどき
3 が載っていたのでこれをprismでやってみた
4 以下ソース
5 まずは、exeのメインルーチン
6 次に、exeに含まれるクラス
7 最後に上記のクラスライブラリを動的に呼び足してるexe
8 consoleapplication1 exeを呼び出すと
9 ならやめれば、うそよ
10 と表示され
CONTENT
Page content here
KEYWORDS ON
PAGE
どっとネット・プリズム怪,activex exeもどき,が載っていたのでこれをprismでやってみた,以下ソース,まずは、exeのメインルーチン,次に、exeに含まれるクラス,最後に上記のクラスライブラリを動的に呼び足してるexe,consoleapplication1 exeを呼び出すと,ならやめれば、うそよ,と表示され,と表示されます,認識されないので注意が必要です,参照登録が必要となります,oldtpfun,0 件のコメント,ラベル prism,へなちょこテストこーど,guid文字列を得る,else
SERVER
GSE
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

どっとネット・プリズム怪 | oldtpfun-dotnet-memo.blogspot.com Reviews

https://oldtpfun-dotnet-memo.blogspot.com

Unit DirZipImp; namespace ConsoleApplication1; interface type ConsoleApp = class public class method Main(args: array of String); end; implementation class method ConsoleApp.Main(args: array of String); begin / add your own code here Console.WriteLine('ならやめれば、うそよ'); Console.ReadLine(); end; end. Namespace ConsoleApplication2; interface uses System.Reflection; type ConsoleApp = class public class method Main(args: array of String); end; implementation class method ConsoleApp.Main(args: array of St...Metho...

INTERNAL PAGES

oldtpfun-dotnet-memo.blogspot.com oldtpfun-dotnet-memo.blogspot.com
1

どっとネット・プリズム怪: ActiveX.Exeもどき

http://www.oldtpfun-dotnet-memo.blogspot.com/2012/11/activexexe.html

Unit DirZipImp; namespace ConsoleApplication1; interface type ConsoleApp = class public class method Main(args: array of String); end; implementation class method ConsoleApp.Main(args: array of String); begin / add your own code here Console.WriteLine('ならやめれば、うそよ'); Console.ReadLine(); end; end. Namespace ConsoleApplication2; interface uses System.Reflection; type ConsoleApp = class public class method Main(args: array of String); end; implementation class method ConsoleApp.Main(args: array of St...

2

どっとネット・プリズム怪: 4月 2011

http://www.oldtpfun-dotnet-memo.blogspot.com/2011_04_01_archive.html

Delphi PrismでGuidを得るには、System.Guidを使用します。 Method MainForm.button1 Click(sender: System.Object; e: System.EventArgs); begin var myguid := System.Guid.NewGuid; label1.Text := myguid.ToString(); end;. 画像ウィンドウ テンプレート. Powered by Blogger.

3

どっとネット・プリズム怪: Processのリストを表示する。

http://www.oldtpfun-dotnet-memo.blogspot.com/2010/04/process.html

最近、VBAでプロセスを列挙する必要があったので、Prism(というか.Net)でやってみた. 以下、コード(ボタンを押すとリストボックスにプロセスリストを表示する。). Method MainForm.button1 Click(sender: System.Object; e: System.EventArgs); var ProcessList : array of System.Diagnostics.Process; begin ProcessList := System.Diagnostics.Process.GetProcesses(); for each ps : System.Diagnostics.Process in ProcessList do begin listbox1.Items.Add(ps.ProcessName); end; end;. Delphi Win32版で書いてみました。NT4.0をサポートしないといけない場合は、. 画像ウィンドウ テンプレート. Powered by Blogger.

4

どっとネット・プリズム怪: 11月 2012

http://www.oldtpfun-dotnet-memo.blogspot.com/2012_11_01_archive.html

Unit DirZipImp; namespace ConsoleApplication1; interface type ConsoleApp = class public class method Main(args: array of String); end; implementation class method ConsoleApp.Main(args: array of String); begin / add your own code here Console.WriteLine('ならやめれば、うそよ'); Console.ReadLine(); end; end. Namespace ConsoleApplication2; interface uses System.Reflection; type ConsoleApp = class public class method Main(args: array of String); end; implementation class method ConsoleApp.Main(args: array of St...

5

どっとネット・プリズム怪: ファイルリストを取取得する。

http://www.oldtpfun-dotnet-memo.blogspot.com/2009/10/blog-post.html

System.IO.Directory.GetFilesメソッドで簡単に取得できます。 Method MainForm.buttonExecGetFile Click(sender: System.Object; e: System.EventArgs);. FileList : Array of String;. FileName : String;. SelflistBoxResult.Items.Clear();. If Self.checkBoxFindSubDir.Checked then. FileList := System.IO.Directory.GetFiles(Self.textBoxStartPath.Text,'*',System.IO.SearchOption.AllDirectories);. For FileName in FileList do. ListBoxResult.Items.Add(FileName);. 画像ウィンドウ テンプレート. Powered by Blogger.

UPGRADE TO PREMIUM TO VIEW 9 MORE

TOTAL PAGES IN THIS WEBSITE

14

LINKS TO THIS WEBSITE

nonothoughtman.blogspot.com nonothoughtman.blogspot.com

Delphiッこ倶楽部東京出張所: 9月 2011

http://nonothoughtman.blogspot.com/2011_09_01_archive.html

CoodGearさんおよびDelphiに関することを 適当に書きます。 News Sourceのほとんどを他のブログに依存している他力本願ブログです。 処理としては、時刻が更新されると、登録した通知先(作った例場合はフォーム)の. まずは、時計のソース、タイマーを使って定周期で時刻を更新し、登録先の. System.SysUtils, System.Classes,Vcl.ExtCtrls, Data.Bind.EngExt,. VclBind.DBEngExt, System.Rtti, System.Bindings.Outputs, Vcl.Bind.Editors,. System.Bindings.EvalProtocol,. System.Bindings.Expression,. System.Bindings.ObjEval,. System.Bindings.Helper;. Procedure FTimerTimer(Sender: TObject);. Procedure DataModuleCreate(Sender: TObject);. FNowString : String;.

nonothoughtman.blogspot.com nonothoughtman.blogspot.com

Delphiッこ倶楽部東京出張所: TZipFile.ZipDirectoryContentsのCOMラッパー

http://nonothoughtman.blogspot.com/2012/11/tzipfilezipdirectorycontentscom.html

CoodGearさんおよびDelphiに関することを 適当に書きます。 News Sourceのほとんどを他のブログに依存している他力本願ブログです。 Private Sub CommandButton1 Click() Dim DirZip As SimpleDirZip.DirZip Set DirZip = New SimpleDirZip.DirZip Call DirZip.Compress("C: Users ppp", "C: Users pp ppp.zip") Set DirZip = Nothing End Sub Private Sub CommandButton2 Click() Dim DirZip As SimpleDirZip.DirZip Set DirZip = New SimpleDirZip.DirZip Call DirZip.Extract("C: Users pp ppp.zip", "C: Users pp p") Set DirZip = Nothing End Sub. 仕様なんかしら・・・。

nonothoughtman.blogspot.com nonothoughtman.blogspot.com

Delphiッこ倶楽部東京出張所: AnsiExtractQotedStr

http://nonothoughtman.blogspot.com/2012/11/ansiextractqotedstr.html

CoodGearさんおよびDelphiに関することを 適当に書きます。 News Sourceのほとんどを他のブログに依存している他力本願ブログです。 QuotedStr関数の存在は、知ってたけど、AnsiExtrctQuotedStrの存在は知らなかった。( ゞ. AnsiExtractQuitedStr内のsrcのとこで、直接キャストしようとすると コンパイルエラーが出るので、一度変数受けでキャスト。 Simple テンプレート. Powered by Blogger.

nonothoughtman.blogspot.com nonothoughtman.blogspot.com

Delphiッこ倶楽部東京出張所: 11月 2012

http://nonothoughtman.blogspot.com/2012_11_01_archive.html

CoodGearさんおよびDelphiに関することを 適当に書きます。 News Sourceのほとんどを他のブログに依存している他力本願ブログです。 Private Sub CommandButton1 Click() Dim DirZip As SimpleDirZip.DirZip Set DirZip = New SimpleDirZip.DirZip Call DirZip.Compress("C: Users ppp", "C: Users pp ppp.zip") Set DirZip = Nothing End Sub Private Sub CommandButton2 Click() Dim DirZip As SimpleDirZip.DirZip Set DirZip = New SimpleDirZip.DirZip Call DirZip.Extract("C: Users pp ppp.zip", "C: Users pp p") Set DirZip = Nothing End Sub. 仕様なんかしら・・・。

nonothoughtman.blogspot.com nonothoughtman.blogspot.com

Delphiッこ倶楽部東京出張所: publishedなメソッドを隠す(ネストした型宣言使用編)

http://nonothoughtman.blogspot.com/2012/12/published_13.html

CoodGearさんおよびDelphiに関することを 適当に書きます。 News Sourceのほとんどを他のブログに依存している他力本願ブログです。 さて、最近のDelphiでは、 ネストした型宣言. 先ず、 【関数名でメソッドが呼び出されるクラスのサンプル】. これで、ユニットの使用者からは、子クラスのメソッドの宣言が見えなくなり、直接呼び出す. Simple テンプレート. Powered by Blogger.

nonothoughtman.blogspot.com nonothoughtman.blogspot.com

Delphiッこ倶楽部東京出張所: 12月 2010

http://nonothoughtman.blogspot.com/2010_12_01_archive.html

CoodGearさんおよびDelphiに関することを 適当に書きます。 News Sourceのほとんどを他のブログに依存している他力本願ブログです。 Simple テンプレート. Powered by Blogger.

nonothoughtman.blogspot.com nonothoughtman.blogspot.com

Delphiッこ倶楽部東京出張所: 3月 2011

http://nonothoughtman.blogspot.com/2011_03_01_archive.html

CoodGearさんおよびDelphiに関することを 適当に書きます。 News Sourceのほとんどを他のブログに依存している他力本願ブログです。 Delphihelplibには、そのほかにもいろいろなクラスがあるようなので、追々試してみようと思う。 Simple テンプレート. Powered by Blogger.

nonothoughtman.blogspot.com nonothoughtman.blogspot.com

Delphiッこ倶楽部東京出張所: 1月 2014

http://nonothoughtman.blogspot.com/2014_01_01_archive.html

CoodGearさんおよびDelphiに関することを 適当に書きます。 News Sourceのほとんどを他のブログに依存している他力本願ブログです。 GExpertsのMove to Matching Delimiter 機能. 数日前、@ fm2さんが、ツイッターで. DelphiのIDEで  begin 対する end を検索する、ショートカットなんぞはありませんか? これ、IDEの標準機能では、出来なさそうだけど、 GExperts. GExperts自体は、有名なツールなので、ご存知の方も多いと思います。 XE4までは、 GExperts のサイトにインストーラ. XE5は、残念ながら、インストーラがないので手動インストールが必要です。 インストール方法は、以下のとおりです。(Delphi XE5が必要です。). ビルドすると、GExpertsRSXE5.dllができます。 12288;HKEY CURRENT USER Software Embarcadero BDS 12.0 Experts. If a delimiter token is found, the expert scans ...

nonothoughtman.blogspot.com nonothoughtman.blogspot.com

Delphiッこ倶楽部東京出張所: 6月 2012

http://nonothoughtman.blogspot.com/2012_06_01_archive.html

CoodGearさんおよびDelphiに関することを 適当に書きます。 News Sourceのほとんどを他のブログに依存している他力本願ブログです。 ついでといっては、なんですが、dbGo(Ado)を使って、シート一覧を取得してみます。 12288;      . 12288;       const. 12288;       const. 12288;    Schemaに  . 12288;    DataSet に スキーマ取得結果の書き込み先のレコードセットを指定します。 12288;    . 12288;    また、今回は、Restrictions と. 12288;  . Microsoft.ACE.OLEDB.12.0. 12288;  . 12288;  Extended PropertiesにExcel 12.0(Excel2010の場合). 65288;ConnectionStringについては、http:/ connectionstrings.com/ が参考になります。). ADOConnection1.Connected := true;.

nonothoughtman.blogspot.com nonothoughtman.blogspot.com

Delphiッこ倶楽部東京出張所: 8月 2011

http://nonothoughtman.blogspot.com/2011_08_01_archive.html

CoodGearさんおよびDelphiに関することを 適当に書きます。 News Sourceのほとんどを他のブログに依存している他力本願ブログです。 Label1.Caption := IntToStr(System.CpuCount). Simple テンプレート. Powered by Blogger.

UPGRADE TO PREMIUM TO VIEW 10 MORE

TOTAL LINKS TO THIS WEBSITE

20

OTHER SITES

oldtoytrains.com oldtoytrains.com

Nilsen Trains we buy old toy trains sell your old toy trains here Dutchess County Hudson Valley New York

We buy all types of old toy trains. Welcome to Nilsen Trains. We are experts in all types of old and antique. Electric toy trains, and are qualified to ensure that you get a fair price for your. We at Nilsen Trains have been collecting and buying old electric trains for 20 years. In that. Time we have become familiar with the various brands, styles and scales that have made this. Hobby a very exciting and educational experience. We are always looking for used trains and. Antique Toy Trains of.

oldtoytrains.weebly.com oldtoytrains.weebly.com

Old Toy Trains - Home

Lionel Pre War Trains. Lionel Post War Trains. Old Toy Trains Web Site is your place to find vintage toy trains from various manufacturers, including parts. We also sell vintage Plasticville Kits on our other site, just click the button below. Plasticville Kits For Sale. Welcome to OldToyTrains Web Site! Create a free website. Start your own free website. A surprisingly easy drag and drop site creator. Learn more.

oldtoytruck.com oldtoytruck.com

Old Toy Trucks ~ Buddy L ~ Sturditoy ~ Keystone

oldtoyworld.com oldtoyworld.com

oldtoyworld - tinplate clockwork collectibles

Would You Pay $33,000. For This Tin Toy? The Boxer - EP Lehmann. We will be examining tinplate mechanical toys from the late 1800's and early 1900's. To present information quckly, we have chosen an "always under construction" look! Don't let this appearance fool you. Remember. Knowledge is power! Fantastic bargins and discoveries are all over the internet, in flea markets, yard sales and attics everywhere. You just need to identify them! We have chosen to start with Lehmann Toys. Toy Is More Valuable.

oldtoyz1.com oldtoyz1.com

Carol and Dallas' Home Page

Viewing this page requires a browser capable of displaying frames.

oldtpfun-dotnet-memo.blogspot.com oldtpfun-dotnet-memo.blogspot.com

どっとネット・プリズム怪

Unit DirZipImp; namespace ConsoleApplication1; interface type ConsoleApp = class public class method Main(args: array of String); end; implementation class method ConsoleApp.Main(args: array of String); begin / add your own code here Console.WriteLine('ならやめれば、うそよ'); Console.ReadLine(); end; end. Namespace ConsoleApplication2; interface uses System.Reflection; type ConsoleApp = class public class method Main(args: array of String); end; implementation class method ConsoleApp.Main(args: array of St...Metho...

oldtpt1.weebly.com oldtpt1.weebly.com

The Pilgriming Trinh - Blog of The Pilgriming Trinh

Experiences and musings are chronicled thus. I have a lot of goals for 2015. Putting out information about my food and health journey and the food industry; helping Wade Mccullough. And others realize their dreams of Food Karma. Helping Visions of Infinity. Paused for the Moment. Montréal and Chelsea, Québec, Canada. I am finally writing about my time spent in Canada! Blessed Man # 6. I haven't written about Blessed Men # 1 through 5 yet, so this most recent one will serve as the first blog entry talking...

oldtq-crew.skyrock.com oldtq-crew.skyrock.com

OLDTQ-Crew's blog - Blog de OLDTQ-Crew - Skyrock.com

19/12/2009 at 4:12 AM. 19/12/2009 at 10:06 AM. Subscribe to my blog! Détails : Nokia 6300. Don't forget that insults, racism, etc. are forbidden by Skyrock's 'General Terms of Use' and that you can be identified by your IP address (66.160.134.62) if someone makes a complaint. Please enter the sequence of characters in the field below. Posted on Saturday, 19 December 2009 at 10:08 AM. Please enter the sequence of characters in the field below. Posted on Saturday, 19 December 2009 at 10:09 AM.

oldtrabucohighlands.com oldtrabucohighlands.com

OLD TRABUCO HIGHLANDS HOMEOWNERS Community Association

Sign-up for Auto Debit. Change of Address Form. I want to receive updates via e-mail. What, Where, When! The Board Meetings are held on the 3rd Thursdays of each month at 5:00pm at Professional Community Management, Inc. (PCM). The next Board meeting is August 20, 2015. 0'], ['#8FB7E7'])" 20. Scroll over date for more info. Important Information for Our Residents. Check Here for the Latest Events. Important Notices and More.

oldtracelaneestate.com oldtracelaneestate.com

Breathtaking Los Altos Hills Estate on 3.4 Manicured Acres - 27040 Old Trace Lane, Los Altos Hills, California 94022 (1402704)

Your browser does not support frames. We recommend upgrading your browser. To view the Virtual Tour.

oldtraceroad.com oldtraceroad.com

Old Trace Road Productions :: About

The company is based in New York City.