help!とは? わかりやすく解説

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 クラス

HTML ヘルプ 1.0 エンジンカプセル化ます。

名前空間: System.Windows.Forms
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)
構文構文

解説解説
使用例使用例

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.Object
  System.Windows.Forms.Help
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

Help メソッド


パブリック メソッドパブリック メソッド

プロテクト メソッドプロテクト メソッド
参照参照

関連項目

Help クラス
System.Windows.Forms 名前空間
HelpNavigator
HelpProvider

Help メンバ

HTML ヘルプ 1.0 エンジンカプセル化ます。

Help データ型公開されるメンバを以下の表に示します


パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

Help クラス
System.Windows.Forms 名前空間
HelpNavigator
HelpProvider

ヘルプ

(help! から転送)

出典: フリー百科事典『ウィキペディア(Wikipedia)』 (2024/07/17 03:46 UTC 版)

ヘルプ(help)は、英語で助ける・援助・助力の意味

音楽
映像・漫画
その他

関連項目


ヘルプ!4人はアイドル

(help! から転送)

出典: フリー百科事典『ウィキペディア(Wikipedia)』 (2025/02/17 11:42 UTC 版)

ビートルズ > ビートルズの作品 > ヘルプ!4人はアイドル
ヘルプ!4人はアイドル
Help!
監督 リチャード・レスター
脚本
製作 ウォルター・シェンソン英語版
出演者 ビートルズ
音楽
撮影 デヴィッド・ワトキン
配給 ユナイテッド・アーティスツ
公開
  • 1965年7月29日[1]
  • 1965年8月9日[1]
  • 1965年12月13日[1]
上映時間 92分
製作国
言語 英語
製作費 $1,000,000
テンプレートを表示

ヘルプ!4人はアイドル』(英語: Help!)は、1965年イギリス冒険コメディ映画ザ・ビートルズの第2作目の主演映画

概要

前作の『ビートルズがやって来るヤァ!ヤァ!ヤァ!』同様リチャード・レスターが監督を務める。前作が予算が56万ドル、モノクロだったのに対し予算100万ドル、そしてフルカラーで撮影された。

内容は、リンゴ・スターの持っていた指輪を巡ってメンバーたちが事件に巻き込まれるというもの。

撮影地にバハマが選ばれた背景には、当時ビートルズの財務アドバイザーだったウォルター・ストラック(Walter Strach)が、イギリスの非常に高い累進所得税率(最高で約95%)による課税を回避するため、バハマにいわゆる「タックスシェルター」(本国での課税を回避する目的に収益をプールしておく法人)の設立を計画しており、その要件の一つである「バハマに1年間以上居住していること」を満たす目的があった[2]。実際、本映画の収益はバハマに設立されたプロダクションに入り、出演料は同プロダクションからバハマの銀行にある各メンバーの口座に支払われ、高額課税の回避には成功したという[3]

エンドロールには『セビリアの理髪師』の序曲が使用され指輪に写った共演者が自在なポーズをとり最後にビートルズが現れる。曲中には4人がふざけた会話をしジョージ・ハリスンが「アイ・ニード・ユー・バイ・ジョージ・ハリスン!」と執拗に言っている。

ザ・スパイダースザ・タイガースザ・ジャガーズGS主演映画は本作のドタバタの部分を拝借し、チェッカーズの「CHECKERS IN TAN TAN たぬき」や光GENJIの「ふ・し・ぎ・なBABY」、TVアニメ「魔法の天使クリィミーマミ」の第20話「危険なおくりもの!」にも影響を与えた。

日本での公開は1965年12月13日。正月映画として、銀座にあったニュー東宝で封切られた。入替制がとられ、トイレやスクリーンの後方に隠れた入場者も全て交替させられた。前売り券は65年12月11日から発売された。

ストーリー

