How can I bind a keyboard shortcut to start a specific application in Windows 7?

49

You can configure it under the program's "Properties".

Screenshot

Right-click on the program's icon (or Shift + Right-click on taskbar pinned items) and select "Properties". Then, as highlighted above, you can configure the Shortcut key. Hope that helps!

Share:
49

Related videos on Youtube

user3828427
Author by

user3828427

Updated on September 17, 2022

Comments

  • user3828427
    user3828427 almost 2 years

    I display all lines in the db represented by the model Client

    @foreach (var item in Model) 
    {
         @Html.DisplayFor(modelItem => item.etat)
         @Html.EditorFor(modelItem => item.decision)
        <td>
            @Html.ActionLink("Details", "Details", new { id=item.ID }) |
            @Html.ActionLink("Delete", "Delete", new { id=item.ID })
     } 
     </td>
    }
    

    And I want to edit only the parameter decision for all lines (instances) of clients and then send them to fill only this parameter for every clients with an input type submit. The problem is that I only know how to add the whole object client :

    [HttpPost]
    public ActionResult Create(Client client)
    {
         if (ModelState.IsValid)
         {
             db.Clients.Add(client);
             db.SaveChanges();
             return RedirectToAction("Index");
         }
         return View(client);
    } 
    

    I am so confused because of Ienumerate there is an error, so maybe I have to use a list ?

    Thank you in advance for your help

  • user3828427
    user3828427 almost 10 years
    I don't know why but it doesn't recognize Ienumerable. I try to add it at the top but nothing. Also an other question do I have to let the later create method to fill first all the parameters and then add the new create method for adding the decision param for all instances of Client Thank you very much
  • user3828427
    user3828427 almost 10 years
    Can you help me ? please