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
| <?xml version="1.0" encoding="utf-8"?> | |
| <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" horizontalScrollPolicy="on" width="100%" height="1000" verticalScrollPolicy="off" layout="absolute" backgroundGradientAlphas="[1.0, 1.0]" backgroundGradientColors="[#FFFFFF, #FFFFFF]" verticalAlign="middle"> | |
| <!-- | |
| http://pbskids.org/sprout_games/mama-mirabelle/games/source/ndi/utils/Logger.as | |
| http://www.uh.edu/wtsc_apps/js/uploadify/com/adobe/webapis/URLLoaderBase.as | |
| http://alivepdf.bytearray.org/?p=20 | |
| http://books.google.com/books?id=CeMMho6OodcC&pg=PT493&lpg=PT493&dq=onIOError%28event:IOErrorEvent%29&source=bl&ots=KkN3LufGUS&sig=Q28fa0EWe9p2msFtjyc-Wkhawvg&hl=en&sa=X&ei=7YJGVOa3EKrksATDoYDADw&ved=0CDkQ6AEwBQ#v=onepage&q=onIOError%28event%3AIOErrorEvent%29&f=false | |
| --> | |
| <mx:Script> | |
| <![CDATA[ |
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 Model.Modelo | |
| { | |
| import mx.collections.ArrayCollection; | |
| [Bindable] | |
| public class AppModel | |
| { | |
| private static var _instance:AppModel; | |
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
| /** | |
| * ActionScript source file that defines the UI logic and some of the data access code. | |
| * This file is linked into the main application MXML file using the mx:Script tag. | |
| * Most of the functions in this file are called by event handlers defined in | |
| * the MXML. | |
| */ | |
| //import Modulos.Auditoria.AuditoriaClase; | |
| import Model.Modelo.AppModel; | |
| public var usuario_conectado:String = AppModel.nombre_usuario; |
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
| <?php | |
| require_once(dirname(__FILE__) . "/Controlconn.php"); | |
| class TAuditoria { | |
| function agregar_a_auditoria($usuario, $accion_ejecutada, $es_visita_admin) { | |
| $listo =false; | |
| $fecha = date("Y\-m\-d\ H\:i\:s"); | |
| // $fecha_ultima_visita = date("Y\-m\-d\ H\:i\:s"); |
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 Modulos.Validacion | |
| { | |
| public class ValidacionClase | |
| { | |
| public static function ValidarCarnet(ci:String):Boolean | |
| { | |
| var bandera:Boolean = false; | |
| if(ci.length == 11) |
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.ttsl; | |
| import android.content.Context; | |
| import android.speech.tts.TextToSpeech; | |
| import java.util.Locale; | |
| import java.util.Random; | |
| import android.app.Activity; | |
| import android.os.Bundle; |
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
| public var period:int=1; //various also by service | |
| public var charge:Number = 599.00;// varies by product | |
| public function gopaypalpay():void{ | |
| if(sipay.selected == true) | |
| charge = 1598.00 | |
| var p:Number; | |
| p = 0; | |
| var url:String = "https://www.paypal.com/cgi-bin/webscr"; |
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
| <?php | |
| require_once(dirname(__FILE__) . "/Controlciroaconn.php"); | |
| require_once(dirname(__FILE__) . "/functions.inc.php"); | |
| require_once(dirname(__FILE__) . "/XmlSerializer.class.php"); | |
| require_once(dirname(__FILE__) . "/Ccentro.php"); | |
| require_once(dirname(__FILE__) . "/CPersona.php"); | |
| require_once(dirname(__FILE__) . "/TAuditoria.php"); | |
| /** |
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
| <?php | |
| require_once(dirname(__FILE__) . "/Controlciroaconn.php"); | |
| require_once(dirname(__FILE__) . "/functions.inc.php"); | |
| require_once(dirname(__FILE__) . "/XmlSerializer.class.php"); | |
| require_once(dirname(__FILE__) . "/TAuditoria.php"); | |
| //example below | |
| //http://www.scribd.com/doc/89066015/Tarjeta-de-Estiba | |
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.end.model.vos_employee | |
| { | |
| [Bindable] | |
| public class Employee | |
| { | |
| /*-.........................................Properties..........................................*/ | |
| public var emp_id : uint; | |
| public var firstname : String; | |
| public var lastname : String; |
OlderNewer