Thread TK stürzt ab (11 answers)
Opened by Gast at 2006-05-31 13:34

moonyforce
 2006-05-31 14:56
#45515 #45515
User since
2006-05-31
3 Artikel
BenutzerIn
[default_avatar]
Mit diesem Befehl (tk):
Code: (dl )
$main->Button(-width => 35, -text => 'Senden', -command => sub { sms_senden_g() })->pack(-in => $frame_third, -anchor => 'ne');


öffne ich folgende Code sequenz:

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
sub sms_senden_g 
{
dat_1();
dat_read();
$empf = 'AT\+CMGS=';
$send = '> ';
$send1 = '+CMGS:';
$pos_empf = 0;

print "Start";
$init = 0;

while ($init == 0 && $end == 1)
{

lesen(); #list aus der COM Schnittstelle falls etwas reinkommt $count = 1


if ($count > 0)
{

if ($return =~ m/$empf/i)
{

$pass = $handle->write("\r\n$send");

print "$send\n";
}
elsif ($return =~ m/$end_of_sms/i) #falls abschlussnachricht
{

$pass = $handle->write("\r\n$send1 $count\r\n");
print "$send1 $count\n";

$temp = "$send1 $count\n";

$pass = $handle->write("\r\nOK\r\n");
print "OK\n";

print "Ende";
dat_0();

}
else
{
quitt();
}
}
else
{
set_timer();
}
}
}


hoffentlich irgendwie verständlich, sonst fragen. Es geht vorallem darum das die Tk oberfläche abstürzt.

View full thread TK stürzt ab