re

lunes, 23 de octubre de 2017

imagenes

<!DOCTYPE html>
<html>
<body>

<h2>What Can JavaScript Do?</h2>

<p>JavaScript can change HTML attributes.</p>

<p>In this case JavaScript changes the src (source) attribute of an image.</p>

<button onclick="document.getElementById('myImage').src='pic_bulbon.gif'">Turn on the light</button>

<img id="myImage" src="pic_bulboff.gif" style="width:100px">

<button onclick="document.getElementById('myImage').src='pic_bulboff.gif'">Turn off the light</button>

</body>
</html>

miércoles, 17 de febrero de 2016

Boton Guardar

nuevo = ds.Tables(0).NewRow nuevo.Item("sname") = TextBox1.Text nuevo.Item("sno") = TextBox2.Text ds.Tables(0).Rows.Add(nuevo) da.Update(ds)

lunes, 15 de febrero de 2016

Creacion de flyer

Flyers: Denominados también volantes, son folletos de pequeñas dimensiones que se utilizan para transmitir información de un producto o servicio.

creacion de flyers

jueves, 24 de septiembre de 2015

FILTRAR 9

    Dim filt
        filt = String.Format("nombre Like '{0}%'", TextBox1.Text)