Re: wxPython + mouse gestures? (code incl.) Programming Software Development by richieking Associate you guesture with the top/main panel. Example. [CODE] pan1=wx.panel(self,-1) pan2=wx.panel(self,-1) #Now the buttons and other stuffs on pan2. #make pan2 inherit pan1 as the parent. #Associate the gusture on the pan1 That will fix it buddy ;) [/CODE] Associate String With Socket From External Application? Programming Software Development by Yorkiebar14 … only problem I have is that I am struggling to associate usernames with the accepted sockets on the server. The server… or such-like, I can't find a way to associate a name with a socket. I have looked in to… Re: associate jar files with java.exe not javaw.exe in window 7 Programming Software Development by khaled_jawaher thanx for reply, when i associate jar with javaw.exe,it is opening normally,but when i associate it with java.exe,it is opening only 1 second,and i am not seeing what is the message exactly then closing rapidly.i don't know what is the problem Re: Associate String With Socket From External Application? Programming Software Development by pritaeas > can't find a way to associate a name with a socket I don't think you can. Just send the username as the first data. Re: Associate my data object to my datatable Programming Software Development by ddanbe But my boss sad me to associate each row to my object. Is object the datagridview? What do you mean by associate? Datagridview has a property called DataSource, is it that what you want? Associate MySQL multiple records from multiple tables using PHP/Javascript Programming Web Development by fsmaniaka … points associated to it. [B]I am currently able to associate a gymnast with a particular test only without the units… associate jar files with java.exe not javaw.exe in window 7 Programming Software Development by khaled_jawaher how can i associate jar files with java.exe not javaw.exe in window 7,since if jar file is associated to javaw.exe,then console is not displayed. thanx Re: associate jar files with java.exe not javaw.exe in window 7 Programming Software Development by khaled_jawaher i apreciate ur response i tried this and associate it to java.exe not javaw.exe,but it is not working. i don't know why?it is opening for 1 second geving me message program exit and closing rapidly. thanx Associate my data object to my datatable Programming Software Development by mdev … a object with data. But my boss sad me to associate each row to my object. Who can help me? That… Re: BASH script - sales per each associate (3 files) Programming Software Development by tones1986 …./newtest.sh SALES FOR ASSOCIATE 21 SALES FOR ASSOCIATE 22 Associate 22 made 0 for selling 110 Associate 22 made 0 for … for selling 108 SALES FOR ASSOCIATE 23 Associate 23 made 0 for selling 110 Associate 23 made 0 for selling…Very strange - and once again, no information for sales associate 21, he did sell somethings! Haha - well deal … Re: BASH script - sales per each associate (3 files) Programming Software Development by tones1986 … character: N (standard_in) 1: illegal character: T Associate 25 made for selling 111 (standard_in) 1: illegal … character: N (standard_in) 1: illegal character: T Associate 25 made for selling 112 (standard_in) 1: illegal … character: N (standard_in) 1: illegal character: T Associate 25 made for selling 111 (standard_in) 1: illegal … Re: BASH script - sales per each associate (3 files) Programming Software Development by tones1986 ASSOCIATE 21 SALES FOR ASSOCIATE 22 SALES FOR ASSOCIATE 23 SALES FOR ASSOCIATE 24 SALES FOR ASSOCIATE 25 SALES FOR ASSOCIATE…let COUNT=$COUNT+1 done echo "SALES FOR ASSOCIATE $COUNTER" cat /tmp/sales.$COUNTER.$$ let…:2007,21 and then the same for each associate (similar files - notice how the $4 is… Re: BASH script - sales per each associate (3 files) Programming Software Development by tones1986 …i use an array to store the GRANDTOTALS for each associate? --- if so i could then do a basic … [ $ID -le 6 ] do echo "SALES FOR ASSOCIATE 2$ID" while read line do PRODID=`echo $line…SALES FOR ASSOCIATE 21 SALES FOR ASSOCIATE 22 SALES FOR ASSOCIATE 23 SALES FOR ASSOCIATE 24 SALES FOR ASSOCIATE 25 SALES FOR ASSOCIATE 26 … Re: BASH script - sales per each associate (3 files) Programming Software Development by tones1986 ….$$ let COUNT=$COUNT+1 done echo "SALES FOR ASSOCIATE $COUNTER" cat /tmp/sales.$COUNTER.$$ let COUNTER…: line 9: [: 1: unary operator expected SALES FOR ASSOCIATE 21 cat: /tmp/sales.21.21066: No such file … line 9: [: 1: unary operator expected SALES FOR ASSOCIATE 22 cat: /tmp/sales.22.21066: No such file … Re: BASH script - sales per each associate (3 files) Programming Software Development by stilllearning …}' sales [CODE]#! /bin/bash #generate a newSales file for each associate ID=1 while [ $ID -le 6 ] do awk /[2… while [ $ID -le 6 ] do echo "SALES FOR ASSOCIATE 2$ID" while read line do PRODID=`echo $line…echo "scale=2; $PRICE*$QTY" | bc) echo "Associate 2$ID made $TOTAL for selling $PRODID" done <… BASH script - sales per each associate (3 files) Programming Software Development by tones1986 …95 sales: (product ID,num. sold, date sale, associate ID) % cat sales 110,1,01:02:2007,22…:2007,23 104,9,05:03:2007,21 associates: (associate ID, name, salary, position) % cat associates 21/…newSales.$$ > /tmp/sales.$COUNTER.$$ echo "SALES FOR ASSOCIATE $COUNTER" cat /tmp/sales.$COUNTER.$$ let COUNTER=$COUNTER+… Re: BASH script - sales per each associate (3 files) Programming Software Development by tones1986 …[ $ID -le 6 ] do echo "SALES FOR ASSOCIATE 2$ID" while read line do PRODID=`echo $line…;scale=2; $PRICE*QUANT" | bc) echo "Associate 2$ID made $TOTAL for selling $PRODID done < "…whatever reason, they include sales for associate 22 also - is this because some of associate 22's field are '21'??? That… Re: BASH script - sales per each associate (3 files) Programming Software Development by stilllearning …"scale=2; $PRICE*QUANT" | bc) echo "Associate 2$ID made $TOTAL for selling $PRODID[/CODE] They should…"scale=2; $PRICE*$QUANT" | bc) echo "Associate 2$ID made $TOTAL for selling $PRODID"[/CODE] Also… looking to isolate values based on the match the associate id, which in your case is luckily the final… Re: BASH script - sales per each associate (3 files) Programming Software Development by stilllearning …[/CODE] If all you want to do is send particular associate id's to one file, this will suffice. Not sure…=1 while [ $ID -le 6 ] do echo "SALES FOR ASSOCIATE 2$ID" while read line do PRODID=`echo $line…=$(echo "scale=2; $PRICE*$QUANT" | bc) echo "Associate 2$ID made $TOTAL for selling $PRODID" done <… Re: BASH script - sales per each associate (3 files) Programming Software Development by tones1986 … help) we have got it working in terms of each associate and their sales per product - i now should just need… to add an array maybe for total[ASSOCIATE-ID]=total[ASSOCIATE-ID]+$price Would this work? Ill try it and… Re: BASH script - sales per each associate (3 files) Programming Software Development by tones1986 …: [code] while [ $ID -le 2 ] do echo "SALES FOR ASSOCIATE 2$ID" NAMES[$ID]=`awk -F"/" '[B…] I get this: /home/lx/z109079 : ./newtest.sh SALES FOR ASSOCIATE 21 Name: [B]John Doe[/B] Grand total for 21… Re: BASH script - sales per each associate (3 files) Programming Software Development by stilllearning … [ $ID -le 6 ] do GRANDTOTAL=0 echo "SALES FOR ASSOCIATE 2$ID" while read line do PRODID=`echo $line…]$ID/ associates|awk -F"/" '{print $2}'` echo "Associate 2$ID ${names[$ID]} made ${totalsales[$ID]}" let ID… wx.Checkbox - Associate Data with a Checkbox Programming Software Development by madtowneast I have been trying to figure out how to associate data with the event of checkbox being checked. The …'testend' [/CODE] The [ICODE]NestedPanelThree[/ICODE] class is where I associate the checkboxes with the data and tried to crawl up… through the panels. Is there a way to associate the checkbox with data, such that if the checkbox is… Re: BASH script - sales per each associate (3 files) Programming Software Development by stilllearning … use an array to add up the prices for each associate. How to associate a program with a file format Hardware and Software Microsoft Windows by dcgibson Would someone please give me a step-by-step procedure to associate a program with a file format--in particular--how to display content of a .pps (PowerPoint) attachment. I have downloaded the M/S PowerPoint viewer program but am unable to figure out how to "associate" it (whatever that means). Thanks, DCG Re: How to associate a program with a file format Hardware and Software Microsoft Windows by rtolsma … someone please give me a step-by-step procedure to associate a program with a file format--in particular--how to… program but am unable to figure out how to "associate" it (whatever that means). Thanks, DCG[/QUOTE] Hi dcgibson… Using Associate Programs Digital Media Digital Marketing by Antonbomb22 Are associate programs a good way to start off making revenue instead of advertising? I am planning to use the Amazon associates sytem and i was wondering if i am heading in the right direction:) Re: Using Associate Programs Digital Media Digital Marketing by Antonbomb22 well i am planning on using amazon web api as my site's store so i do not risk loosing money if products dont sell. i am also taking up an associate account with Viz, LLC which is a publisher of anime/manga which is pointed directly at my site's audience. i think if i promote it well the store will do good;) Re: Using Associate Programs Digital Media Digital Marketing by Dani Good luck with it!! It's just that with associate programs such as Amazon, you only make money when you … Help me in Sun Certified Java Associate (SCJA) exam Programming Software Development by Anupkumar Hi, I am planning to take Sun Certified Java Associate exam. Please give me some tips regarding how to start. Also if any of you have passed SCJA exam please provide some piece of advice. Thank you.