Wednesday, December 31, 2014
Tuesday, December 30, 2014
buttonClass
input[type="submit"]:hover
{
background: #FFFFFF;
color: #FFAD33;
border: 1px solid #FFAD33;
/*float:left;
width:100%;*/
}
.buttonClass input:hover
{
background-color: #FFFFFF !important;
color: #FFAD33 !important;
border: 1px solid #FFAD33 !important;
/*float:left;
width:100%;*/
}
Monday, December 29, 2014
Large file
<
configuration
>
<
system.web
>
<
compilation debug="true" targetFramework="4.0"
/>
<
httpRuntime executionTimeout="240" maxRequestLength="20480"
/>
</
system.web
>
<
system.webServer
>
<
modules runAllManagedModulesForAllRequests="true"
/>
</
system.webServer
>
configuration
>
<
system.web
>
<
compilation debug="true" targetFramework="4.0"
/>
<
httpRuntime executionTimeout="240" maxRequestLength="20480"
/>
</
system.web
>
<
system.webServer
>
<
modules runAllManagedModulesForAllRequests="true"
/>
</
system.webServer
>
Download Java for Windows
https://java.com/en/download/
https://java.com/en/download/win8.jsp?locale=en
http://java.com/en/download/installed8.jsp
https://java.com/en/download/manual.jsp
Friday, December 26, 2014
Saving changes is not permitted MS SQL Server
Tools...
Options...
Designers..
Table and Database Designers.. and unclick the
"prevent saving changes that require table re-creation"
emb
--- MPLAB IDE 7.30 MP730b.exe
--- mplabc18-v3.47-windows-lite-installer.exe
--- Proteus
--- Arduino
Wednesday, December 24, 2014
Saturday, December 20, 2014
p18f4550
#include
#include
#pragma config FOSC = INTOSCIO_EC //Internal oscillator, port function on RA6, EC used by USB
#pragma config WDT = OFF //Disable watchdog timer
#define LEDPin LATDbits.LATD1 //Define LEDPin as PORT D Pin 1
#define LEDTris TRISDbits.TRISD1 //Define LEDTris as TRISD Pin 1
void main()
{
LEDTris = 0;//Set LED Pin data direction to OUTPUT
LEDPin = 1;//Set LED Pin
while(1)
{
LEDPin = ~LEDPin;//Toggle LED Pin
Delay10KTCYx(25);//Delay 250K cycles (1 second at 1MHz since each instruction takes 4 cycles)
}
}
#include
#pragma config FOSC = INTOSCIO_EC //Internal oscillator, port function on RA6, EC used by USB
#pragma config WDT = OFF //Disable watchdog timer
#define LEDPin LATDbits.LATD1 //Define LEDPin as PORT D Pin 1
#define LEDTris TRISDbits.TRISD1 //Define LEDTris as TRISD Pin 1
void main()
{
LEDTris = 0;//Set LED Pin data direction to OUTPUT
LEDPin = 1;//Set LED Pin
while(1)
{
LEDPin = ~LEDPin;//Toggle LED Pin
Delay10KTCYx(25);//Delay 250K cycles (1 second at 1MHz since each instruction takes 4 cycles)
}
}
Subscribe to:
Posts (Atom)