This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sub CopiarPegarValores() | |
' | |
' Esta macro lo que hace es reemplazar las formulas | |
' por sus valores a todas las celdas de un determinado valor | |
' | |
' | |
' .Color = 15986394 ' celda azul para las formulillas | |
' | |
Dim celda As Range ' la celda actual |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sub PonerFormulasPlanilla() | |
' | |
' Esta macro lo que hace es poner una formula | |
' en todas las celdas de un determinado color | |
' | |
' Recomiendo poner la formula en formato R1C1 | |
' | |
' .Color = 15986394 ' celda azul para las formulillas | |
' | |
' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<div class="persona"> | |
<p class="nombre">Pascale Solange Alvarado Soto</p> | |
<p class="edad">17</p> | |
<p class="estatura">1.60</p> | |
<p class="peso">52</p> | |
<p class="tez">Morena</p> | |
<p class="iris">Café</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE nino (idnino int(10) NOT NULL AUTO_INCREMENT, comentario text, nombre varchar(255) NOT NULL, fechanacimiento date NOT NULL, ciudadid int(10) NOT NULL, EstadoNinoid int(10) NOT NULL, fechaultimovisto date, foto text, PRIMARY KEY (idnino)); | |
CREATE TABLE pais (idpais int(10) NOT NULL AUTO_INCREMENT, nombrepais varchar(255) NOT NULL, PRIMARY KEY (idpais)); | |
CREATE TABLE rasgonino (idnino int(10) NOT NULL, tiporasgoid int(10) NOT NULL, valor varchar(255), PRIMARY KEY (idnino, tiporasgoid)); | |
CREATE TABLE tiporasgo (id int(10) NOT NULL AUTO_INCREMENT, nombrerasgo varchar(255) NOT NULL, PRIMARY KEY (id)); | |
CREATE TABLE ciudad (id int(10) NOT NULL AUTO_INCREMENT, nombreciudad varchar(255) NOT NULL, longitud float, latitud float, paisidpais int(10) NOT NULL, PRIMARY KEY (id)); | |
CREATE TABLE reporte (idreporte int(10) NOT NULL AUTO_INCREMENT, comentario varchar(255) NOT NULL, fecha date NOT NULL, idnino int(10), ciudadid int(10), PRIMARY KEY (idreporte)); | |
CREATE TABLE EstadoNino (id int(10) NOT NULL AUTO_INCRE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.oxbsystems.study.table.app01; | |
import java.awt.Dimension; | |
import java.awt.Toolkit; | |
import org.eclipse.jface.action.CoolBarManager; | |
import org.eclipse.jface.action.MenuManager; | |
import org.eclipse.jface.action.StatusLineManager; | |
import org.eclipse.jface.layout.TableColumnLayout; | |
import org.eclipse.jface.viewers.ColumnWeightData; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sad |