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);
}
16 Kasım 2015 Pazartesi
JSCRIPT .NET
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:
Yol 2: 1 dekine benzer. Burada bind ederek kullanabiliyoruz.
DropDownList list = new DropDownList();
list.DataSource =ddlValues;
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.DataBind();
1 Temmuz 2015 Çarşamba
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

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
11 Eylül 2014 Perşembe
9 Haziran 2014 Pazartesi
Kaydol:
Kayıtlar (Atom)
evren pehlivan yazılım
evren pehlivan yazılım, evren pehlivan yazılım geliştirici
-
site adresi / dosya konumu / dosyanızın adı şeklindeki bir bağlantı elde etmek istiyorsanız dosya sistemindeki dosyaların isimlerinin yazıl...
-
dataset adı dataSet1 olsun dataSet1.Tables["TabloAdı"].Rows[satırnumarası]["tablodakiSütunAdı"]; data table için de aynı...

