s
(klavyenin s tuşu basmıyorda 😁 )
Kopyaladığın son şeyi yapıştır
· 1.6K Yanıt · 118K görüntüleme 0 okuyor · Sayfa 70 / 81
Yanıtlar
G
Gullugullugil
⭐ 17y
s
(klavyenin s tuşu basmıyorda 😁 )
Benimkininde 😁 Ekran klavyesi kullan 😜
asdf
Rus ruletinden beter!
G
Gullugullugil
⭐ 17y
12
U
Unforgiven
⭐ 17y
0000CC
G
Gullugullugil
⭐ 17y
viewtopic.php?f=761&t=170455&hilit=
biraz reklam kokuyor ama ne yapalım 😊
biraz reklam kokuyor ama ne yapalım 😊
B
Black Rain
⭐ 19y
Resimmiş yapışmıyor 😜
Private Sub Form_Load()
MsgBox "Bu program volkan öztürk yapımıdır...", 64, "[email protected]"
End Sub
Private Sub Command1_Click()
WindowsMediaPlayer1.URL = "http://212.175.166.3/TV1"
End Sub
Private Sub Command2_Click()
WindowsMediaPlayer1.URL = "http://212.175.166.3/TV2"
End Sub
Private Sub Command3_Click()
WindowsMediaPlayer1.URL = "http://212.175.166.3/TV4"
End Sub
Private Sub Command4_Click()
WindowsMediaPlayer1.URL = "http://144.122.56.15/odtutv"
End Sub
Private Sub Command6_Click()
WindowsMediaPlayer1.URL = "http://66.90.118.66/eliftv"
End Sub
Private Sub Form_Activate()
a:
Label1 = Format(Now, "hh:mm:ss")
DoEvents
GoTo a
End Sub
MsgBox "Bu program volkan öztürk yapımıdır...", 64, "[email protected]"
End Sub
Private Sub Command1_Click()
WindowsMediaPlayer1.URL = "http://212.175.166.3/TV1"
End Sub
Private Sub Command2_Click()
WindowsMediaPlayer1.URL = "http://212.175.166.3/TV2"
End Sub
Private Sub Command3_Click()
WindowsMediaPlayer1.URL = "http://212.175.166.3/TV4"
End Sub
Private Sub Command4_Click()
WindowsMediaPlayer1.URL = "http://144.122.56.15/odtutv"
End Sub
Private Sub Command6_Click()
WindowsMediaPlayer1.URL = "http://66.90.118.66/eliftv"
End Sub
Private Sub Form_Activate()
a:
Label1 = Format(Now, "hh:mm:ss")
DoEvents
GoTo a
End Sub
Private Sub Form_Load()
MsgBox "Bu program volkan öztürk yapımıdır...", 64, "[email protected]"
End Sub
Private Sub Command1_Click()
WindowsMediaPlayer1.URL = "http://212.175.166.3/TV1"
End Sub
Private Sub Command2_Click()
WindowsMediaPlayer1.URL = "http://212.175.166.3/TV2"
End Sub
Private Sub Command3_Click()
WindowsMediaPlayer1.URL = "http://212.175.166.3/TV4"
End Sub
Private Sub Command4_Click()
WindowsMediaPlayer1.URL = "http://144.122.56.15/odtutv"
End Sub
Private Sub Command6_Click()
WindowsMediaPlayer1.URL = "http://66.90.118.66/eliftv"
End Sub
Private Sub Form_Activate()
a:
Label1 = Format(Now, "hh:mm:ss")
DoEvents
GoTo a
End Sub
wuhu şunada bak sen 😜 😜
M
MrCrossover
⭐ 17y
Cause I don't think that they'd understand
M
Mike Shinoda
⭐ 19y
҉ Loading…..
G
Gullugullugil
⭐ 17y
Nedense bu müslüm denilen kişinin adını son sıralarda çok duymaya ҉ Loading…..
M
Mike Shinoda
⭐ 19y
2 ocak ksk-göz göz dostluk maçımış tut kafasını muahaha 😄
M
MrCrossover
⭐ 17y
bana masaüstünün resmini at!:D
G
Gullugullugil
⭐ 17y
namespace Sro.Framework
{
using System;
using System.IO;
internal class PacketWriter
{
private BinaryWriter bw;
private int dataLen;
private MemoryStream ms = new MemoryStream();
public void Byte(byte data)
{
this.bw.Write(data);
this.dataLen += 2;
}
public void Create(ushort opcode)
{
this.bw = null;
this.ms = null;
this.ms = new MemoryStream();
this.bw = new BinaryWriter(this.ms);
this.bw.Write((ushort) 0);
this.dataLen = 0;
this.Word(opcode);
this.Word(0);
}
public void DWord(uint data)
{
this.bw.Write(data);
this.dataLen += 8;
}
public void Float(float data)
{
this.bw.Write(data);
this.dataLen += 8;
}
public byte[] GetBytes()
{
byte[] buffer = new byte[1];
this.ms.Position = 0L;
ushort num = (ushort) ((this.dataLen - 😎 / 2);
this.bw.Write(num);
this.bw.Close();
buffer = this.ms.ToArray();
this.ms.Close();
return buffer;
}
public void HexString(string data)
{
char[] chArray = new char[data.Length];
for (int i = 0; i < data.Length; i++)
{
chArray = Convert.ToChar(data.Substring(i, 1));
this.bw.Write(chArray);
}
this.dataLen += data.Length;
}
public void LWord(ulong data)
{
this.bw.Write(data);
this.dataLen += 0x10;
}
public void String(string data)
{
char[] chArray = new char[data.Length];
for (int i = 0; i < data.Length; i++)
{
chArray = Convert.ToChar(data.Substring(i, 1));
this.bw.Write(chArray);
}
this.dataLen += data.Length * 2;
}
public void UString(string data)
{
char[] chArray = new char[data.Length];
for (int i = 0; i < data.Length; i++)
{
chArray = Convert.ToChar(data.Substring(i, 1));
this.bw.Write(chArray);
this.bw.Write((byte) 0);
}
this.dataLen += data.Length * 4;
}
public void Word(ushort data)
{
this.bw.Write(data);
this.dataLen += 4;
}
}
}
{
using System;
using System.IO;
internal class PacketWriter
{
private BinaryWriter bw;
private int dataLen;
private MemoryStream ms = new MemoryStream();
public void Byte(byte data)
{
this.bw.Write(data);
this.dataLen += 2;
}
public void Create(ushort opcode)
{
this.bw = null;
this.ms = null;
this.ms = new MemoryStream();
this.bw = new BinaryWriter(this.ms);
this.bw.Write((ushort) 0);
this.dataLen = 0;
this.Word(opcode);
this.Word(0);
}
public void DWord(uint data)
{
this.bw.Write(data);
this.dataLen += 8;
}
public void Float(float data)
{
this.bw.Write(data);
this.dataLen += 8;
}
public byte[] GetBytes()
{
byte[] buffer = new byte[1];
this.ms.Position = 0L;
ushort num = (ushort) ((this.dataLen - 😎 / 2);
this.bw.Write(num);
this.bw.Close();
buffer = this.ms.ToArray();
this.ms.Close();
return buffer;
}
public void HexString(string data)
{
char[] chArray = new char[data.Length];
for (int i = 0; i < data.Length; i++)
{
chArray = Convert.ToChar(data.Substring(i, 1));
this.bw.Write(chArray);
}
this.dataLen += data.Length;
}
public void LWord(ulong data)
{
this.bw.Write(data);
this.dataLen += 0x10;
}
public void String(string data)
{
char[] chArray = new char[data.Length];
for (int i = 0; i < data.Length; i++)
{
chArray = Convert.ToChar(data.Substring(i, 1));
this.bw.Write(chArray);
}
this.dataLen += data.Length * 2;
}
public void UString(string data)
{
char[] chArray = new char[data.Length];
for (int i = 0; i < data.Length; i++)
{
chArray = Convert.ToChar(data.Substring(i, 1));
this.bw.Write(chArray);
this.bw.Write((byte) 0);
}
this.dataLen += data.Length * 4;
}
public void Word(ushort data)
{
this.bw.Write(data);
this.dataLen += 4;
}
}
}
Yanıt yazmak için giriş yapın.
Giriş Yap