<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/1.0.2.99">
</HEAD>
<BODY>
Hello, 
<BR>

<BR>
I'm using PyQt-3.1 
<BR>
I'm very new to using PyQt and I'm having problems with tables and signals..&nbsp; 
<BR>
The signals from all the other widgets I've tried seem to work. 
<BR>

<BR>
Using designer, I've created a simple table named Table1. 
<BR>
The name of the form is BrowseForm. 
<BR>
I get the following error when i run the code. 
<BR>

<BR>
QObject::connect: No such slot QMainWindow::Table1_clicked(int,int,int,const QPoint&amp;)
<BR>
QObject::connect:&nbsp; (sender name:&nbsp;&nbsp; 'Table1')
<BR>
QObject::connect:&nbsp; (receiver name: 'BrowseForm')
<BR>

<BR>
This happens with any signal I try to add from a TABLE 
<BR>

<BR>
Using designer, I add a Signal Handler clicked(int,int,int,const QPoint&amp;) . 
<BR>
Save the file. 
<BR>
The browse.ui code contains 
<BR>
&nbsp;&nbsp;&nbsp; &lt;connection&gt;
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;sender&gt;Table1&lt;/sender&gt;
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;signal&gt;clicked(int,int,int,const QPoint&amp;amp;)&lt;/signal&gt;
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;receiver&gt;BrowseForm&lt;/receiver&gt;
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;slot&gt;Table1_clicked(int,int,int,const QPoint&amp;amp;)&lt;/slot&gt;
<BR>
&nbsp;&nbsp;&nbsp; &lt;/connection&gt;&nbsp; 
<BR>

<BR>
I then gererate the py with 
<BR>
pyuic -o browse.py&nbsp; -x browse.ui 
<BR>

<BR>
The file browse.py contains 
<BR>
self.connect(self.Table1,SIGNAL(&quot;clicked(int,int,int,const QPoint&amp;)&quot;),self,SLOT(&quot;Table1_clicked(int,int,int,const QPoint&amp;)&quot;))
<BR>
and 
<BR>
def Table1_clicked(self,a0,a1,a2,a3):
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print &quot;BrowseForm.Table1_clicked(int, int, int, const QPoint&amp;): Not implemented yet&quot;
<BR>

<BR>

<BR>
When i run python browse.py I get the error 
<BR>

<BR>
QObject::connect: No such slot QMainWindow::Table1_clicked(int,int,int,const QPoint&amp;)
<BR>
QObject::connect:&nbsp; (sender name:&nbsp;&nbsp; 'Table1')
<BR>
QObject::connect:&nbsp; (receiver name: 'BrowseForm')
<BR>

<BR>
Any help or ideas, or am I doing this all wrong ???? 
<BR>

<BR>
Thanks 
<BR>
TC 
<BR>

<BR>

<BR>

<BR>

</BODY>
</HTML>