16 Kasım 2015 Pazartesi

JSCRIPT .NET

import System;
import System.ServiceProcess;
import System.Diagnostics;
import System.Timers;

class SimpleService extends ServiceBase
{
   private var timer : Timer;

   // Constructor -- setup the service properties
   function SimpleService()
   {
      CanPauseAndContinue = true;
      ServiceName = "JScript Service";

      timer = new Timer();
      timer.Interval = 1000;
      timer.AddOnTimer(OnTimer);
   }

eba combobox

eba tek seçimli liste grid özelliği kullanılmadığı zaman web formundaki DropDownList kontrolü gibi çalışır. Integration manager yerine codebehid tarafından bu kontrolü doldurmak için bir kaç yol var. System.Web.UI.WebControls  kütüphanesi  eklendikten sonra DropDownList kontrolünü kullanabilirsiniz.

Bunlardan ikisini yazıyorum:

Yol 1:



 SqlConnection cnn = null;
 SqlCommand cmd = new SqlCommand("SELECT *****", cnn);

 cmd.Connection.Open();

 SqlDataReader ddlValues;
 ddlValues = cmd.ExecuteReader();

 DropDownList list = new DropDownList();
           
            while (  ddlValues.Read()   )
            {
                list.Items.Add(new ListItem("Text1","Value1"));

            }



Yol 2: 1 dekine benzer. Burada bind ederek kullanabiliyoruz.

DropDownList list = new DropDownList();

 SqlConnection cnn = null;
 SqlCommand cmd = new SqlCommand("SELECT *****", cnn);

 cmd.Connection.Open();

 SqlDataReader ddlValues;
 ddlValues = cmd.ExecuteReader();


 list.DataTextField ="Field1";
 list.DataValueField ="Field2";
 list.DataSource =ddlValues;

 list.DataBind();

           
          




17 Eylül 2014 Çarşamba

Sony Digital Paper

https://pro.sony.com/bbsc/ssr/cat-digitalpaper/cat-digitalpapersub/product-DPTS1/




Sony’s Digital Paper is compelling and highly relevant to those professionals who remain overwhelmed with paper, and to public and private institutions that continue to generate large quantities of documents during their routine operations. Beneficiaries of Digital Paper include lawyers, governmental agencies, policymakers and legislators, professors and researchers in higher education, and globe-trotting executives. Easy to use right out of the box and optimized to accommodate 8.5” by 11” documents1 , Sony’s Digital Paper achieves a breakthrough in handwriting. The well-designed stylus retains a familiar, natural and comfortable writing experience akin to that of ink on paper. Read and annotate documents, create “sticky notes” and highlights, and upload documents wirelessly from Digital Paper making them available for archiving or sharing with colleagues.


$ 1100

yeni başlayanlar için level 0 programming



evren pehlivan yazılım

evren pehlivan yazılım, evren pehlivan yazılım geliştirici