東洋のカルトが儀式で女神カーリに女性を生贄に捧げようとしている。祭司長が彼女が生贄の指輪をはめていないことに気づく。生贄になろうとしている女性が、自分がファンであるビートルズのドラマー、リンゴ・スターにその指輪を贈ってしまっていたのである。指輪を取り戻した上で女性を生贄に捧げるために、祭司長のクラン、カルトのメンバー数名、高位の女性祭司のアーメがロンドンへ向かう。リンゴに気付かれること無く指輪を盗もうとするが何度か失敗した後、彼らはインド料理店でリンゴを襲う。リンゴは、指輪を渡さなければ自分が次の生贄にされてしまうことを知る。しかし、指輪は指から抜けなくなってしまっている。

ビートルズの4人はカルトのメンバーにロンドン中を追いかけ回される。宝石商も指輪を切断出来なかったことから、4人はマッド・サイエンティストのフット教授とその助手アルジャーノンを頼るが上手くいかない。フット教授は、自分の手段が奏功しなかったことから、指輪は極めて特殊な物質で出来ていると考え、その物質により金儲けをするために何とかして指輪を自分のものにしようと企む。アーメが4人を助けようとやって来て(アーメは冒頭で生贄にされそうになった女性の姉なのである)、一時的に物体を小さくする薬でリンゴの指を細くして指輪を外そうとするが、カルトのメンバーとフットたちが4人の家を襲撃して来たことから、アーメが注射器をポールの上に落してしまい、割れた注射器内の液体を浴びたポールの身体が小さくなってしまう。

ポールが元の大きさに戻ると、4人はオーストリアのアルプスに逃げ、カルト一味に隠れて4人を助けようとしているアーメのおかげで、カルトが仕掛けた罠から辛うじて逃れる。4人はスコットランド・ヤードに保護を求める。4人はフットたちからも辛くも逃れ、バッキンガム宮殿に隠れる。その後、パブで、クランは落とし戸の罠をリンゴに仕掛ける。

リンゴがわなから逃れた後、4人はバハマに逃げ、カルトのメンバーとフットらが後を追い、その後を現地警察が追う。リンゴが捕まりそうになった後、警察は他のメンバー3人にリンゴの変装をさせてカルトのメンバーを出し抜く。しかし、3人と警察の努力にも拘わらず、フットたちはリンゴを捕まえてボートに閉じ込めてしまう。そこでフットは指輪を手に入れるためにリンゴの指を切り落とそうとする。アーメはフットたちに物体を小さくする薬を渡す代わりにリンゴを救い出す。2人は海に飛び込んで逃げるが、リンゴは泳げず、2人はクランとその手下に捕らえられてしまう。

そして、リンゴが浜辺で生贄にされそうになった時、指輪が突然リンゴの指から外れる。リンゴはクランの指にその指輪をはめる。するとクランは4人の曲「ヘルプ!」が流れる中、自分の手下に追われることになる。

ギャラリー

キャスト

役名 俳優 日本語吹替
ジョン・レノン 広川太一郎
ポール・マッカートニー 井上真樹夫
ジョージ・ハリスン 堀勝之祐
リンゴ・スター 鈴木やすし
クラング大司祭 レオ・マッカーン 滝口順平
アーメ女官 エレノア・ブロン英語版 小原乃梨子
宝石商 ピーター・コプリー英語版 槐柳二
案内役(ナレーター) N/A 土居まさる
  • 日本語吹替:NETテレビ版・初回放送1971年12月24日『洋画特別席』

収録曲

イギリス盤公式オリジナル・アルバムヘルプ!』A面収録曲から、以下の楽曲が使われている。

関連商品

映像ソフト

1989年にビデオソフトで発売されたあと1998年にビデオとDVDでリリースされていたが、現在は廃盤。

2007年11月7日、ヘルプ!のタイトルで新たに再DVD化された。新たに特典映像としてメイキングや当時の予告編、監督リチャード・レスターや共演したエレノア・ブロンのインタビュー等が収録されている。

