Skip to content

Instantly share code, notes, and snippets.

@nappa7878
nappa7878 / createTextField.js
Created May 6, 2011 13:16
テキストフィールドの設定
var tf1 = Titanium.UI.createTextField({
color:'#336699',
top:10,
left:10,
width:250,
height:40,
hintText:'hintText',
keyboardType:Titanium.UI.KEYBOARD_DEFAULT,
returnKeyType:Titanium.UI.RETURNKEY_DEFAULT,
borderStyle:Titanium.UI.INPUT_BORDERSTYLE_ROUNDED
@nappa7878
nappa7878 / array.js
Created May 7, 2011 06:29
多次元配列の作り方(Titanium Mobile)
var ary = [];
for(var i=0;i<10;i++){
ary.push([]);
}
//ary[0-9][無限?]
ary[0][0] = '0-0';
ary[0][1] = '0-1';
@nappa7878
nappa7878 / array1.js
Created May 7, 2011 06:44
多次元配列の使い方(JavaScript)
var ary = new Array(10);
for(i=0;i<10;i++){
ary[i] = new Array(10);
}
@nappa7878
nappa7878 / ListBoxChage.pas
Created May 15, 2011 02:20
ListBoxの選択したアイテムを上下に移動させる
procedure TForm1.Button1Click(Sender: TObject);
begin
//選択したアイテムを上に移動
ListItemChange(-1);
end;
procedure TForm1.Button2Click(Sender: TObject);
begin
//選択したアイテムを下に移動
ListItemChange(1);
@nappa7878
nappa7878 / randPerm.pas
Created May 22, 2011 07:56
配列をランダムに並び替える
type
//配列の個数を決めないで宣言します
TArrayOfInteger = array of integer;
//途中略
procedure TForm1.Button1Click(Sender: TObject);
var
i:integer;
rp:TArrayOfInteger;
@nappa7878
nappa7878 / ViewController.h
Created March 20, 2012 01:33
画面を固定する
// ViewController.h を修正する
// 横長:ボタン右
// UIInterfaceOrientationLandscapeRight
// 横長:ボタン左
// UIInterfaceOrientationLandscapeLeft
// 縦長:ボタン下(通常の画面)
// UIInterfaceOrientationPortrait
// 縦長:ボタン上
// UIInterfaceOrientationPortraitUpsideDown
@nappa7878
nappa7878 / ViewController.h
Created March 21, 2012 05:37
アプリからsafariを起動して指定URLを開く
- (IBAction)goToButton:(id)sender {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.kisnet.or.jp/nappa/software/star/index.htm"]];
}
@nappa7878
nappa7878 / gist:2717071
Created May 17, 2012 06:50
Google 短縮URL API で複数のURLを一括返還するEXCELマクロ
Public Sub Sample()
Dim i As Integer
i = 1
Do
Cells(i, 10) = GetShortenedLinkGoogl(Cells(i, 1))
i = i + 1
Loop Until Cells(i, 1) = ""
End Sub
http://www.ka-net.org/office/of38.htmlを参照
@nappa7878
nappa7878 / kuku.pde
Created December 2, 2012 06:28
九九ランダム表示(iPad PR0C0D1N6用)
/*****************************************
* 九九ランダム表示 (iPad PR0C0D1N6用)
* 横置き
* ボタンクリックで表示の切替
* Hiroyuki Nakano
* 2012.12.02
*****************************************/
String[] Quest = new String[81];
int[] Ans = new int[81];
int[] rS = new int[81];
@nappa7878
nappa7878 / hitoketa_tashizan.pde
Created December 3, 2012 02:24
1けたのたし算ランダム表示 (iPad PR0C0D1N6用)
/*****************************************
* 1けたのたし算ランダム表示 (iPad PR0C0D1N6用)
* 横置き
* ボタンクリックで表示の切替
* Hiroyuki Nakano
* 2012.12.03
*****************************************/
String[] Quest = new String[81];
int[] Ans = new int[81];
int[] rS = new int[81];