- VB6 で、Jpeg ファイルを作成するサンプルです。少し手直しすれば Excel VBA などでも使えるはず。
- 初版は VB初心者友の会 の、今は無き "テーマ掲示板2" に投稿したサンプルです。(2004/10/01)
- 同じものを私の blog にも掲載していたのですが、yaplog! が 2020/01/31 にサービス終了を迎えて置き場が無くなっていたので、今回、GitHub Gist に再掲載してみました。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Public Class Form1 | |
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click | |
ClipboardSetHyperLink(New Uri("http://bbs.wankuma.com/"), "C# と VB.NET の質問掲示板") | |
End Sub | |
Private Sub ClipboardSetHyperLink(url As Uri, text As String, Optional style As String = Nothing) | |
Dim link = <a href=<%= url.ToString() %> style=<%= style %>><%= text %></a> | |
Dim htmlLink = link.ToString() | |
Dim contentsLength = New System.Text.UTF8Encoding(False).GetByteCount(htmlLink) |
certmgr.msc の「個人」にある証明書を列挙するには X509Certificate2Collection クラス を使う。
さらにそこから、個々の証明書の『目的』を得る実験的サンプル。
「クライアント認証」用の証明書を列挙するため、 X509KeyUsageExtension クラス を得るようにする。
Certificate Extensions は、X509Certificate2 オブジェクトに対して、 cert.Extensions[Oid]
で得られる。
標準目的となる "Key Usage" の Oid は "2.5.29.15" で、
"Extended Key Usage" (EKU) の Oid は "2.5.29.37"。
- 改元レジストリ:HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Nls\Calendars\Japanese\Eras
平成改元は 1989/01/08 (平成元年1月8日)で、
その前日は 1989/01/07 (昭和64年1月7日)
旧暦の 1989/01/07 は昭和63年11月30日で、
旧暦の 1989/02/05 は平成元年1月1日。
では、1989/07/08~1989/12/05 (旧暦では 12月1日~12月29日)は、
旧暦では昭和63年なのか、それとも平成0年なのか?
分類:[C#]
c#をやって見ようかと思いとりあえず インターネット上にあるソースコード をcsc.exeでコンパイルしたのですが、「エントリポイントにMainメソッドが含まれていない」と出ます
投げやりですがまず動作させてみたいのでどこに
何を書けば良いのか教えてください。
パソコン WindowsXP
言語 c#2.0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@CD /D %~dp0 | |
@SET CSC=%WINDIR%\Microsoft.NET\Framework\v2.0.50727\csc.exe | |
@REM --- .NET Fraemwork 2.0 --- | |
%CSC% /t:winexe /out:FormTimer.exe /m:Sample.FormTimer *.cs | |
REM --- .NET Compact Fraemwork 2.0 --- | |
REM IF "%PROCESSOR_ARCHITECTURE%" EQU "x86" ( | |
REM SET FAP="%ProgramFiles%\Microsoft.NET\SDK\CompactFramework\v2.0\WindowsCE" | |
REM ) ELSE ( |
- No101896: Edgeで開かれているタブを指定の条件で閉じる
at 2023/05/11(Thu) 17:10:21
by 新米SE
- (.NET Managed ではなく) COM 版の UIAutomationClient を用いたサンプルです。
- error CS1752 が発生する場合は、ソリューション エクスプローラーで [参照]-[UIAutomationClient] を選択し、プロパティ一覧の中から 相互運用型の埋め込み を False にしてコンパイルしてください。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// this code for .NET 6 | |
using System; | |
using System.Runtime.InteropServices; | |
using System.Runtime.InteropServices.ComTypes; | |
if (OperatingSystem.IsWindows()) | |
{ | |
// VS2022=17.0, VS2019=16.0, VS2017=15.0, VS2015=14.0, VS2013=12.0, VS2012=11.0, VS2010=10.0, VS2008=9.0, VS2005=8.0, VS2003=7.1, VS2002=7 | |
foreach (var v in new []{ "", ".17.0", ".16.0", ".15.0", ".14.0", ".12.0", "11.0", ".10.0", ".9.0"}) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Diagnostics; | |
using System.Runtime.InteropServices; | |
using System.Runtime.InteropServices.ComTypes; | |
using Word = Microsoft.Office.Interop.Word; | |
using Excel = Microsoft.Office.Interop.Excel; | |
using PowerPoint = Microsoft.Office.Interop.PowerPoint; | |
if (!OperatingSystem.IsWindows()) { throw new PlatformNotSupportedException(); } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Strict On | |
Imports System.ComponentModel | |
Imports System.Runtime.InteropServices | |
Imports System.Windows.Forms | |
'<DefaultEvent(NameOf(TreeViewEx.Scroll))> | |
<DefaultEvent("Scroll")> | |
Public Class TreeViewEx | |
Inherits TreeView |
NewerOlder