help
「help」の意味
「help」は、英語の動詞であり、主に「助ける」「援助する」「支援する」といった意味がある。また、名詞としても使用され、「助け」「援助」「支援」などの意味を持つ。さらに、人や物に対して、その機能や働きを助ける役割を果たすことを示すこともある。例えば、家事を手伝う人を「家事の助け」と表現することができる。「help」の発音・読み方
「help」の発音は、国際音声記号(IPA)で /hɛlp/ と表記される。IPAのカタカナ読みでは「ヘルプ」となる。日本人が発音するカタカナ英語では「ヘルプ」と読むことが一般的である。「help」の語源
「help」の語源は、古英語の「helpan」であり、その意味は「助ける」「援助する」である。さらに遡ると、ゲルマン語族の「*helpaną」に由来し、インド・ヨーロッパ語族の「*ḱelbʰ-」と関連があるとされる。「help」の類語
「help」には、いくつかの類語が存在する。例えば、「assist」は、物理的・精神的な援助や支援を行うことを意味し、「aid」は、特に緊急時や困難な状況での援助を表す。また、「support」は、物事を支えることや、他者を助けることを示す。「help」に関連する用語・表現
「help」に関連する用語や表現には、「self-help」や「helpful」などがある。「self-help」は、自分自身で問題を解決し、自己改善を図ることを意味し、「helpful」は、助けになることや有益であることを示す形容詞である。「help」の例文
1. Can you help me?(手伝ってもらえますか?)2. I need your help.(あなたの助けが必要です。)
3. She helped him with his homework.(彼女は彼の宿題を手伝った。)
4. The government is helping the victims of the disaster.(政府は災害の被害者を支援している。)
5. This book is a great help for learning English.(この本は英語学習の大きな助けとなる。)
6. He is always willing to help others.(彼はいつも他人を助ける意志がある。)
7. The new software will help improve productivity.(新しいソフトウェアは生産性向上に役立つだろう。)
8. She offered her help to the elderly neighbor.(彼女は高齢の隣人に援助を申し出た。)
9. The organization helps people in need.(その組織は困っている人々を助ける。)
10. Your advice was a big help.(あなたのアドバイスは大変役立ちました。)
ヘルプ【help】
Help クラス
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)
構文
解説
Help クラスの新しいインスタンスは作成できません。アプリケーションに対してヘルプを提供するには、静的な ShowHelp メソッドおよび ShowHelpIndex メソッドを呼び出します。
Help を使用すると、コンパイル済みヘルプ ファイル (.chm) または HTML ヘルプ形式の HTML ファイルを表示できます。コンパイル済みヘルプ ファイルでは、目次、索引、検索、ページ内のキーワードのリンクなどの各機能が利用できます。ショートカットは、コンパイル済みヘルプ ファイルだけで機能します。
HTML Help Workshop で HTML ヘルプ 1.x ファイルを生成できます。HTML ヘルプの詳細については、http://msdn.microsoft.com で「HTML Help Workshop」などの HTML ヘルプに関するトピックを参照してください。
mspaint.chm ヘルプ ファイルと対話するための 3 つのボタンが配置されたフォームを表示するコード例を次に示します。[Show Help Index] ボタンをクリックすると、このヘルプ ファイルの [Index] タブが表示されます。[Show Help] ボタンをクリックすると、[Help Navigator] リスト内で選択されている値に基づいて、ヘルプ ファイルの内容が表示されます。[Show Keyword] ボタンをクリックすると、[Keyword] ボックスで指定されているキーワードに基づいて、ヘルプ ファイルの内容が表示されます。
たとえば、インデックス値を使って Ovals ヘルプ ページを表示するには、[Help Navigator] ドロップダウン リストで HelpNavigator.KeywordIndex 値を選択し、[Parameter] ボックスに「ovals」と入力した後、[Show Help] ボタンをクリックします。"ブラシで描くには" ヘルプ トピックをキーワードを指定して表示するには、[Keyword] ボックスに「mspaint.chm::/paint_brush.htm」と入力し、[Show Keyword] ボタンをクリックします。
ShowHelp メソッドを使用してさまざまなヘルプ タブとヘルプ トピックを表示し、ShowHelpIndex メソッドを使用してヘルプの索引を表示する例を次に示します。
Imports System Imports System.Drawing Imports System.ComponentModel Imports System.Windows.Forms Public Class Form1 Inherits System.Windows.Forms.Form Private helpfile As String = "mspaint.chm" Private WithEvents showIndex As System.Windows.Forms.Button Private WithEvents showHelp As System.Windows.Forms.Button Private WithEvents label1 As System.Windows.Forms.Label Private WithEvents navigatorCombo As System.Windows.Forms.ComboBox Private WithEvents showKeyword As System.Windows.Forms.Button Private WithEvents keyword As System.Windows.Forms.TextBox Private WithEvents label2 As System.Windows.Forms.Label Private WithEvents label3 As System.Windows.Forms.Label Private WithEvents parameterTextBox As System.Windows.Forms.TextBox <STAThread()> _ Shared Sub Main() Application.Run(New Form1) End Sub 'Main Public Sub New() Me.showIndex = New System.Windows.Forms.Button Me.showHelp = New System.Windows.Forms.Button Me.navigatorCombo = New System.Windows.Forms.ComboBox Me.label1 = New System.Windows.Forms.Label Me.showKeyword = New System.Windows.Forms.Button Me.keyword = New System.Windows.Forms.TextBox Me.label2 = New System.Windows.Forms.Label Me.label3 = New System.Windows.Forms.Label Me.parameterTextBox = New System.Windows.Forms.TextBox ' Help Navigator Label Me.label1.Location = New System.Drawing.Point(112, 64) Me.label1.Size = New System.Drawing.Size(168, 16) Me.label1.Text = "Help Navigator:" ' Keyword Label Me.label2.Location = New System.Drawing.Point(120, 184) Me.label2.Size = New System.Drawing.Size(100, 16) Me.label2.Text = "Keyword:" ' Parameter Label Me.label3.Location = New System.Drawing.Point(112, 120) Me.label3.Size = New System.Drawing.Size(168, 16) Me.label3.Text = "Parameter:" ' Show Index Button Me.showIndex.Location = New System.Drawing.Point(16, 16) Me.showIndex.Size = New System.Drawing.Size(264, 32) Me.showIndex.TabIndex = 0 Me.showIndex.Text = "Show Help Index" ' Show Help Button Me.showHelp.Location = New System.Drawing.Point(16, 80) Me.showHelp.Size = New System.Drawing.Size(80, 80) Me.showHelp.TabIndex = 1 Me.showHelp.Text = "Show Help" ' Show Keyword Button Me.showKeyword.Location = New System.Drawing.Point(16, 192) Me.showKeyword.Size = New System.Drawing.Size(88, 32) Me.showKeyword.TabIndex = 4 Me.showKeyword.Text = "Show Keyword" ' Help Navigator Combo ' Me.navigatorCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.navigatorCombo.Location = New System.Drawing.Point(112, 80) Me.navigatorCombo.Size = New System.Drawing.Size(168, 21) Me.navigatorCombo.TabIndex = 2 ' Keyword TextBox Me.keyword.Location = New System.Drawing.Point(120, 200) Me.keyword.Size = New System.Drawing.Size(160, 20) Me.keyword.TabIndex = 5 Me.keyword.Text = "" ' ' Parameter TextBox ' Me.parameterTextBox.Location = New System.Drawing.Point(112, 136) Me.parameterTextBox.Size = New System.Drawing.Size(168, 20) Me.parameterTextBox.TabIndex = 8 Me.parameterTextBox.Text = "" ' Set up how the form should be displayed and add the controls to the form. Me.ClientSize = New System.Drawing.Size(292, 266) Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.parameterTextBox, _ Me.label3, Me.label2, Me.keyword, Me.showKeyword, _ Me.label1, Me.navigatorCombo, Me.showHelp, Me.showIndex}) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog Me.Text = "Help App" ' Load the various values of the HelpNavigator enumeration ' into the combo box. Dim converter As TypeConverter converter = TypeDescriptor.GetConverter(GetType(HelpNavigator)) Dim value As Object For Each value In converter.GetStandardValues() navigatorCombo.Items.Add(value) Next value End Sub 'New Private Sub showIndex_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles showIndex.Click ' Display the index for the Help file. Help.ShowHelpIndex(Me, helpfile) End Sub 'showIndex_Click Private Sub showHelp_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles showHelp.Click ' Display Help using the Help navigator enumeration ' that is selected in the combo box. Some enumeration ' values make use of an extra parameter, which can ' be passed in through the Parameter text box. Dim navigator As HelpNavigator = HelpNavigator.TableOfContents If Not (navigatorCombo.SelectedItem Is Nothing) Then navigator = CType(navigatorCombo.SelectedItem, HelpNavigator) End If Help.ShowHelp(Me, helpfile, navigator, parameterTextBox.Text) End Sub 'showHelp_Click Private Sub showKeyword_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles showKeyword.Click ' Display Help using the provided keyword. Help.ShowHelp(Me, helpfile, keyword.Text) End Sub 'showKeyword_Click End Class 'Form1
using System; using System.Drawing; using System.ComponentModel; using System.Windows.Forms; public class Form1 : System.Windows.Forms.Form { private const string helpfile = "mspaint.chm"; private System.Windows.Forms.Button showIndex; private System.Windows.Forms.Button showHelp; private System.Windows.Forms.Label label1; private System.Windows.Forms.ComboBox navigatorCombo; private System.Windows.Forms.Button showKeyword; private System.Windows.Forms.TextBox keyword; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label3; private System.Windows.Forms.TextBox parameterTextBox; [STAThread] static void Main() { Application.Run(new Form1()); } public Form1() { this.showIndex = new System.Windows.Forms.Button(); this.showHelp = new System.Windows.Forms.Button(); this.navigatorCombo = new System.Windows.Forms.ComboBox(); this.label1 = new System.Windows.Forms.Label(); this.showKeyword = new System.Windows.Forms.Button(); this.keyword = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.parameterTextBox = new System.Windows.Forms.TextBox(); // Help Navigator Label this.label1.Location = new System.Drawing.Point(112, 64); this.label1.Size = new System.Drawing.Size(168, 16); this.label1.Text = "Help Navigator:"; // Keyword Label this.label2.Location = new System.Drawing.Point(120, 184); this.label2.Size = new System.Drawing.Size(100, 16); this.label2.Text = "Keyword:"; // Parameter Label this.label3.Location = new System.Drawing.Point(112, 120); this.label3.Size = new System.Drawing.Size(168, 16); this.label3.Text = "Parameter:"; // Show Index Button this.showIndex.Location = new System.Drawing.Point(16, 16); this.showIndex.Size = new System.Drawing.Size(264, 32); this.showIndex.TabIndex = 0; this.showIndex.Text = "Show Help Index"; this.showIndex.Click += new System.EventHandler(this.showIndex_Click); // Show Help Button this.showHelp.Location = new System.Drawing.Point(16, 80); this.showHelp.Size = new System.Drawing.Size(80, 80); this.showHelp.TabIndex = 1; this.showHelp.Text = "Show Help"; this.showHelp.Click += new System.EventHandler(this.showHelp_Click); // Show Keyword Button this.showKeyword.Location = new System.Drawing.Point(16, 192); this.showKeyword.Size = new System.Drawing.Size(88, 32); this.showKeyword.TabIndex = 4; this.showKeyword.Text = "Show Keyword"; this.showKeyword.Click += new System.EventHandler(this.showKeyword_Click); // Help Navigator ComboBox this.navigatorCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.navigatorCombo.Location = new System.Drawing.Point(112, 80); this.navigatorCombo.Size = new System.Drawing.Size(168, 21); this.navigatorCombo.TabIndex = 2; // Keyword TextBox this.keyword.Location = new System.Drawing.Point(120, 200); this.keyword.Size = new System.Drawing.Size(160, 20); this.keyword.TabIndex = 5; this.keyword.Text = ""; // Parameter TextBox this.parameterTextBox.Location = new System.Drawing.Point(112, 136); this.parameterTextBox.Size = new System.Drawing.Size(168, 20); this.parameterTextBox.TabIndex = 8; this.parameterTextBox.Text = ""; // Set up how the form should be displayed and add the controls to the form. this.ClientSize = new System.Drawing.Size(292, 266); this.Controls.AddRange(new System.Windows.Forms.Control[] { this.parameterTextBox, this.label3, this.label2, this.keyword , this.showKeyword, this.label1 , this.navigatorCombo, this.showHelp , this.showIndex}); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Text = "Help App"; // Load the various values of the HelpNavigator enumeration // into the combo box. TypeConverter converter; converter = TypeDescriptor.GetConverter(typeof(HelpNavigator)); foreach(object value in converter.GetStandardValues()) { navigatorCombo.Items.Add(value); } } private void showIndex_Click(object sender, System.EventArgs e) { // Display the index for the help file. Help.ShowHelpIndex(this, helpfile); } private void showHelp_Click(object sender, System.EventArgs e) { // Display Help using the Help navigator enumeration // that is selected in the combo box. Some enumeration // values make use of an extra parameter, which can // be passed in through the Parameter text box. HelpNavigator navigator = HelpNavigator.TableOfContents; if (navigatorCombo.SelectedItem != null) { navigator = (HelpNavigator)navigatorCombo.SelectedItem; } Help.ShowHelp(this, helpfile, navigator, parameterTextBox.Text); } private void showKeyword_Click(object sender, System.EventArgs e) { // Display help using the provided keyword. Help.ShowHelp(this, helpfile, keyword.Text); } }
#using <System.dll> #using <System.Drawing.dll> #using <System.Windows.Forms.dll> using namespace System; using namespace System::Drawing; using namespace System::ComponentModel; using namespace System::Windows::Forms; public ref class Form1: public System::Windows::Forms::Form { private: String^ helpfile; System::Windows::Forms::Button^ showIndex; System::Windows::Forms::Button^ showHelp; System::Windows::Forms::Label ^ label1; System::Windows::Forms::ComboBox^ navigatorCombo; System::Windows::Forms::Button^ showKeyword; System::Windows::Forms::TextBox^ keyword; System::Windows::Forms::Label ^ label2; System::Windows::Forms::Label ^ label3; System::Windows::Forms::TextBox^ parameterTextBox; public: Form1() { helpfile = "mspaint.chm"; this->showIndex = gcnew System::Windows::Forms::Button; this->showHelp = gcnew System::Windows::Forms::Button; this->navigatorCombo = gcnew System::Windows::Forms::ComboBox; this->label1 = gcnew System::Windows::Forms::Label; this->showKeyword = gcnew System::Windows::Forms::Button; this->keyword = gcnew System::Windows::Forms::TextBox; this->label2 = gcnew System::Windows::Forms::Label; this->label3 = gcnew System::Windows::Forms::Label; this->parameterTextBox = gcnew System::Windows::Forms::TextBox; // Help Navigator Label this->label1->Location = System::Drawing::Point( 112, 64 ); this->label1->Size = System::Drawing::Size( 168, 16 ); this->label1->Text = "Help Navigator:"; // Keyword Label this->label2->Location = System::Drawing::Point( 120, 184 ); this->label2->Size = System::Drawing::Size( 100, 16 ); this->label2->Text = "Keyword:"; // Parameter Label this->label3->Location = System::Drawing::Point( 112, 120 ); this->label3->Size = System::Drawing::Size( 168, 16 ); this->label3->Text = "Parameter:"; // Show Index Button this->showIndex->Location = System::Drawing::Point( 16, 16 ); this->showIndex->Size = System::Drawing::Size( 264, 32 ); this->showIndex->TabIndex = 0; this->showIndex->Text = "Show Help Index"; this->showIndex->Click += gcnew System::EventHandler( this, &Form1::showIndex_Click ); // Show Help Button this->showHelp->Location = System::Drawing::Point( 16, 80 ); this->showHelp->Size = System::Drawing::Size( 80, 80 ); this->showHelp->TabIndex = 1; this->showHelp->Text = "Show Help"; this->showHelp->Click += gcnew System::EventHandler( this, &Form1::showHelp_Click ); // Show Keyword Button this->showKeyword->Location = System::Drawing::Point( 16, 192 ); this->showKeyword->Size = System::Drawing::Size( 88, 32 ); this->showKeyword->TabIndex = 4; this->showKeyword->Text = "Show Keyword"; this->showKeyword->Click += gcnew System::EventHandler( this, &Form1::showKeyword_Click ); // Help Navigator ComboBox this->navigatorCombo->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList; this->navigatorCombo->Location = System::Drawing::Point( 112, 80 ); this->navigatorCombo->Size = System::Drawing::Size( 168, 21 ); this->navigatorCombo->TabIndex = 2; // Keyword TextBox this->keyword->Location = System::Drawing::Point( 120, 200 ); this->keyword->Size = System::Drawing::Size( 160, 20 ); this->keyword->TabIndex = 5; this->keyword->Text = ""; // Parameter TextBox this->parameterTextBox->Location = System::Drawing::Point( 112, 136 ); this->parameterTextBox->Size = System::Drawing::Size( 168, 20 ); this->parameterTextBox->TabIndex = 8; this->parameterTextBox->Text = ""; // Set up how the form should be displayed and add the controls to the form. this->ClientSize = System::Drawing::Size( 292, 266 ); array<System::Windows::Forms::Control^>^formControls = {this->parameterTextBox ,this->label3,this->label2,this->keyword ,this->showKeyword,this->label1,this->navigatorCombo,this->showHelp,this->showIndex}; this->Controls->AddRange( formControls ); this->FormBorderStyle = System::Windows::Forms::FormBorderStyle::FixedDialog; this->Text = "Help App"; // Load the various values of the HelpNavigator enumeration // into the combo box. TypeConverter^ converter; converter = TypeDescriptor::GetConverter( HelpNavigator::typeid ); System::Collections::IEnumerator^ myEnum = converter->GetStandardValues()->GetEnumerator(); while ( myEnum->MoveNext() ) { Object^ value = safe_cast<Object^>(myEnum->Current); navigatorCombo->Items->Add( value ); } } private: void showIndex_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ ) { // Display the index for the help file. Help::ShowHelpIndex( this, helpfile ); } void showHelp_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ ) { // Display Help using the Help navigator enumeration // that is selected in the combo box. Some enumeration // values make use of an extra parameter, which can // be passed in through the Parameter text box. HelpNavigator navigator = HelpNavigator::TableOfContents; if ( navigatorCombo->SelectedItem != nullptr ) { navigator = *safe_cast<HelpNavigator^>(navigatorCombo->SelectedItem); } Help::ShowHelp( this, helpfile, navigator, parameterTextBox->Text ); } void showKeyword_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ ) { // Display help using the provided keyword. Help::ShowHelp( this, helpfile, keyword->Text ); } }; [STAThread] int main() { Application::Run( gcnew Form1 ); }
import System.*; import System.Drawing.*; import System.ComponentModel.*; import System.Windows.Forms.*; import System.Collection.*; import System.Collections.*; public class Form1 extends System.Windows.Forms.Form { private String helpfile = "mspaint.chm"; private System.Windows.Forms.Button showIndex; private System.Windows.Forms.Button showHelp; private System.Windows.Forms.Label label1; private System.Windows.Forms.ComboBox navigatorCombo; private System.Windows.Forms.Button showKeyword; private System.Windows.Forms.TextBox keyword; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label3; private System.Windows.Forms.TextBox parameterTextBox; /** @attribute STAThread() */ public static void main(String[] args) { Application.Run(new Form1()); } //main public Form1() { this.showIndex = new System.Windows.Forms.Button(); this.showHelp = new System.Windows.Forms.Button(); this.navigatorCombo = new System.Windows.Forms.ComboBox(); this.label1 = new System.Windows.Forms.Label(); this.showKeyword = new System.Windows.Forms.Button(); this.keyword = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.parameterTextBox = new System.Windows.Forms.TextBox(); // Help Navigator Label this.label1.set_Location(new System.Drawing.Point(112, 64)); this.label1.set_Size(new System.Drawing.Size(168, 16)); this.label1.set_Text("Help Navigator:"); // Keyword Label this.label2.set_Location(new System.Drawing.Point(120, 184)); this.label2.set_Size(new System.Drawing.Size(100, 16)); this.label2.set_Text("Keyword:"); // Parameter Label this.label3.set_Location(new System.Drawing.Point(112, 120)); this.label3.set_Size(new System.Drawing.Size(168, 16)); this.label3.set_Text("Parameter:"); // Show Index Button this.showIndex.set_Location(new System.Drawing.Point(16, 16)); this.showIndex.set_Size(new System.Drawing.Size(264, 32)); this.showIndex.set_TabIndex(0); this.showIndex.set_Text("Show Help Index"); this.showIndex.add_Click(new System.EventHandler( this.showIndex_Click)); // Show Help Button this.showHelp.set_Location(new System.Drawing.Point(16, 80)); this.showHelp.set_Size(new System.Drawing.Size(80, 80)); this.showHelp.set_TabIndex(1); this.showHelp.set_Text("Show Help"); this.showHelp.add_Click(new System.EventHandler(this.showHelp_Click)); // Show Keyword Button this.showKeyword.set_Location(new System.Drawing.Point(16, 192)); this.showKeyword.set_Size(new System.Drawing.Size(88, 32)); this.showKeyword.set_TabIndex(4); this.showKeyword.set_Text("Show Keyword"); this.showKeyword.add_Click(new System.EventHandler( this.showKeyword_Click)); // Help Navigator ComboBox this.navigatorCombo.set_DropDownStyle( System.Windows.Forms.ComboBoxStyle.DropDownList); this.navigatorCombo.set_Location(new System.Drawing.Point(112, 80)); this.navigatorCombo.set_Size(new System.Drawing.Size(168, 21)); this.navigatorCombo.set_TabIndex(2); // Keyword TextBox this.keyword.set_Location(new System.Drawing.Point(120, 200)); this.keyword.set_Size(new System.Drawing.Size(160, 20)); this.keyword.set_TabIndex(5); this.keyword.set_Text(""); // Parameter TextBox this.parameterTextBox.set_Location(new System.Drawing.Point(112, 136)); this.parameterTextBox.set_Size(new System.Drawing.Size(168, 20)); this.parameterTextBox.set_TabIndex(8); this.parameterTextBox.set_Text(""); // Set up how the form should be displayed and add the controls // to the form. this.set_ClientSize(new System.Drawing.Size(292, 266)); this.get_Controls().AddRange(new System.Windows.Forms.Control[] { this.parameterTextBox, this.label3, this.label2, this.keyword, this.showKeyword, this.label1, this.navigatorCombo, this.showHelp, this.showIndex }); this.set_FormBorderStyle( System.Windows.Forms.FormBorderStyle.FixedDialog); this.set_Text("Help App"); // Load the various values of the HelpNavigator enumeration // into the combo box. TypeConverter converter; converter = TypeDescriptor.GetConverter(HelpNavigator.class.ToType()); IEnumerator myEnum = converter.GetStandardValues().GetEnumerator(); while (myEnum.MoveNext()) { Object value = myEnum.get_Current(); navigatorCombo.get_Items().Add(value); } } //Form1 private void showIndex_Click(Object sender, System.EventArgs e) { // Display the index for the help file. Help.ShowHelpIndex(this, helpfile); } //showIndex_Click private void showHelp_Click(Object sender, System.EventArgs e) { // Display Help using the Help navigator enumeration // that is selected in the combo box. Some enumeration // values make use of an extra parameter, which can // be passed in through the Parameter text box. HelpNavigator navigator = HelpNavigator.TableOfContents; if (navigatorCombo.get_SelectedItem() != null) { navigator = (HelpNavigator) navigatorCombo.get_SelectedItem(); } Help.ShowHelp(this, helpfile, navigator, parameterTextBox.get_Text()); } //showHelp_Click private void showKeyword_Click(Object sender, System.EventArgs e) { // Display help using the provided keyword. Help.ShowHelp(this, helpfile, keyword.get_Text()); } //showKeyword_Click } //Form1
System.Windows.Forms.Help
プラットフォーム
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。
参照
Help メソッド
パブリック メソッド
名前 | 説明 | |
---|---|---|
Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 ( Object から継承されます。) | |
GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 ( Object から継承されます。) | |
GetType | 現在のインスタンスの Type を取得します。 ( Object から継承されます。) | |
ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 ( Object から継承されます。) | |
ShowHelp | オーバーロードされます。 ヘルプ ファイルの内容を表示します。 | |
ShowHelpIndex | 指定したヘルプ ファイルの索引を表示します。 | |
ShowPopup | ヘルプのポップアップ ウィンドウを表示します。 | |
ToString | 現在の Object を表す String を返します。 ( Object から継承されます。) |
名前 | 説明 | |
---|---|---|
Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 ( Object から継承されます。) | |
MemberwiseClone | 現在の Object の簡易コピーを作成します。 ( Object から継承されます。) |
Help メンバ
パブリック メソッド
名前 | 説明 | |
---|---|---|
Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 (Object から継承されます。) | |
GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 (Object から継承されます。) | |
GetType | 現在のインスタンスの Type を取得します。 (Object から継承されます。) | |
ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 (Object から継承されます。) | |
ShowHelp | オーバーロードされます。 ヘルプ ファイルの内容を表示します。 | |
ShowHelpIndex | 指定したヘルプ ファイルの索引を表示します。 | |
ShowPopup | ヘルプのポップアップ ウィンドウを表示します。 | |
ToString | 現在の Object を表す String を返します。 (Object から継承されます。) |
名前 | 説明 | |
---|---|---|
Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 (Object から継承されます。) | |
MemberwiseClone | 現在の Object の簡易コピーを作成します。 (Object から継承されます。) |
ヘルプ
ヘルプ(help)は、英語で助ける・援助・助力の意味
- 音楽
- ビートルズの作品(すべて、原題は「HELP!」)
- ヘルプ! (ビートルズの曲) - ビートルズのオリジナル・シングル
- ヘルプ! (ビートルズのアルバム) - ビートルズのイギリス盤公式オリジナル・アルバム
- ヘルプ!4人はアイドル - ビートルズの主演映画
- HELP (本田美奈子.の曲) - 本田美奈子.のシングル
- HELP!! (石動美緒の曲) - 竹達彩奈が「石動美緒」の役名で歌ったテレビアニメ『えむえむっ!』主題歌のキャラクターソング。
- HELP (flumpoolの曲) - flumpoolのシングル
- HELP (愛美の曲) - 愛美のシングル
- 映像・漫画
- ヘルプ! (テレビドラマ) - 1995年にフジテレビ系列「金8ドラマ」枠で放映された日本のテレビドラマ
- HELP!! (漫画) - 藤原規代の漫画
- ヘルプ 心がつなぐストーリー - キャスリン・ストケットによる2009年のアメリカ合衆国の小説
- ヘルプ 〜心がつなぐストーリー〜 - 上記作品を原作とした、テイト・テイラー監督・脚本による2011年のアメリカ映画
- その他
- ヘルプ!!!恋が丘学園おたすけ部 - インターネット上でプレイできる日本のブラウザゲーム
- オンラインヘルプ - ソフトウェアを使いながらコンピュータの画面で参照することのできる説明書
- 保健・教育・労働・年金委員会
関連項目
ヘルプ! (ビートルズのアルバム)
『ヘルプ!』 | |||||
---|---|---|---|---|---|
ビートルズ の スタジオ・アルバム | |||||
リリース | |||||
録音 |
| ||||
ジャンル | |||||
時間 | |||||
レーベル | |||||
プロデュース | ジョージ・マーティン | ||||
専門評論家によるレビュー | |||||
チャート最高順位 | |||||
後述を参照 | |||||
ゴールドディスク | |||||
後述を参照 | |||||
ビートルズ U.K. 年表 | |||||
| |||||
ビートルズ 日本 年表 | |||||
| |||||
『ヘルプ!』収録のシングル | |||||
『ヘルプ!』(Help!)は、ビートルズの5作目のイギリス盤公式オリジナル・アルバムであり、また2作目となる映画『ヘルプ!4人はアイドル』のサウンドトラック盤でもある。イギリスにおいて1965年8月6日に発売された。旧邦題は「4人はアイドル」(よにんはアイドル)。
日本の『ミュージック・マンスリー』誌に掲載されていた洋楽チャートでは、2か月連続で2位を獲得しながら、『サウンド・オブ・ミュージック』のサウンドトラック盤とザ・ベンチャーズの来日記念盤に阻まれ1位を逃した[5]。
『ローリング・ストーン誌が選ぶオールタイム・ベストアルバム500』に於いて、266位にランクイン[6]。
概要
A面にはビートルズ主演の映画『ヘルプ!4人はアイドル』で使用された楽曲、B面には「イエスタデイ」やカバー曲を含む新曲が収録されている[7]。
プロデューサーのジョージ・マーティンはビートルズのデビュー録音(「ラヴ・ミー・ドゥ」、「P.S.アイ・ラヴ・ユー」)にあたって外部ミュージシャンのアンディ・ホワイトをドラムス、パーカッション役に起用したが、以降はマーティンが手を貸すことはあってもビートルズのレコーディングに際し外部ミュージシャンが参加することはなかった。本作の「悲しみはぶっとばせ」及び「イエスタデイ」の録音において、デビュー以来外部ミュージシャンを起用したことは注目される。本作には、ジョン・レノン作の「悲しみはぶっとばせ」などボブ・ディランの影響が見られる楽曲のほか、ポール・マッカートニー作の「夢の人」に見られるカントリー風味の楽曲が収録されている[8]。
CD化
本作は1987年にCD化されたが、全曲ジョージ・マーティンによってリミックスされている。ただし、このリミックスはジョージ・マーティンがラバー・ソウルも含めて「バラバラに戻してから、またほとんど同じように整理し直した」と述べているように、オリジナルのミックスに非常に忠実に作成されており、積極的な現代化はされず、定位やエフェクト等の処理はほぼオリジナルの通りに再現されている[9]。『ヘルプ!』と『ラバー・ソウル』のリミックスが行われたのは、1987年の最初のCD化の時には、全アルバムが一斉にCD化されたわけではなく、数回に分けてCD化され、『ヘルプ!』、『ラバー・ソウル』、『リボルバー』の3枚が第2弾として発売されたが、当初、『ヘルプ!』と『ラバー・ソウル』はモノラルでのCD発売を予定していたのが、急遽ステレオでの発売に変更された為。
コンピレーション・アルバム『ザ・ビートルズ1962年〜1966年』に収録されている同アルバムの楽曲もリミックスされたものが採用されている。2009年9月9日の最新リマスター(ステレオ盤)も1987年ヴァージョンを採用。CD化される以前のオリジナルミックスは『ザ・ビートルズ MONO BOX』でステレオとモノラル両方がCD化されている。
ジャケット・デザイン
イギリス盤は、パーロフォンとEMIのロゴが左上にある関係上、「HELP!」と「THE BEATLES」のロゴの高さがずれているが、日本盤は「ODEON」のロゴが右端に配置されたことで、「HELP!」と「THE BEATLES」のロゴが横一列に綺麗に並んでいる。また、日本盤は裏ジャケットの写真が全く異なっていて、ゲイトフォールド(両開き)ジャケットになっているのが特徴。
ジャケットはコートが左前合わせになっていることから裏焼きであることがわかるが、メンバーは手旗信号で"NUJV"の文字を現している。左から読むと"NUJV"となり、裏焼きしても"KPUN"となる。このことについてジャケットの撮影をしたロバート・フリーマン[10]は、「最初は手旗信号で"HELP"のポーズを考えていたが、見栄えがよくなかった。そのため我々は即興で、手の位置を変えたより見た目が良いポージングを作った」と話している[11]。
収録曲
- 邦題の表記は、日本公式サイトに準拠[12]。
- 特記を除き、作詞作曲はレノン=マッカートニーによるもの。
# | タイトル | 作詞・作曲 | リード・ボーカル | 時間 |
---|---|---|---|---|
1. | 「ヘルプ!」(Help!) | ジョン・レノン | ||
2. | 「ザ・ナイト・ビフォア」(The Night Before) | ポール・マッカートニー | ||
3. | 「悲しみはぶっとばせ」(You've Got To Hide Your Love Away) | ジョン・レノン | ||
4. | 「アイ・ニード・ユー」(I Need You) | ジョージ・ハリスン | ジョージ・ハリスン | |
5. | 「アナザー・ガール」(Another Girl) | ポール・マッカートニー | ||
6. | 「恋のアドバイス」(You're Going To Lose That Girl) | ジョン・レノン | ||
7. | 「涙の乗車券(ティケット・トゥ・ライド)」(Ticket To Ride) | ジョン・レノン | ||
合計時間: |
# | タイトル | 作詞・作曲 | リード・ボーカル | 時間 |
---|---|---|---|---|
1. | 「アクト・ナチュラリー」(Act Naturally) |
| リンゴ・スター | |
2. | 「イッツ・オンリー・ラヴ」(It's Only Love) | ジョン・レノン | ||
3. | 「ユー・ライク・ミー・トゥ・マッチ」(You Like Me Too Much) | ジョージ・ハリスン | ジョージ・ハリスン | |
4. | 「テル・ミー・ホワット・ユー・シー」(Tell Me What You See) |
| ||
5. | 「夢の人」(I've Just Seen A Face) | ポール・マッカートニー | ||
6. | 「イエスタデイ」(Yesterday) | ポール・マッカートニー | ||
7. | 「ディジー・ミス・リジー」(Dizzy Miss Lizzy) | ラリー・ウィリアムズ | ジョン・レノン | |
合計時間: |
米国キャピトル編集盤 『ヘルプ(四人はアイドル)』
『ヘルプ(四人はアイドル)』 | |||||
---|---|---|---|---|---|
ビートルズ、ケン・ソーン の サウンドトラック | |||||
リリース | |||||
録音 |
| ||||
ジャンル | |||||
時間 | |||||
レーベル | |||||
プロデュース |
| ||||
チャート最高順位 | |||||
後述を参照 | |||||
ゴールドディスク | |||||
後述を参照 | |||||
ビートルズ U.S. 年表 | |||||
| |||||
ビートルズ 日本 年表 | |||||
| |||||
『ヘルプ(四人はアイドル)』収録のシングル | |||||
『ヘルプ(四人はアイドル)』(ヘルプ よにんはアイドル)は、1965年8月にアメリカ合衆国で発売されたビートルズのアメリカでの9作目のアルバムである。米キャピトル・レコードによる編集盤である。
純粋なサウンドトラック盤様に仕上げられた本作は、実際に映画で使用された楽曲のみが収録され、その他に映画で使用されたケン・ソーンの音楽が収められている。これにより、『4人はアイドル』のB面に収録された7曲が本作から外された。これらの楽曲のうち、「ユー・ライク・ミー・トゥ・マッチ」「テル・ミー・ホワット・ユー・シー」「ディジー・ミス・リジー」の3曲は『ビートルズ VI』、「イッツ・オンリー・ラヴ」「夢の人」の2曲は『Rubber Soul (Capitol)』、「アクト・ナチュラリー」「イエスタデイ」の2曲は『イエスタデイ・アンド・トゥデイ』に収録されている。
ケン・ソーンの映画音楽は、ケン・ソーンと彼のオーケストラによる演奏である。
Billboard 200では、9週連続第1位を獲得し[14]、1966年度年間ランキング27位を記録している。
他のアメリカ編集盤と同じく、アメリカ編集のサウンドトラック盤は長らく未CD化だったが、2004年にボックスセットとして発売された『ビートルズ'65 BOX』でモノラルとステレオ両方のヴァージョンが初CD化された。ただしモノラル盤はアナログ盤(米キャピトル:MAS 2386)及びCD(米キャピトル:CDP 0946 3 57716 2 6)の双方ともステレオ・ヴァージョンをモノラルにミックス・ダウンしただけのものである。
アルバム・ジャケットは英国盤とは大幅に異なり、"HELP!"というタイトルを強調したもので、4人の写真はかなり小さくなっている[注釈 1]。
収録曲(米国盤)
特記を除き、作詞作曲はレノン=マッカートニーによるもの。
# | タイトル | 作詞・作曲 | 編曲 | リード・ボーカル | 時間 |
---|---|---|---|---|---|
1. | 「ヘルプ![注釈 2]」(Help!) | ジョン・レノン | |||
2. | 「ザ・ナイト・ビフォア」(The Night Before) | ポール・マッカートニー | |||
3. | 「フロム・ミー・トゥ・ユー・ファンタジー[注釈 3]」(From Me To You Fantasy) | レノン=マッカートニー | ケン・ソーン | インストゥルメンタル | |
4. | 「悲しみはぶっとばせ」(You've Got To Hide Your Love Away) | ジョン・レノン | |||
5. | 「アイ・ニード・ユー」(I Need You) | ジョージ・ハリスン | ジョージ・ハリスン | ||
6. | 「イン・ザ・チロル[注釈 4]」(In The Tyrol) | ケン・ソーン | インストゥルメンタル | ||
合計時間: |
# | タイトル | 作詞・作曲 | 編曲 | リード・ボーカル | 時間 |
---|---|---|---|---|---|
1. | 「アナザー・ガール」(Another Girl) | ポール・マッカートニー | |||
2. | 「アナザー・ハード・デイズ・ナイト[注釈 5]」(Another Hard Day's Night) | ケン・ソーン | インストゥルメンタル | ||
3. | 「涙の乗車券(ティケット・トゥ・ライド)」(Ticket To Ride) | ジョン・レノン | |||
4. | 「ザ・ビター・エンド / ユー・キャント・ドゥ・ザット」(The Bitter End / You Can't Do That) | ケン・ソーン / レノン=マッカートニー | ケン・ソーン | インストゥルメンタル | |
5. | 「恋のアドバイス」(You're Going To Lose That Girl) | ジョン・レノン | |||
6. | 「ザ・チェイス」(The Chase) | ケン・ソーン | インストゥルメンタル | ||
合計時間: |
クレジット
- ビートルズ
-
- ジョン・レノン - リード・ボーカル、ハーモニー & バッキング・ボーカル、リズムギター、アコースティック・ギター、エレクトリックピアノ、オルガン(B-7)、タンバリン(B-4)、スネアドラム(A-4)
- ポール・マッカートニー - リード・ボーカル、ハーモニー & バッキング・ボーカル、ベース、アコースティック・ギター、リードギター、ピアノ、エレクトリックピアノ、ストリングス編曲(B-6)
- ジョージ・ハリスン - ハーモニー & バッキング・ボーカル、リードギター、アコースティック・ギター、リズムギター(A-4)、リード・ボーカル(A-4, B-3)、ギロ(B-4)
- リンゴ・スター - ドラム、パーカッション、クラベス(B-4)、リード・ボーカル(B-1)
- 外部ミュージシャン・スタッフ
-
- ジョージ・マーティン - プロデュース、ピアノ(A-6)、ストリングス編曲(B-6)
- ジョン・スコット - テナー & アルトフルート(A-3)
- 弦楽四重奏(B-6)
チャート成績
週間チャート
チャート (1965年) | 最高位 |
---|---|
オーストラリア (Kent Music Report)[17] | 1 |
ドイツ (Offizielle Top 100)[18] | 1 |
UK アルバムズ (OCC)[19] | 1 |
US Billboard Top LPs[14] | 1 |
チャート (1987年) | 最高位 |
---|---|
日本 (オリコン) | 9 |
オランダ (MegaCharts)[20] | 65 |
UK アルバムズ (OCC)[21] | 61 |
US Billboard Top Compact Disks[22] | 4 |
チャート (2009年) | 最高位 |
---|---|
オーストリア (Ö3 Austria)[23] | 62 |
ベルギー (Ultratop Flanders)[24] | 48 |
ベルギー (Ultratop Wallonia)[25] | 62 |
フィンランド (Suomen virallinen lista)[26] | 26 |
イタリア (FIMI)[27] | 50 |
日本 (オリコン)[28] | 29 |
オランダ (MegaCharts)[20] | 96 |
ニュージーランド (RMNZ)[29] | 35 |
ポルトガル (AFP)[30] | 18 |
スペイン (PROMUSICAE)[31] | 53 |
スウェーデン (Sverigetopplistan)[32] | 30 |
スイス (Schweizer Hitparade)[33] | 53 |
UK アルバムズ (OCC)[34] | 29 |
チャート (2010年) | 最高位 |
---|---|
US Billboard 200[35] | 1 |
月間チャート
チャート (1965年) | 最高位 |
---|---|
日本 (ミュージック・マンスリー洋楽チャート)[36] | 2 |
認定
アメリカでは、1965年末時点で131万4,457枚の売上を記録し、10年後に159万4,032枚の売上を記録した[37]。
国/地域 | 認定 | 認定/売上数 |
---|---|---|
アルゼンチン (CAPIF)[38] | Platinum | 60,000^ |
オーストラリア (ARIA)[39] | Gold | 35,000^ |
イギリス (BPI)[40] | Platinum | 300,000^ |
^ 認定のみに基づく出荷枚数 |
英国レコード産業協会による認定は、1994年以降の売上によるもの[41]。
国/地域 | 認定 | 認定/売上数 |
---|---|---|
カナダ (Music Canada)[42] | 2× Platinum | 200,000^ |
アメリカ合衆国 (RIAA)[43] | 3× Platinum | 3,000,000^ |
^ 認定のみに基づく出荷枚数 |
各国での発売形態
国 | 日付 | レーベル | 発売形態 | カタログ番号 |
---|---|---|---|---|
イギリス | 1965年8月6日 | Parlophone | mono LP | PMC 1255 |
stereo LP | PCS 3071 | |||
アメリカ | 1965年8月13日 | Capitol Records | mono LP | MAS 2386 |
stereo LP | SMAS 2386 | |||
Worldwide reissue | 1987年4月15日 | Apple, Parlophone, EMI | CD | CDP 7 46439 2 |
日本 | 1988年4月29日 | Odeon/東芝EMI | CD | CP32-5325 |
1998年3月11日 | Parlophone/東芝EMI | CD | TOCP 51115 | |
2004年1月21日 | 東芝EMI | Remastered LP | TOJP 60135 | |
2009年9月9日 | Apple, Parlophone / EMIミュージックジャパン | Remastered CD | TOCP-71005 | |
Worldwide reissue | 2006年4月11日 | Apple/Capitol/EMI | CD reissue of U.S. LP | CDP 0946 3 57500 2 7 |
2009年9月9日 | Apple/Capitol/EMI | CD stereo remaster | CDP 0946 3 82415 2 2 |
関連文献
- 『バンドスコア ビートルズ / 4人はアイドル』(シンコーミュージック、第2版 2002年9月14日)ISBN 978-4401361458
脚注
注釈
- ^ なぜか順番も入れ替えられているため、手旗信号がNUJVでなくなっている。
- ^ a b 冒頭に約18秒の「ジェームズ・ボンドのテーマ」風の楽曲が挿入されている。本作に収録の「ヘルプ!」は、このイントロを合わせて1曲とカウントしているため、演奏時間が2分39秒と長くなっている。
- ^ 「フロム・ミー・トゥ・ユー」をオーケストラ用にアレンジしたもの。
- ^ 曲の途中にリヒャルト・ワーグナーの歌劇『ローエングリン』の第3幕への前奏曲の一部が挿入される。
- ^ 「ア・ハード・デイズ・ナイト」、「キャント・バイ・ミー・ラヴ」、「恋する二人」の3曲をメドレーにして、インド音楽風にアレンジしたもの。
出典
- ^ Unterberger, Richie (2002). Turn! Turn! Turn!: The '60s Folk-Rock Revolution. San Francisco: Backbeat Books. p. 272. ISBN 0-87930-703-X
- ^ Spignesi, Stephen J.; Lewis, Michael (2004). Here, There, and Everywhere: The 100 Best Beatles Songs. New York: Black Dog. ISBN 978-1-57912-369-7. "...after the unabashed more-or-less traditional pop rock of A Hard Day's Night and Help!..."
- ^ Erlewine, Stephen Thomas. “Help! - The Beatles | Songs, Reviews, Credits”. AllMusic. All Media Network. 2021年10月2日閲覧。
- ^ McCormick, Neil (2009年9月7日). “The Beatles – Help!, review”. The Daily Telegraph (London) 2021年10月2日閲覧。
- ^ 『日経BPムック 大人のロック!特別編集 ザ・ビートルズ 世界制覇50年』日経BP、2015年、32頁。ISBN 978-4-8222-7834-2。
- ^ “The 500 Greatest Albums of All Time” (英語). Rolling Stone (2020年9月22日). 2021年12月28日閲覧。
- ^ “Most Recorded Song”. Guinness World Records. 2006年9月10日時点のオリジナルよりアーカイブ。2018年11月17日閲覧。
- ^ Unterberger, Richie (2009年). “Review of "I've Just Seen a Face"”. AllMusic. 2019年5月6日閲覧。
- ^ Kozinn, Allan (1987年3月8日). “Interview with George Martin”. The New York Times 2018年11月17日閲覧。
- ^ “ビートルズのアルバムカヴァーで知られる写真家ロバート・フリーマンが死去”. amass (2019年11月9日). 2019年11月9日閲覧。
- ^ Freeman, Robert. The Beatles: A Private View. NY: Barnes & Noble. ISBN 1-59226-176-0
- ^ “Help! [CD EXTRA][CD] - ザ・ビートルズ”. ユニバーサルミュージック. 2020年6月12日閲覧。
- ^ a b Stannard, Neville (24 June 1982). Tobler, John. ed. The Long and Winding Road: A History of The Beatles on Record. London: Virgin Books. p. 141. ISBN 0-907080-46-4
- ^ a b “Billboard 200 Chart”. Billboard (1965年9月11日). 2021年10月2日閲覧。
- ^ Lewisohn, Mark (1988). The Beatles Recording Sessions. New York: Harmony Books. ISBN 0-517-57066-1
- ^ Lewisohn, Mark (1996). The Complete Beatles Chronicle. Chancellor Press. ISBN 0-7607-0327-2
- ^ Kent, David (2005). Australian Chart Book (1940-1969). Turramurra: Australian Chart Book. ISBN 0-646-44439-5
- ^ "Offiziellecharts.de – The Beatles – Help!" (in German). GfK Entertainment Charts. 2021年10月2日閲覧。
- ^ "Official Albums Chart Top 100". Official Charts Company. 2021年10月2日閲覧。
- ^ a b "Dutchcharts.nl – The Beatles – Help!" (in Dutch). Hung Medien. 2021年10月2日閲覧。
- ^ "Official Albums Chart Top 100". Official Charts Company. 2021年10月2日閲覧。
- ^ “Top Compact Disks (for week ending May 30, 1987)”. Billboard: 54. (30 May 1987) 2021年10月2日閲覧。.
- ^ "Austriancharts.at – The Beatles – Help!" (in German). Hung Medien. 2021年10月2日閲覧。
- ^ "Ultratop.be – The Beatles – Help!" (in Dutch). Hung Medien. 2021年10月2日閲覧。
- ^ "Ultratop.be – The Beatles – Help!" (in French). Hung Medien. 2021年10月2日閲覧。
- ^ "The Beatles: Help!" (in Finnish). Musiikkituottajat – IFPI Finland. 2021年10月2日閲覧。
- ^ "Italiancharts.com – The Beatles – Help!". Hung Medien. 2021年10月2日閲覧。
- ^ “ザ・ビートルズ“リマスター”全16作トップ100入り「売上金額は23.1億円」”. ORICON NEWS (オリコン). (2009年9月15日) 2021年10月2日閲覧。
- ^ "Charts.org.nz – The Beatles – Help!". Hung Medien. 2021年10月2日閲覧。
- ^ "Portuguesecharts.com – The Beatles – Help!". Hung Medien. 2021年10月2日閲覧。
- ^ "Spanishcharts.com – The Beatles – Help!". Hung Medien. 2021年10月2日閲覧。
- ^ "Swedishcharts.com – The Beatles – Help!". Hung Medien. 2021年10月2日閲覧。
- ^ "Swisscharts.com – The Beatles – Help!". Hung Medien. 2021年10月2日閲覧。
- ^ "Official Albums Chart Top 100". Official Charts Company. 2021年10月2日閲覧。
- ^ “Billboard 200 Chart”. Billboard (2010年12月4日). 2021年10月2日閲覧。
- ^ 『日経BPムック 大人のロック!特別編集 ザ・ビートルズ 世界制覇50年』日経BP、2015年、33頁。ISBN 978-4-8222-7834-2。
- ^ “How Many Records did the Beatles actually sell?”. Deconstructing Pop Culture by David Kronemyer (2009年4月29日). 2016年3月6日時点のオリジナルよりアーカイブ。2021年10月2日閲覧。
- ^ “Discos de oro y platino” (スペイン語). Cámara Argentina de Productores de Fonogramas y Videogramas. 2011年7月6日時点のオリジナルよりアーカイブ。2021年10月2日閲覧。
- ^ "ARIA Charts – Accreditations – 2009 Albums" (PDF). Australian Recording Industry Association. 2021年10月2日閲覧。
- ^ "British album certifications – The Beatles – Help". British Phonographic Industry. 2021年10月2日閲覧。 Select albums in the Format field. Select Platinum in the Certification field. Type Help in the "Search BPI Awards" field and then press Enter.
- ^ “Beatles albums finally go platinum”. British Phonographic Industry (BBC News). (2013年9月2日) 2021年10月2日閲覧。
- ^ "Canadian album certifications – The Beatles – Help". Music Canada. 2021年10月2日閲覧。
- ^ "American album certifications – Beatles, The – Help!". Recording Industry Association of America. 2021年10月2日閲覧。
外部リンク
HELP!
出典: フリー百科事典『ウィキペディア(Wikipedia)』 (2019/12/29 03:19 UTC 版)
ChuChu2005年秋号掲載。「抱きしめたいっ!!」の続編である。
※この「HELP!」の解説は、「となりの聖くん」の解説の一部です。
「HELP!」を含む「となりの聖くん」の記事については、「となりの聖くん」の概要を参照ください。
「help」の例文・使い方・用例・文例
Helpと同じ種類の言葉
- Helpのページへのリンク