2013年6月26日にブルーレイで発売。上記再DVD化でデジタル復元されたものと同じ本編とボーナス・ディスクを収録。

書籍

脚注

  1. ^ a b c Help! - IMDb(英語)
  2. ^ The Beatles begin filming Help! in the Bahamas - The Beatles Bible・2019年2月18日
  3. ^ ビートルズ「解散の原因」は巨額な税金だった説 - 東洋経済Online・2022年1月22日
  4. ^ ビートルズ主演作「HELP!」公開50周年、レアなショット満載の写真集発売”. 映画ナタリー (2015年9月16日). 2015年9月16日閲覧。

外部リンク


HELP!

出典: フリー百科事典『ウィキペディア(Wikipedia)』 (2019/12/29 03:19 UTC 版)

となりの聖くん」の記事における「HELP!」の解説

ChuChu2005年秋号掲載。「抱きしめたいっ!!」の続編である。

※この「HELP!」の解説は、「となりの聖くん」の解説の一部です。
「HELP!」を含む「となりの聖くん」の記事については、「となりの聖くん」の概要を参照ください。

ウィキペディア小見出し辞書の「help!」の項目はプログラムで機械的に意味や本文を生成しているため、不適切な項目が含まれていることもあります。ご了承くださいませ。 お問い合わせ

「help」の例文・使い方・用例・文例

Weblio日本語例文用例辞書はプログラムで機械的に例文を生成しているため、不適切な項目が含まれていることもあります。ご了承くださいませ。



help!と同じ種類の言葉


英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「help!」の関連用語

help!のお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



help!のページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
実用日本語表現辞典実用日本語表現辞典
Copyright © 2025実用日本語表現辞典 All Rights Reserved.
デジタル大辞泉デジタル大辞泉
(C)Shogakukan Inc.
株式会社 小学館
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.
ウィキペディアウィキペディア
All text is available under the terms of the GNU Free Documentation License.
この記事は、ウィキペディアのヘルプ (改訂履歴)、ヘルプ!4人はアイドル (改訂履歴)の記事を複製、再配布したものにあたり、GNU Free Documentation Licenseというライセンスの下で提供されています。 Weblio辞書に掲載されているウィキペディアの記事も、全てGNU Free Documentation Licenseの元に提供されております。
ウィキペディアウィキペディア
Text is available under GNU Free Documentation License (GFDL).
Weblio辞書に掲載されている「ウィキペディア小見出し辞書」の記事は、Wikipediaのとなりの聖くん (改訂履歴)、FTPコマンドの一覧 (改訂履歴)の記事を複製、再配布したものにあたり、GNU Free Documentation Licenseというライセンスの下で提供されています。
Tanaka Corpusのコンテンツは、特に明示されている場合を除いて、次のライセンスに従います:
 Creative Commons Attribution (CC-BY) 2.0 France.
この対訳データはCreative Commons Attribution 3.0 Unportedでライセンスされています。
浜島書店 Catch a Wave
Copyright © 1995-2025 Hamajima Shoten, Publishers. All rights reserved.
株式会社ベネッセコーポレーション株式会社ベネッセコーポレーション
Copyright © Benesse Holdings, Inc. All rights reserved.
研究社研究社
Copyright (c) 1995-2025 Kenkyusha Co., Ltd. All rights reserved.
日本語WordNet日本語WordNet
日本語ワードネット1.1版 (C) 情報通信研究機構, 2009-2010 License All rights reserved.
WordNet 3.0 Copyright 2006 by Princeton University. All rights reserved. License
日外アソシエーツ株式会社日外アソシエーツ株式会社
Copyright (C) 1994- Nichigai Associates, Inc., All rights reserved.
「斎藤和英大辞典」斎藤秀三郎著、日外アソシエーツ辞書編集部編
EDRDGEDRDG
This page uses the JMdict dictionary files. These files are the property of the Electronic Dictionary Research and Development Group, and are used in conformance with the Group's licence.

©2025 GRAS Group, Inc.RSS