El fichero de hosts sigue estando en la misma ruta, solo que la carpeta "etc" ya no es visible, pero podemos acceder igualmente escribiendo la ruta. C:WindowsSystem32driversetc
Etiqueta: find
Find Public Key Token of my Project in Visual Studio 2012
In order to find the public key token of your project you need to follow this: 1. Open the Developer Command Prompt fot VS2012. 2. Write this command (Use full path of your DLL file): sn -T C:MyDLLdirectoryMyDLLfile.dll 3. Automatically it shows you your token: Microsoft (R) .NET Framework Strong Name Utility Version 4.0.30319.17929 Copyright …
Sigue leyendo Find Public Key Token of my Project in Visual Studio 2012
C# Error: Cannot have multiple items selected in a DropDownList
Error Cannot have multiple items selected in a DropDownList Solution This message means that you're trying to select an item and another one is already selected. To solve this problem you've to clear the previous selection an then select the new one, like this: myDropDownList.ClearSelection(); myDropDownList.Items.FindByValue(myValue).Selected = true;
Obtener Última Celda de Excel Aunque No Todas Tengan Información con Visual Basic For Applications
Podemos encontrarnos con una situación en la que necesitemos saber el número de filas o de columnas de una tabla dinámica (por ejemplo) en la que hay campos que para no repetirse están ocultos. Si queremos saber cuantas filas tiene una columna, pero puede que haya elementos ocultos, no nos sirve utilizar el simple "xlDown" …