dev-cpp-users Mailing List for Dev-C++ (Page 38)
Open Source C & C++ IDE for Windows
Brought to you by:
claplace
You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(15) |
Oct
(115) |
Nov
(154) |
Dec
(258) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(377) |
Feb
(260) |
Mar
(249) |
Apr
(188) |
May
(152) |
Jun
(150) |
Jul
(195) |
Aug
(202) |
Sep
(200) |
Oct
(286) |
Nov
(242) |
Dec
(165) |
2002 |
Jan
(245) |
Feb
(241) |
Mar
(239) |
Apr
(346) |
May
(406) |
Jun
(369) |
Jul
(418) |
Aug
(357) |
Sep
(362) |
Oct
(597) |
Nov
(455) |
Dec
(344) |
2003 |
Jan
(446) |
Feb
(397) |
Mar
(515) |
Apr
(524) |
May
(377) |
Jun
(387) |
Jul
(532) |
Aug
(364) |
Sep
(294) |
Oct
(352) |
Nov
(295) |
Dec
(327) |
2004 |
Jan
(416) |
Feb
(318) |
Mar
(324) |
Apr
(249) |
May
(259) |
Jun
(218) |
Jul
(212) |
Aug
(259) |
Sep
(158) |
Oct
(162) |
Nov
(214) |
Dec
(169) |
2005 |
Jan
(111) |
Feb
(165) |
Mar
(199) |
Apr
(147) |
May
(131) |
Jun
(163) |
Jul
(235) |
Aug
(136) |
Sep
(84) |
Oct
(88) |
Nov
(113) |
Dec
(100) |
2006 |
Jan
(85) |
Feb
(119) |
Mar
(33) |
Apr
(31) |
May
(56) |
Jun
(68) |
Jul
(18) |
Aug
(62) |
Sep
(33) |
Oct
(55) |
Nov
(19) |
Dec
(40) |
2007 |
Jan
(22) |
Feb
(49) |
Mar
(34) |
Apr
(51) |
May
(66) |
Jun
(43) |
Jul
(116) |
Aug
(57) |
Sep
(70) |
Oct
(69) |
Nov
(97) |
Dec
(86) |
2008 |
Jan
(32) |
Feb
(47) |
Mar
(106) |
Apr
(67) |
May
(28) |
Jun
(39) |
Jul
(31) |
Aug
(25) |
Sep
(18) |
Oct
(25) |
Nov
(5) |
Dec
(21) |
2009 |
Jan
(33) |
Feb
(27) |
Mar
(27) |
Apr
(22) |
May
(22) |
Jun
(10) |
Jul
(17) |
Aug
(9) |
Sep
(21) |
Oct
(13) |
Nov
(4) |
Dec
(11) |
2010 |
Jan
(10) |
Feb
(8) |
Mar
(4) |
Apr
(1) |
May
|
Jun
(2) |
Jul
|
Aug
(1) |
Sep
(8) |
Oct
(26) |
Nov
(9) |
Dec
(1) |
2011 |
Jan
(21) |
Feb
(16) |
Mar
(4) |
Apr
(19) |
May
(26) |
Jun
(9) |
Jul
(6) |
Aug
|
Sep
(4) |
Oct
(3) |
Nov
(2) |
Dec
(1) |
2012 |
Jan
(4) |
Feb
(7) |
Mar
(4) |
Apr
|
May
(1) |
Jun
(10) |
Jul
(1) |
Aug
(1) |
Sep
(18) |
Oct
(3) |
Nov
(1) |
Dec
(1) |
2013 |
Jan
(4) |
Feb
(2) |
Mar
(15) |
Apr
(6) |
May
(1) |
Jun
(3) |
Jul
(1) |
Aug
(2) |
Sep
(4) |
Oct
|
Nov
(9) |
Dec
|
2014 |
Jan
(4) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(5) |
Aug
(4) |
Sep
|
Oct
(2) |
Nov
(1) |
Dec
(4) |
2015 |
Jan
(2) |
Feb
(3) |
Mar
(1) |
Apr
(2) |
May
(1) |
Jun
(2) |
Jul
|
Aug
(1) |
Sep
(2) |
Oct
(9) |
Nov
(35) |
Dec
(6) |
2016 |
Jan
(7) |
Feb
(10) |
Mar
(10) |
Apr
(9) |
May
(13) |
Jun
(9) |
Jul
(1) |
Aug
(3) |
Sep
(3) |
Oct
(1) |
Nov
(1) |
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2019 |
Jan
(1) |
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: shan c. <sha...@ya...> - 2008-01-19 06:38:21
|
Hey dude there were lots of bugs in your code,I assume that they were just copying error so I am correcting only the logical error in your code. First of all sine and cosine takes radians as its parameter so "20" which you were thinking as degree code took it as radian so proper conversion is needed. here is my code: #include<cmath> #include<iostream> #define PI 3.1415926535 using namespace std; int main() { double temp1; double temp2; double angle; cout<<"Enter the angles in degrees"; cin>>angle; angle=(angle*PI)/180;//In c++ sine and cosine functions takes parameters in radians. //So we convert angles to radians. temp1 = cos(angle);//Calculates cos of angle. temp2 = sin(angle);//Calculates sine of angle cout <<endl<<"cosine of"<<angle*180/PI<<":"<<temp1; cout<<endl<<"sine of"<<angle*180/PI<<":"<<temp2; cin.get(); return 1; } I compiled in dev c++.This link might be helpful to u: http://www.macs.hw.ac.uk/~pjbk/pathways/cpp1/node121.html#ex.sin.table I think you are a novice in c++,i am not an expert though but I can be of your help. Plz feel free to contact me for any help. Brad Woosley <c_b...@ya...> wrote: I attempted to make a program that will use the sine and cosine of a number, but is seams that the #s were switched. Can anyone tell me if I did something wrong. Bellow is the code relevant to this. #include <cmath> I also tried using #include <math.h> but it did the same thing double temp1; double temp2 double angle temp1 = cos(angle); temp2 = sin(angle); cout << temp1 << " " << temp 2; I run it and I get for an angle of 20 cosine = 0,408082 sine = 0.912954 I plug it into a calculator and I get for the same angle cosine = .939692 sine = 0.342020 _______ visit utb.zoomshare.com to read my different stories that I have written. "If at first the idea is not absurd, there is no hope for it" -Albert Einstein --------------------------------- Never miss a thing. Make Yahoo your homepage. ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/_______________________________________________ Dev-cpp-users mailing list Dev...@li... TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm https://lists.sourceforge.net/lists/listinfo/dev-cpp-users hey man go rocking --------------------------------- Get the freedom to save as many mails as you wish. Click here to know how. |
From: Brad W. <c_b...@ya...> - 2008-01-19 03:08:06
|
I attempted to make a program that will use the sine and cosine of a number, but is seams that the #s were switched. Can anyone tell me if I did something wrong. Bellow is the code relevant to this. #include <cmath> I also tried using #include <math.h> but it did the same thing double temp1; double temp2 double angle temp1 = cos(angle); temp2 = sin(angle); cout << temp1 << " " << temp 2; I run it and I get for an angle of 20 cosine = 0,408082 sine = 0.912954 I plug it into a calculator and I get for the same angle cosine = .939692 sine = 0.342020 _______ visit utb.zoomshare.com to read my different stories that I have written. "If at first the idea is not absurd, there is no hope for it" -Albert Einstein --------------------------------- Never miss a thing. Make Yahoo your homepage. |
From: rodolfo d'E. <rod...@ho...> - 2008-01-18 10:56:17
|
Hi, This link is very nice: http://www.tetraedre.com/advanced/serial.php Enjoy Rodolfo d'Ettorre ps. It is 10:00pm, I am still awake ....... not for long. > Date: Fri, 18 Jan 2008 16:27:10 +0530 > From: pr...@pr... > To: its...@ya... > CC: dev...@li... > Subject: Re: [Dev-C++] Please help > > Abhijeet, > > Most people who respond to such requests would be asleep at this hour. I > suggest you hold your horses till tomorrow at least. > > Stating the obvious here, but doesn't Google throw up relevant links? Or > websites like CodeProject? > > Regards > .pranav > www.pranavnegandhi.com > > Abhijeet mishra wrote: >> Menbers please send some links or tell me where to find the informaiton >> regardig using the serial and the parport of the computer using devc++ >> so that i do not ask you for silly things please do it as soon as >> pssible..!!!! >> >> ------------------------------------------------------------------------ >> Now you can chat without downloading messenger. Click here >>=20 >> to know how. >> >> >> ------------------------------------------------------------------------ >> >> ------------------------------------------------------------------------= - >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> >> >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> Dev-cpp-users mailing list >> Dev...@li... >> TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm >> https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users _________________________________________________________________ Your Future Starts Here. Dream it? Then be it! Find it at www.seek.com.au http://a.ninemsn.com.au/b.aspx?URL=3Dhttps%3A%2F%2Ffanyv88.com%3A443%2Fhttp%2Fninemsn%2Eseek%2Ecom%2Eau= %2F%3Ftracking%3Dsk%3Ahet%3Ask%3Anine%3A0%3Ahot%3Atext&_t=3D764565661&_r=3D= OCT07_endtext_Future&_m=3DEXT= |
From: Pranav N. <pr...@pr...> - 2008-01-18 10:51:59
|
Abhijeet, Most people who respond to such requests would be asleep at this hour. I suggest you hold your horses till tomorrow at least. Stating the obvious here, but doesn't Google throw up relevant links? Or websites like CodeProject? Regards .pranav www.pranavnegandhi.com Abhijeet mishra wrote: > Menbers please send some links or tell me where to find the informaiton > regardig using the serial and the parport of the computer using devc++ > so that i do not ask you for silly things please do it as soon as > pssible..!!!! > > ------------------------------------------------------------------------ > Now you can chat without downloading messenger. Click here > <http://in.rd.yahoo.com/tagline_webmessenger_5/*http://in.messenger.yahoo.com/webmessengerpromo.php> > to know how. > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > > ------------------------------------------------------------------------ > > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users |
From: Abhijeet m. <its...@ya...> - 2008-01-18 10:04:48
|
Menbers please send some links or tell me where to find the informaiton regardig using the serial and the parport of the computer using devc++ so that i do not ask you for silly things please do it as soon as pssible..!!!! --------------------------------- Now you can chat without downloading messenger. Click here to know how. |
From: Abhijeet m. <its...@ya...> - 2008-01-18 08:58:22
|
Dear Members please forward soem links regarding the usage of serila and the parallel ports of the computer so that i Become self equipped and do not ask the mailing list for silly things..!!! --------------------------------- Save all your chat conversations. Find them online. |
From: Abhijeet m. <its...@ya...> - 2008-01-18 08:43:11
|
Dear Members, Please help me out how to use the serial and the parallel ports of the computer and if possible forward the link of the same to me Thanks in Advance --------------------------------- Bollywood, fun, friendship, sports and more. You name it, we have it. |
From: Jessica C. <jes...@gm...> - 2008-01-17 22:22:18
|
bitmap2.zip display a bitmap correctly. but opengl_win32.zip cannot display the same bitmap. why? how to correct it in opengl_win32.zip the link about this question is at: http://www.codeguru.com/forum/showthread.php?p=1674243#post1674243 anyone can help me? thanks. |
From: Jessica C. <jes...@gm...> - 2008-01-09 17:37:52
|
Ly8gY29kZSBmb3JtIGplc3NpY2ENCg0KI2luY2x1ZGUgPHdpbmRvd3MuaD4NCiNpbmNsdWRlIDxz dGRpby5oPg0KI2luY2x1ZGUgPHRjaGFyLmg+DQojZGVmaW5lIElEQ19DT01CT0JPWF9URVhUIDEw MDENCg0KDQpjb25zdCBjaGFyIENsYXNzTmFtZVtdID0gIk1haW5XaW5kb3dDbGFzcyI7DQpIV05E IGhXbmRDb21ib0JveDsNCmNoYXIgKnN0clNlcmlhbExpc3RbMjBdOyAgIC8vIDIwIHNlcmlhbCBj b20gcG9ydCBjYW4gYmUgYWNjZXB0ZWQuDQoNCmludCBFbnVtQ29tbU5hbWVzKHZvaWQpDQp7DQog ICAgaW50IG51bU9mQ29tbSA9IDA7DQoNCiAgICBMT05HIFN0YXR1czsNCiAgICANCiAgICBIS0VZ ICBoS2V5Ow0KICAgIERXT1JEIGR3SW5kZXggPSAwOw0KICAgIENIQVIgIE5hbWVbNDhdOw0KICAg IERXT1JEIHN6TmFtZTsNCiAgICBVQ0hBUiBQb3J0TmFtZVs0OF07DQogICAgRFdPUkQgc3pQb3J0 TmFtZTsNCiAgICBEV09SRCBUeXBlOw0KICAgIA0KICAgIGZvciAoaW50IHo9MDsgejw9MjA7IHor KykNCiAgICAgICAgc3RyU2VyaWFsTGlzdFt6XSA9IChjaGFyKiltYWxsb2MoMTI4KnNpemVvZihj aGFyKSk7DQoNCiAgICBpZiggUmVnT3BlbktleUV4KEhLRVlfTE9DQUxfTUFDSElORSwNCiAgICAg ICAgICAgICAgICAgICAgIFRFWFQoIkhBUkRXQVJFXFxERVZJQ0VNQVBcXFNFUklBTENPTU0iKSwN CiAgICAgICAgICAgICAgICAgICAgIDAsDQogICAgICAgICAgICAgICAgICAgICBLRVlfUkVBRCwN CiAgICAgICAgICAgICAgICAgICAgICZoS2V5KSAhPSBFUlJPUl9TVUNDRVNTKQ0KICAgIHJldHVy biAtMTsNCg0KICAgIGRvDQogICAgeyANCiAgICAgICBzek5hbWUgPSBzaXplb2YoTmFtZSk7DQog ICAgICAgc3pQb3J0TmFtZSA9IHNpemVvZihQb3J0TmFtZSk7ICAgICANCiAgICAgICANCiAgICAg ICBTdGF0dXMgPSBSZWdFbnVtVmFsdWUoaEtleSwgDQogICAgICAgICAgICAgICAgICAgICAgICAg ICAgIGR3SW5kZXgrKywgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgIE5hbWUsIA0KICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAmc3pOYW1lLCANCiAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgTlVMTCwgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICZUeXBlLA0KCSAg ICAgICAgICAgICAgICAgICAgICAgICBQb3J0TmFtZSwgDQogICAgICAgICAgICAgICAgICAgICAg ICAgICAgICZzelBvcnROYW1lKTsNCiAgICAgICANCiAgICAgICBpZigoU3RhdHVzID09IEVSUk9S X1NVQ0NFU1MpICkNCgkgICB7DQogICAgICAgICAgc3RyY3B5KHN0clNlcmlhbExpc3RbbnVtT2ZD b21tXSwoY2hhciopUG9ydE5hbWUpOw0KICAgICAgICAgIC8vc3RyU2VyaWFsTGlzdFtpXSA9IHN0 cmR1cCgoY2hhciopIFBvcnROYW1lKTsNCgkgICAgICBudW1PZkNvbW0rKzsNCgkgICB9DQogICAg fSB3aGlsZSgoU3RhdHVzID09IEVSUk9SX1NVQ0NFU1MpICk7DQogICAgDQogICAgUmVnQ2xvc2VL ZXkoaEtleSk7DQogICAgDQogICAgcmV0dXJuIG51bU9mQ29tbTsgICAgDQp9DQoNCg0KTFJFU1VM VCBDQUxMQkFDSyBXbmRQcm9jKCBIV05EICAgIGhXbmQsDQogICAgICAgICAgICAgICAgICAgICAg ICAgIFVJTlQgICAgTXNnLA0KICAgICAgICAgICAgICAgICAgICAgICAgICBXUEFSQU0gIHdQYXJh bSwgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgIExQQVJBTSAgbFBhcmFtICkN CnsNCiAgICBpbnQgbnVtT2ZDb21tOw0KDQogICAgc3dpdGNoIChNc2cpDQogICAgew0KICAgICAg ICBjYXNlIFdNX0NSRUFURToNCiAgICAgICAgew0KICAgICAgICAgICAgaFduZENvbWJvQm94ID0g Q3JlYXRlV2luZG93KA0KICAgICAgICAgICAgIkNPTUJPQk9YIiwgDQogICAgICAgICAgICBOVUxM LCANCiAgICAgICAgICAgIFdTX1ZJU0lCTEUgfCBXU19DSElMRCB8IENCU19EUk9QRE9XTiB8IENC U19TT1JULCANCiAgICAgICAgICAgIDEwLCANCiAgICAgICAgICAgIDEwLCANCiAgICAgICAgICAg IDEwMCwgDQogICAgICAgICAgICA4MDAsIA0KICAgICAgICAgICAgaFduZCwgDQogICAgICAgICAg ICAoSE1FTlUpSURDX0NPTUJPQk9YX1RFWFQsIA0KICAgICAgICAgICAgKEhJTlNUQU5DRSlHZXRX aW5kb3dMb25nKGhXbmQsIEdXTF9ISU5TVEFOQ0UpLCANCiAgICAgICAgICAgIE5VTEwpOw0KDQog ICAgICAgICAgICBpZiAoIWhXbmRDb21ib0JveCkNCiAgICAgICAgICAgICAgICBNZXNzYWdlQm94 KE5VTEwsICJDb21ib0JveCBGYWlsZWQuIiwgIkVycm9yIiwgTUJfT0sgfCBNQl9JQ09ORVJST1Ip Ow0KICAgICAgICAgICANCiAgICAgICAgICAgIGlmIChFbnVtQ29tbU5hbWVzKCkgIT0gLTEpDQog ICAgICAgICAgICAgICBudW1PZkNvbW0gPSBFbnVtQ29tbU5hbWVzKCk7ICAgICAgICAgICANCiAg ICAgICAgICAgIA0KICAgICAgICAgICAgZm9yIChpbnQgaj0wO2o8bnVtT2ZDb21tO2orKykNCiAg ICAgICAgICAgICAgU2VuZE1lc3NhZ2UoR2V0RGxnSXRlbShoV25kLCBJRENfQ09NQk9CT1hfVEVY VCksIA0KICAgICAgICAgICAgICAgICAgICAgICAgICBDQl9BRERTVFJJTkcsIA0KICAgICAgICAg ICAgICAgICAgICAgICAgICAwLCANCiAgICAgICAgICAgICAgICAgICAgICAgICAgKExQQVJBTSlz dHJTZXJpYWxMaXN0W2pdKTsNCg0KICAgICAgICB9DQogICAgICAgIGJyZWFrOyANCg0KICAgICAg ICBjYXNlIFdNX0NPTU1BTkQ6DQogICAgICAgICAgICAgew0KICAgICAgICAgICAgIGNoYXIgKnJl c3VsdDsNCiAgICAgICAgICAgICByZXN1bHQgPSAoY2hhciopbWFsbG9jKDEwMCpzaXplb2YoY2hh cikpOyANCiAgICAgICAgICAgICANCiAgICAgICAgICAgICBpbnQgY29tbVNlbGVjdGVkOw0KICAg ICAgICAgICAgIA0KLy8gICAgICAgICAgIGlmIChISVdPUkQod1BhcmFtKSA9PSBCTl9DTElDS0VE KSB7DQovLyAgICAgICAgICAgICAgICBTZW5kTWVzc2FnZShoV25kQ29tYm9Cb3gsIENCX1NIT1dE Uk9QRE9XTiwgKFdQQVJBTSkgVFJVRSwgMCk7DQovLyAgICAgICAgICAgfQ0KICAgICAgICAgICAg IA0KICAgICAgICAgICBpZiAoIEhJV09SRCh3UGFyYW0pID09IENCTl9TRUxDSEFOR0UpIHsgICAg ICAgICAgICAgICANCiAgICAgICAgICAgICAgICBjb21tU2VsZWN0ZWQgPSBTZW5kTWVzc2FnZSho V25kQ29tYm9Cb3gsIENCX0dFVENVUlNFTCwgMCwgMCk7DQogICAgICAgICAgICAgICAgcHJpbnRm KCIlZFxuIixjb21tU2VsZWN0ZWQpOw0KICAgICAgICAgICAgICAgIFNlbmRNZXNzYWdlKGhXbmRD b21ib0JveCxDQl9HRVRMQlRFWFQsIGNvbW1TZWxlY3RlZCwoTFBBUkFNKXJlc3VsdCk7IA0KICAg ICAgICAgICAgICAgIC8vTWVzc2FnZUJveChoV25kLHJlc3VsdCwiRXJyb3IiLDApOw0KICAgICAg ICAgICAgICAgIHByaW50ZigiJXNcbiIscmVzdWx0KTsNCi8vICAgICAgICAgICAgICAgIHByaW50 ZigiXG4gRVJST1JfRkFJTCA9ICVkIiwgRVJST1JfRkFJTCk7DQogICAgICAgICAgICAgICAgZnJl ZShyZXN1bHQpOw0KICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAvL1NldEZvY3Vz KGhXbmQpOw0KICAgICAgICAgICB9DQogICAgICAgIGJyZWFrOw0KICAgICAgICBjYXNlIFdNX0NM T1NFOg0KICAgICAgICAgICAgRGVzdHJveVdpbmRvdyhoV25kKTsNCiAgICAgICAgYnJlYWs7DQoN CiAgICAgICAgY2FzZSBXTV9ERVNUUk9ZOg0KICAgICAgICAgICAgUG9zdFF1aXRNZXNzYWdlKDAp Ow0KICAgICAgICBicmVhazsNCg0KICAgICAgICBkZWZhdWx0Og0KICAgICAgICAgICAgcmV0dXJu IChEZWZXaW5kb3dQcm9jKGhXbmQsIE1zZywgd1BhcmFtLCBsUGFyYW0pKTsNCiAgICB9DQoNCiAg ICByZXR1cm4gMDsNCn0NCg0KSU5UIFdJTkFQSSBXaW5NYWluKCBISU5TVEFOQ0UgIGhJbnN0YW5j ZSwNCiAgICAgICAgICAgICAgICAgICAgSElOU1RBTkNFICBoUHJldkluc3RhbmNlLA0KICAgICAg ICAgICAgICAgICAgICBMUFNUUiAgICAgIGxwQ21kTGluZSwNCiAgICAgICAgICAgICAgICAgICAg SU5UICAgICAgICBuQ21kU2hvdyApDQp7DQogICAgV05EQ0xBU1MgICAgd2M7DQoNCiAgICB3Yy5z dHlsZSAgICAgICAgICAgID0gMDsNCiAgICB3Yy5scGZuV25kUHJvYyAgICAgID0gKFdORFBST0Mp V25kUHJvYzsNCiAgICB3Yy5jYkNsc0V4dHJhICAgICAgID0gMDsNCiAgICB3Yy5jYlduZEV4dHJh ICAgICAgID0gMDsNCiAgICB3Yy5oSW5zdGFuY2UgICAgICAgID0gaEluc3RhbmNlOw0KICAgIHdj LmhJY29uICAgICAgICAgICAgPSBMb2FkSWNvbihoSW5zdGFuY2UsIElESV9BUFBMSUNBVElPTik7 DQogICAgd2MuaEN1cnNvciAgICAgICAgICA9IExvYWRDdXJzb3IoTlVMTCwgSURDX0FSUk9XKTsN CiAgICB3Yy5oYnJCYWNrZ3JvdW5kICAgID0gKEhCUlVTSCkoQ09MT1JfV0lORE9XICsgMSk7DQog ICAgd2MubHBzek1lbnVOYW1lICAgICA9IE5VTEw7DQogICAgd2MubHBzekNsYXNzTmFtZSAgICA9 IENsYXNzTmFtZTsNCg0KICAgIGlmICghUmVnaXN0ZXJDbGFzcygmd2MpKQ0KICAgIHsNCiAgICAg ICAgTWVzc2FnZUJveChOVUxMLCAiRmFpbGVkIFRvIFJlZ2lzdGVyIFRoZSBXaW5kb3cgQ2xhc3Mu IiwgIkVycm9yIiwgTUJfT0sgfCBNQl9JQ09ORVJST1IpOw0KICAgICAgICByZXR1cm4gMDsNCiAg ICB9DQoNCiAgICBIV05EICAgIGhXbmQ7DQoNCiAgICBoV25kID0gQ3JlYXRlV2luZG93RXgoDQog ICAgV1NfRVhfQ0xJRU5URURHRSwNCiAgICBDbGFzc05hbWUsDQogICAgIkNvbWJvIEJveGVzIiwN CiAgICBXU19PVkVSTEFQUEVEV0lORE9XLA0KICAgIENXX1VTRURFRkFVTFQsDQogICAgQ1dfVVNF REVGQVVMVCwNCiAgICAyNDAsDQogICAgMTIwLA0KICAgIE5VTEwsDQogICAgTlVMTCwNCiAgICBo SW5zdGFuY2UsDQogICAgTlVMTCk7DQoNCiAgICBpZiAoIWhXbmQpDQogICAgew0KICAgICAgICBN ZXNzYWdlQm94KE5VTEwsICJXaW5kb3cgQ3JlYXRpb24gRmFpbGVkLiIsICJFcnJvciIsIE1CX09L IHwgTUJfSUNPTkVSUk9SKTsNCiAgICAgICAgcmV0dXJuIDA7DQogICAgfQ0KDQogICAgU2hvd1dp bmRvdyhoV25kLCBTV19TSE9XKTsNCiAgICBVcGRhdGVXaW5kb3coaFduZCk7DQoNCiAgICBNU0cg ICAgTXNnOw0KDQogICAgd2hpbGUgKEdldE1lc3NhZ2UoJk1zZywgTlVMTCwgMCwgMCkpDQogICAg ew0KICAgICAgICBUcmFuc2xhdGVNZXNzYWdlKCZNc2cpOw0KICAgICAgICBEaXNwYXRjaE1lc3Nh Z2UoJk1zZyk7DQogICAgfQ0KDQogICAgcmV0dXJuIE1zZy53UGFyYW07DQp9DQo= |
From: Szentpali J. <ia...@ea...> - 2008-01-07 22:24:31
|
Wobien írta: > &ulRandomNum is the adress of ulRandomNum (You don't give us the > definition of it, so don't know what it is) > (char *) is a cast. It makes the adress of ulRandomNum be read as a > char array. So ((char *) &ulRandomNum) [nIndex] > will give you a byte of the binary code of ulRandomNum. > Wobien > > ----- Original Message ----- From: "Szentpali Janos" <ia...@ea...> > To: <dev...@li...> > Sent: Monday, January 07, 2008 6:32 PM > Subject: [Dev-C++] Translation > > > Hi, > > I am very new to C++. I only did VB programming... mostly. I am having > some trouble with some C++ code. Could someone help me understand what > the following means: > > --- start --- > > typedef DWORD(*FUNCPTR)(BYTE); > > DWORD ulWorkRandomNum; > char *arr; > int nIndex; > > ... > > arr [2 * nIndex] = 'A' + (((char *) &ulRandomNum) [nIndex] & 0x0f); > > --- end --- > > I am having trouble with "translating" (understanding) the > > ((char *) &ulRandomNum) [nIndex] > > part. I mean [nIndex] referes to the elemnt of which array :O > Thanks very much! I knew about the cast and about the address operator, but it somehow seamed strange to cut a pointer in pieces :O. I thought that was the case, but I wasn't sure and I needed assurance :D. Anyway the variable who's address you were talking about is just a DWORD: DWORD ulRandomNum; Sorry I forgot to put it in the sample. -- Szentpáli János |
From: Wobien <roo...@pl...> - 2008-01-07 22:06:59
|
&ulRandomNum is the adress of ulRandomNum (You don't give us the definition of it, so don't know what it is) (char *) is a cast. It makes the adress of ulRandomNum be read as a char array. So ((char *) &ulRandomNum) [nIndex] will give you a byte of the binary code of ulRandomNum. Wobien ----- Original Message ----- From: "Szentpali Janos" <ia...@ea...> To: <dev...@li...> Sent: Monday, January 07, 2008 6:32 PM Subject: [Dev-C++] Translation Hi, I am very new to C++. I only did VB programming... mostly. I am having some trouble with some C++ code. Could someone help me understand what the following means: --- start --- typedef DWORD(*FUNCPTR)(BYTE); DWORD ulWorkRandomNum; char *arr; int nIndex; ... arr [2 * nIndex] = 'A' + (((char *) &ulRandomNum) [nIndex] & 0x0f); --- end --- I am having trouble with "translating" (understanding) the ((char *) &ulRandomNum) [nIndex] part. I mean [nIndex] referes to the elemnt of which array :O -- Szentpáli János ------------------------------------------------------------------------- Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace _______________________________________________ Dev-cpp-users mailing list Dev...@li... TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm https://lists.sourceforge.net/lists/listinfo/dev-cpp-users |
From: Szentpali J. <ia...@ea...> - 2008-01-07 17:32:15
|
Hi, I am very new to C++. I only did VB programming... mostly. I am having some trouble with some C++ code. Could someone help me understand what the following means: --- start --- typedef DWORD(*FUNCPTR)(BYTE); DWORD ulWorkRandomNum; char *arr; int nIndex; ... arr [2 * nIndex] = 'A' + (((char *) &ulRandomNum) [nIndex] & 0x0f); --- end --- I am having trouble with "translating" (understanding) the ((char *) &ulRandomNum) [nIndex] part. I mean [nIndex] referes to the elemnt of which array :O -- Szentpáli János |
From: shan c. <sha...@ya...> - 2008-01-04 18:06:40
|
Just try this : http://www.uniqueness-template.com/devcpp/ I dont think there will be any prob. anirudh kala <ani...@ya...> wrote: hi there i am a newbie to the world of dev c++. i have thoroughly gone through turbo c and c++ and java programming ,but have absolutely no idea of dev other than the fact that the compiler probably is mingw . I am little confused abt where to start from because i have no study material at all. can any body please help me with this!!!!!!! thanks Anirudh Kala --------------------------------- 5, 50, 500, 5000 - Store N number of mails in your inbox. Click here.------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/_______________________________________________ Dev-cpp-users mailing list Dev...@li... TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm https://lists.sourceforge.net/lists/listinfo/dev-cpp-users hey man go rocking --------------------------------- Now you can chat without downloading messenger. Click here to know how. |
From: anirudh k. <ani...@ya...> - 2008-01-03 17:30:10
|
hi there i am a newbie to the world of dev c++. i have thoroughly gone through turbo c and c++ and java programming ,but have absolutely no idea of dev other than the fact that the compiler probably is mingw . I am little confused abt where to start from because i have no study material at all. can any body please help me with this!!!!!!! thanks Anirudh Kala --------------------------------- 5, 50, 500, 5000 - Store N number of mails in your inbox. Click here. |
From: Benson M. <ben...@gm...> - 2008-01-03 17:20:18
|
Thank you Per for your reply... The image is in PGI (portable Greymap Image) and I am stuck in converting the image to a 2D array inorder to do the various needed manipulations. Kind Regards Benson. On 22/12/2007, Per Westermark <pw...@ia...> wrote: > > Too little information given! > > If the image is in any known image format (GIF, JPEG, TIFF, PCX, BMP, ...) > then you need to locate a graphics library that contains code to read that > format. > > If the data is in a raw binary file or stored as ASCII, then you have to > write your own code. > > There is no way anyone can help you, if you don't take your time and > clearly specify your problem! > > /pwm > > On Sat, 22 Dec 2007, Benson Mwangi wrote: > > > Hello Everyone, > > > > Is anyone aware of how to read a greyscale image and convert it into a > 2D > > array of 256 by 256 in C++. > > > > I would appreciate your contribution on this. > > > > Kind regards > > Benson. > > > > |
From: Brian W. <bri...@gm...> - 2008-01-03 13:37:55
|
I actually figured it out last night. Used a while loop with a flag that was set pos/neg depending on whether it found a duplicate and a for loop inside to read through the array. I knew about using break for switch, but didn't realize it could be used for while loops. Thanks! On Jan 3, 2008 8:26 AM, Wobien Doyer <wo...@pl...> wrote: > Look here http://www.cppreference.com/keywords/break.html (for instance). > > > ----- Original Message ----- > From: "Brian Weeden" <bri...@gm...> > To: "cpp" <dev...@li...> > Sent: Tuesday, January 01, 2008 11:20 PM > Subject: [Dev-C++] Searching and adding items to an array > > > >I am writing a piece of code that is calculating values. That part is > > done and works. The problem is that as the code goes through the > > process it will generate duplicate answers. I want to filter those > > out and end up with just the solutions that are unique at the end of > > the whole process. > > > > What I was thinking of doing was writing the first solution to an > > array. Then with each additional solution a loop would read through > > the array checking to see if the new solution matches any of the > > existing solutions. If yes, exit. If no, it continues reading. When > > it reaches the end it would write the new solution to the end of the > > array since it didn't find a match. > > > > I am having trouble diagramming the logic flow and writing out the > > algorithm. I know I will need to keep one int counter of how many > > items are in the array and another for the loop counter that will get > > initialized to zero and iterated each time the loop is called. I'm > > not sure how to write the loop exit for a duplicate. > > > > Any help would be appreciated. Thanks! > > > > > > -- > > Brian Weeden > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2005. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > > Dev-cpp-users mailing list > > Dev...@li... > > TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm > > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > -- Brian Weeden |
From: Brian W. <bri...@gm...> - 2008-01-01 22:20:39
|
I am writing a piece of code that is calculating values. That part is done and works. The problem is that as the code goes through the process it will generate duplicate answers. I want to filter those out and end up with just the solutions that are unique at the end of the whole process. What I was thinking of doing was writing the first solution to an array. Then with each additional solution a loop would read through the array checking to see if the new solution matches any of the existing solutions. If yes, exit. If no, it continues reading. When it reaches the end it would write the new solution to the end of the array since it didn't find a match. I am having trouble diagramming the logic flow and writing out the algorithm. I know I will need to keep one int counter of how many items are in the array and another for the loop counter that will get initialized to zero and iterated each time the loop is called. I'm not sure how to write the loop exit for a duplicate. Any help would be appreciated. Thanks! -- Brian Weeden |
From: Per W. <pw...@ia...> - 2008-01-01 17:48:22
|
Does your "little program" happen to be a school assignment? /pwm On Tue, 1 Jan 2008, Sam Mryyan wrote: > Hi everyone: > I am working on developing a small program would like someone to help me with it. I am willing to pay!! If you are interested please email me. |
From: Per W. <pw...@ia...> - 2008-01-01 17:47:21
|
Look at wxWidgets for a nice framework for developing GUI-based applications. For developing/debugging your applications, I would recommend that you either switch from Dev-C++ to Code::Blocks or downloads a free-standing debugger. The debugger in Dev-C++ is a bit lacking :( Check out the MinGW site for a graphical debugger. /pwm On Tue, 1 Jan 2008, Brian Weeden wrote: > Hi everyone. I'm a new subscriber and wanted to ask a general > question. I learned basic C programming back in college about 10 > years ago and have written a dozen or so simple programs. But it was > only a 1 semester course and only covered DOS. I never learned how to > write programs that run under windows and that use GUIs. What are > some good references that I can use to bring my knowledge into the > modern era? > > I'm not looking to do anything major, most of what I write is orbital > mechanics software working numbers and calculations. Really the only > graphical output I would need is plotting functions and some decent > dialog boxes and lists to arrange and enter data. > > Also, are there any FAQs or guides that can show how to use watch > variables and the debugging tools in Dev-cpp? I was messing around > with them in my current code and tried setting a watch variable but it > didn't show up in the left column and I'm not sure what I did wrong. > > Thanks! > > -- > Brian Weeden > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > |
From: Sam M. <s_m...@ya...> - 2008-01-01 15:57:00
|
Hi everyone: I am working on developing a small program would like someone to help me with it. I am willing to pay!! If you are interested please email me. |
From: Brian W. <bri...@gm...> - 2008-01-01 15:03:59
|
Hi everyone. I'm a new subscriber and wanted to ask a general question. I learned basic C programming back in college about 10 years ago and have written a dozen or so simple programs. But it was only a 1 semester course and only covered DOS. I never learned how to write programs that run under windows and that use GUIs. What are some good references that I can use to bring my knowledge into the modern era? I'm not looking to do anything major, most of what I write is orbital mechanics software working numbers and calculations. Really the only graphical output I would need is plotting functions and some decent dialog boxes and lists to arrange and enter data. Also, are there any FAQs or guides that can show how to use watch variables and the debugging tools in Dev-cpp? I was messing around with them in my current code and tried setting a watch variable but it didn't show up in the left column and I'm not sure what I did wrong. Thanks! -- Brian Weeden |
From: <ta...@fe...> - 2007-12-26 14:30:45
|
------------------------------------------------------------------------ ------------------------ (Apologies for cross-posting) EUROMEDIA 2008, APRIL 9-11, 2008, FEUP-UNIVERSITY OF PORTO, PORTUGAL http://www.eurosis.org/cms/?q=3Dtaxonomy/term/100 We would appreciate if you could distribute this information by your colleagues and co-workers. ------------------------------------------------------------------------ ------------------------ 2ND Call for Papers EUROMEDIA 2008 14TH ANNUAL MULTIMEDIA CONFERENCE WEBSITE http://www.eurosis.org/cms/?q=3Dtaxonomy/term/100 UNIVERSITY OF PORTO PORTUGAL APRIL 9-11, 2008 Organized by ETI Sponsored by EUROSIS Delft University of Technology Belgacom TTVI Ghent University DG-INFSO Dear Colleague, this is a reminder that the abstract submission deadline for EUROMEDIA 2008 is next January 20. As a reminder also please find enclosed the list of the conference topics: [] WEBTEC * Internet Viewers and Programs * Visual Programming Languages * 3D Web Programs * Video and Audio Streaming on the Web * AI on the Web * Software for Web-based Business Applications [] MEDIATEC * Multimedia Techniques and Telecom * Multimedia Authoring Tools and Software * Multimedia Building Blocks [] COMTEC * Telecommunications Technologies * Networks * Network Security * Mobile Communications * TV Technology * QoS [] APTEC * Telematics Consumer Applications * Cooperative Consumer Application * Tele-Education * Integrated Enterprise Software and Groupware * Telemedicine * Ubiquitous Computing Applications * Embedded Systems and Future Product Market Combinations * Multimodal communication [] ETEC * Tele-X and E-Commerce * Knowledge Management and E-Mobility Special Tracks: [] Knowledge Management and e-Mobility [] In-Car Applications [] Facial Recognition or Non Verbal Communication [] Virtual Reality 2.0 Applications Special Workshops: [] Medical Imaging Systems In recent years, extensive research has been performed to develop more and more efficient and powerful medical imaging systems. Such systems are crucial for medical specialists, allowing a deeper analysis and to understand what is going inside the human body, and therefore they play an essential role for adequate medical diagnosis and treatments. To accomplish efficient and powerful medical imaging systems, many research works have being done in many domains, like the ones related with medical image devices, signal processing, image processing and analysis, biomechanical simulation and data visualization. The main goal of the Workshop =93Medical Imaging Systems=94 is to bring together researchers involved in the related domains, in order to set the major lines of development for the near future. Therefore, the proposed Workshop will consist of researchers representing various fields related to Medical Devices, Signal Processing, Computational Vision, Computer Graphics, Computational Mechanics, Scientific Visualization, Mathematics and Medical Imaging. The Workshop endeavors to contribute to obtain better solutions for more efficient and powerful medical imaging systems, and attempts to establish a bridge between clinicians and researchers from these diverse fields. The proposed Workshop will cover topics related with medical imaging systems, such as: =95 image acquisition =95 signal processing =95 image processing and analysis =95 modelling and simulation =95 computer aided diagnosis =95 surgery, therapy, and treatment =95 computational bioimaging and visualization =95 software development = =95 virtual reality =95 telemedicine systems and their applications=20 [] D-TV Scope: In contrast to traditional TV DTV is a telecommunication system for broadcasting and receiving moving pictures and sound by means of digital signals. It uses digitally compressed modulation data, which requires decoding by a specially designed television set or a standard receiver (set-top box) as well as via PC-TV based on ADLS (VDSL). Digital Television has several advantages regarding technically as well as content and programme related aspects. One of the most significant is the use of a smaller channel bandwidth. This frees up space for more digital channels, other non-television services such as pay-multimedia services and the generation of new revenue models based on interactive advertisement and marketing features. Furthermore there are special services such as multicasting (more than one programme on the same channel), electronic programme guides and interactivity providing a wider range of application. Accordingly within the last year a growing up of specialised digital TV channels (Special Interest Channels) has to be observed European wide. This new growing up stream is mainly characterised by the phenomena of merging television (TV) and information technology (IT) know how, methods and techniques. In this context the workshop targets to show up the development in both directions: the technically aspects as well as the content and programme issues. It provides a presentation and discussion platform for exchanging experiences made within the establishment as well as the maintenance of digital special interest channels. Main focus will be to point out the interdependencies and the mutual influences of technically streams and content respectively service related issues. Topics: * Broadband Television * Interactive Television * IPTV - Web-TV * DVB-H, DVB-T, DVB-S, DVB-C * MHP & Interactive Television * Set-Top-Boxes * Full Digital Production Chain Management * Digital-Video-Journalism * DMB (Digital Multimedia Broadcasting) * FreeTV & PayTV * Interactive Video * Interactive Advertising Formats * Event Oriented Interview Formats * Event Driven Program Schemes & Formats * Mobile Content * Cross-Format Content & Knowledge Pooling * Cross-Media Content Production & Distribution * Indexing and Retrieval of Digital Content * Semantically Enrichment of Digital Content * Security & Digital Rights Management (DRM) * Watermarking & Copyrights & Protection * Cross-platform productions on TV Media-Convergence * Peer-to-peer Grid TV Applications For more information on the workshops see: http://www.eurosis.org/cms/index.php?q=3Dnode/476 Conference Committee General Conference Chair Jo=E3o Manuel R. S. Tavares, FEUP, University of Porto, Porto, Portugal Renato Natal Jorge, FEUP, University of Porto, Porto, Portugal WEBTEC Programme Committee Sameh Abdel-Naby, University of Trento, Trento, Italy Dr. Paul Dowland, University of Plymouth, Plymouth, United Kingdom Dipl.-Inf. Steffen Harneit, CUTEC-Institute GmbH, Clausthal-Zellerfeld, Germany Ass. Prof. Qingping Lin, Nanyang Technological University, Singapore Prof. Dr. J=F6rn Loviscach, Hochschule Bremen, University of Applied Sciences, Bremen, Germany Assoc. Prof. Wenji Mao, Institute of Automation, Chinese Academy of Sciences, Beijing, P.R. China Lorenzo Motta, Ansaldo Segnalamento Ferroviaro s.p.a. Genova, Italy Dr. H. Joachim Nern, Aspasia Knowledge Systems, Dusseldorf, Germany Dr. Carlos E. Palau, Universidad Politecnica de Valencia, Valencia, Spain Prof. Paola Salomoni, Universita di Bologna, Bologna, Italy Dr. Elpida Tzafestas, National Technical University of Athens, Athens, Greece Dr. Matthew Warren, Deakin University Geelong, Victoria, Australia MEDIATEC Programme Committee Assoc. Prof. Vincent Charvillat, IRIT-ENSEEIHT, Toulouse cedex, France Dr. Fernando Boronat Segui, Universidad Politecnica de Valencia, Gran de Gandia, Spain Ignazio Infantino, ICAR-CNR, Palermo (PA), Italy PhD. Jens Mueller-Iden, University of M=FCnster, M=FCnster, Germany Dr. Ana = Pajares, Universidad Politecnica de Valencia, Valencia, Spain Jehan Francois Paris, University of Houston, Houston, USA Prof. Marco Roccetti, Universita' di Bologna, Bologna, Italy Dr. Leon Rothkrantz, Delft University of Technology, Delft, The Netherlands Dr. Leonid Smalov, Coventry University, Coventry, United Kingdom Prof. Rik Van de Walle, Ghent University, Ghent, Belgium COMTEC Programme Committee Prof. Dr. Marwan Al-Akaidi, De Montfort University, Leicester, United Kingdom Boguslaw Butrylo, Bialystok Technical University, Bialystok, Poland Dr. Nathan Clarke, University of Plymouth, Plymouth, United Kingdom Dr. Steven Furnell, University of Plymouth, Plymouth, United Kingdom Prof. Chris Guy, The University of Reading, Reading, United Kingdom PhD Mohammad Riaz Moghal, Ali Ahmad Shah-University College of Engineering and Technology, Mirpur, Pakistan PhD Roberto Montemanni, IDSIA, Manno-Lugano, Switzerland Maria Papadaki, University of Plymouth, Plymouth, United Kingdom Ph. D. Oryal Tanir, Bell Canada, Montreal, Canada Ass. Prof. Vassilis Triantafillou, ?echnological Educational Institution of Messolonghi Applied, Greece APTEC Programme Committee Prof. Dr. J. Broeckhove, RUCA-UA, Antwerp, Belgium Dr. Juan Carlos Guerri Cebollada, Universidad Politecnica de Valencia, Valencia, Spain Hatice Gunes, University of Technology, Sydney (UTS), NSW Australia Carsten Magerkurth, SAP RESEARCH, St. Gallen, Switzerland Dr.ir. Johan Opsommer, Belgacom - BUS, Brussels, Belgium Prof. Matthias Rauterberg, Eindhoven University of Technology, Eindhoven, The Netherlands. Francisco Reinaldo, FEUP, University of Porto, Porto, Portugal Zasriati Azla Sabot, University College Jubail, Jubail Industrial City, Saudi Arabia Prof. Jeanne Schreurs. Hasselt University, Diepenbeek, Belgium Ass. Prof. Ramiro Vel=E1zquez, Universidad Panamericana, Aguascalientes, Mexico Dr. Charles van der Mast, Delft University of Technology, Delft, The Netherlands E-TEC Programme Committee Dr.Steven Furnell, University of Plymouth, Plymouth, United Kingdom Dr. Paul Dowland, University of Plymouth, Plymouth, United Kingdom Knowledge Management and E-Mobility Prof. Ricardo Chalmeta, Universidad Jaume I, Castellon, Spain Prof. Dr.-Ing. Stephan Kassel, University of Applied Sciences Zwickau, Germany Workshops Medical Imaging Systems General Chair Jo=E3o Manuel R. S. Tavares, FEUP, University of Porto, Porto, Portugal General Co-Chair Renato Natal Jorge, FEUP, University of Porto, Porto, Portugal International Programme Committee Alberto De Santis, Universit=E0 degli Studi di Roma "La Sapienza", Italy Arrate Mu=F1oz Barrutia, University of Navarra, Spain Behnam Heidari, University College Dublin, Ireland Bernard Gosselin, Faculte Polytechnique de Mons, Belgium Chandrajit Bajaj, University of Texas, USA Christos E. Constantinou, Stanford University School of Medicine, USA Daniela Iacoviello, Universit=E0 degli Studi di Roma "La Sapienza", Italy Dinggang Shen, University of Pennsylvania, USA Djemel Ziou, University of Sherbrooke, Canada Gerald Schaefer Aston University, United Kingdom Jo=E3o Krug Noronha, Dr. Krug Noronha Clinic, Portugal = Jo=E3o Manuel R. S. Tavares, Faculty of Engineering of University of Porto, Portugal Jo=E3o Paulo Costeira, Instituto Superior T=E9cnico, Portugal = Jorge M. G. Barbosa, Faculty of Engineering of University of Porto, Portugal Lyuba Alboul, Sheffield Hallam University, United Kingdom Manuel Gonz=E1lez Hidalgo, Balearic Islands University, Spain Maria Elizete Kunkel, Universit=E4t Ulm, Germany M=E1rio Forjaz Secca, Universidade = Nova de Lisboa, Portugal Miguel Angel L=F3pez, Faculty University of Ciego de Avila, Cuba Miguel Velhote Correia, Faculty of Engineering of University of Porto, Portugal Patrick Dubois, Institut de Technologie M=E9dicale, France Reneta Barneva, State University of New York, USA Renato M. Natal Jorge, Faculty of Engineering of University of Porto, Portugal Sabina Tangaro, University of Bari, Italy Valentin Brimkov, State University of New York, USA Yongjie Zhan, Carnegie Mellon University, USA D-TV Workshop Dr. Hans-Joachim Nern, TTVI, Germany CORRESPONDENCE ADDRESS Philippe Geril Ghent University Faculty of Engineering Dept. of Industrial Management Technologiepark 803 B-9062 Ghent-Zwijnaarde, Belgium Tel: +32 9 2645509 Fax: + 32 9 2645824 Email: phi...@eu...=20 -- Philippe Geril Tel: +32.9.264.55.09 EUROSIS -ETI Fax: +32.9.264.58.25 Ghent University E-mail: phi...@eu... Dept.of Industrial Mgmt. E-mail: pg...@ya... Technologiepark 903 URL: http://www.eurosis.org Campus Ardoyen B-9052 Ghent-Zwijnaarde Belgium ********************************************************************* * Your Scientific information site on * * Computer Simulation - Concurrent Engineering - Multimedia- Games * * WWW.EUROSIS.ORG * ********************************************************************* |
From: <and...@su...> - 2007-12-24 14:53:24
|
Dear Users, Happy Cristmas and Happy 2008 for all of you. Thank you for the unconstrained help! Regards Andre Barros No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.516 / Virus Database: 269.17.7/1194 - Release Date: 23/12/2007 17:27 |
From: angel d. <sci...@ho...> - 2007-12-23 05:19:57
|
I already got the answer to the message question. thanks to you all. _________________________________________________________________ Share life as it happens with the new Windows Live. http://www.windowslive.com/share.html?ocid=3DTXT_TAGHM_Wave2_sharelife_1220= 07= |
From: metty <mts...@ya...> - 2007-12-22 20:10:29
|
Hi All, If there are some unallocated memory that are heap allocated by a DLL, are these released automatically when the DLL is detached from the calling process or do they remain in the heap as long as the application calling the DLL is running? I have the same question regarding global variables declared and used in a DLL. I have a confusion in this area and I appreciate any helpful reply. Thank you in advance! Best regards, Metty ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ |