How to change personal info?
C/C++ Programming
Hello Guest
  
  • Login
• Register…
• Start blog
  • Кто, Где, Когда
• Что тут делать?
• Сообщества
  • Опросы
• Аватары
• Интересы
  • Cities and Countries
• Random blog
• Users search
  • Дуэли
• Желания
• Ссылки
  • Search
• Games
• Tests
• QAIX
  • Трансляции
• Talxy Chat
• Horoscope
• Online
 
Register!

QAIX > C/C++ ProgrammingGo to page: « previous | 1 | 2 | 3 | 4 | next »

  Top users: 
  Рейтинг сообществ: 
  Advertising:
  Recent blog posts: 
  They have birthday today: 
  Forums:   
  Discuss: 
  Recent forum topics: 
  Recent forum comments:
  Модератор:
четверг, 8 мая 2008 г.
Hi,Am also in the same page where you were on that... Guest 12:24:27
 Hi,

Am also in the same page where you were on that time.

Please reply me if you have a solution on this. Now am in need of porting the BCW project to Cbuilder 6. Reply ASAP

My project consisting of OWL and Classlibs.

My Mail: vijayskr@gmail.com


Thanks
Vijayasankar
comment 1 answer | Add comment
вторник, 15 апреля 2008 г.
I got the same problem!any news on a solution?best... Guest 10:59:23
 I got the same problem!

any news on a solution?

best regards,
Dave
comment 3 answer | Add comment
четверг, 21 февраля 2008 г.
I have same problem; Set Pre-compiled headers to none. Guest 11:21:49
 I have same problem;
Set Pre-compiled headers to none.
Add comment
понедельник, 19 ноября 2007 г.
I need too.... Guest 09:55:52
 I need too....
comment 1 answer | Add comment
вторник, 13 ноября 2007 г.
share probalm Guest 06:32:07
 hi friends,
if you have any problam in c/c++.you can ask and share your problam me in mannewar_pankaj@yah­oo.co.in.
pankaj
Add comment
понедельник, 17 сентября 2007 г.
Thanks Nico. Guess it's been a while. Learnt a lot since... Guest 08:47:50
 Thanks Nico. Guess it's been a while. Learnt a lot since then.
Add comment
вторник, 31 июля 2007 г.
i need help to make this program.. Guest 14:35:16
 Im a SecOnd year college student taking up Information technology course.. and Computer programming is one of my major subjects.. but yet im not that good in turbo c++.. can you help me with my problem.. i have to program functions that wil display stacking and popping of boxes and the going up and down of the numbers inside those boxes..
Add comment
вторник, 8 мая 2007 г.
Conflicting declarations of "clear" and "erase" -- old... Guest 19:50:09
 Conflicting declarations of "clear" and "erase" -- old versions of PDCurses make them macros. Get the latest version; it has eliminated them in 3.0+.
comment 2 answer | Add comment
четверг, 3 мая 2007 г.
help Guest 20:37:12
 how to make header file?
comment 1 answer | Add comment
среда, 2 мая 2007 г.
help Guest 14:51:02
 how I can use the option Lower/Upper on my find dialog
thank you and sorry for my bad english
Add comment
четверг, 22 марта 2007 г.
Countdown Sandberg 10:07:05
 Hi guys - I am trying to create a countdown by seconds. I understand loops, and printing values and all that but how do you make the computer do an operation only once every second? Thanks - Dan
comment 2 answer | Add comment
четверг, 8 марта 2007 г.
Mr. Fire, Get you basics done before wasting others time... Guest 10:20:07
 
Mr. Fire, Get you basics done before wasting others time with scrap.

comment 4 answer | Add comment
вторник, 13 февраля 2007 г.
... Guest 13:20:25
 http://www.pcports.r­u/Articles.php
Add comment
you are an idiot :-$ Guest 03:00:59
 you are an idiot :-$­
Add comment
понедельник, 12 февраля 2007 г.
--mne 16, na saite kucha otkrovennih fragmentov iz filmov... Guest 14:24:10
 http://www.LOLITA.ki­ev.ua --mne 16, na saite kucha otkrovennih fragmentov iz filmov s moim uchastiem, jelaushie smogut ocenit i priobresti polnii versii
comment 1 answer | Add comment
суббота, 20 января 2007 г.
search engine Guest 18:15:56
 can anyone suggest on how to go about developing a search engine which is lan based. which prog language would be better c/c++ or JAVA. what else one needs to study.
Add comment
четверг, 7 декабря 2006 г.
#include void poscurs( int row, int col ) { union... Guest 20:54:22
 #include <dos.h>
void poscurs( int row, int col ) {
union REGS regs;
regs.h.ah=0x02;
regs.x.bx=0;
regs.h.dh=row;
regs.h.dl=col;
int86(0x10,&regs,&r­egs);
}
int readch( void ) {
union REGS regs;
regs.h.ah=0x08;
regs.x.bx=0;
int86(0x10,&regs,&r­egs);
return (regs.h.al);
}
int readattr( void ) {
union REGS regs;
regs.h.ah=0x08;
regs.x.bx=0;
int86(0x10,&regs,&r­egs);
return (regs.h.ah);
}

i hope that this helps.
Marc
crayzehorse@yahoo.c­om
Add comment
пятница, 17 ноября 2006 г.
hi how r u doin Guest 22:01:14
 hi how r u doin
comment 5 answers | Add comment
вторник, 14 ноября 2006 г.
Here's a recursive function for integers./* Power64()... Guest 20:44:28
 Here's a recursive function for integers.


/* Power64() - Raise X to the Nth power. Recursive multiplication.
* N must be non-negative. If not, N is treated as zero.
*/
long long Power64 ( long long X, int N )
{
if ( N <= 0 )
return ( 1LL );
else
return ( X * Power64 ( X, N - 1 ));

} /* Power64() */
Add comment
понедельник, 23 октября 2006 г.
>pls answer by given codes to connect c++ with ms access. Guest 21:06:55
 
pls answer by given codes to connect c++ with ms access.
comment 1 answer | Add comment
среда, 11 октября 2006 г.
Amazing man, solved my life! Thanks a lot!!!Eze. Guest 21:01:32
 Amazing man, solved my life! Thanks a lot!!!
Eze.
Add comment
пятница, 21 июля 2006 г.
what is this crap? I get these emails too, what's the point... Guest 03:37:59
 what is this crap? I get these emails too, what's the point exactly?
Add comment
суббота, 1 июля 2006 г.
Good News:XD++ MFC Library Standard Edition V8.20 is released (100% Source Code)! Guest 18:36:34
 XD++ MFC Library Standard Edition V8.20 is released (100% Source Code)!
-------------------­--------------------­--------------------­--------------------­-
June 26, 2006
For more information (press only) please contact:
Paul Chi
UCanCode Software, Inc.
Phone: (86) 755-26737501
Fax: (86) 755-26737615
June 26, 2006,HongKong, UCanCode Software announces it's market leading flow/diagram C++ source code kit - XD++ Standard Edition V8.20 with VS 2005 support among latest updates.
HongKong, June 26, 2006--UCanCode Software, Inc. announced the release of XD++ Standard Edition V8.20, its world-leading line of Flow/Diagram components for Microsoft Visual Studio .NET developers. Version 8.20 introduces new features across XD++'s full range of products and includes enhancements to the suite's Visual Studio 2005 support. Now it contains tons of new features, this includes workflow diagram, Print Preview, Ruler Control, card/label print solution, and graph layout solution, etc.
XD++ MFC Library Standard Edition is the world's leading MFC/C++ visualization component. Renowned for incredibly rich graphics, XD++ helps developers build applications that offer unparalleled functionality. Outstanding productivity lowers project risk and reduces maintenance headaches. With 9 years of dedicated research and development, UCanCode leads the market for visualization technologies, providing outstanding customer support. With XD++ Standard you can easily build Visio 2003 like applications with a very low cost.
[img]http://www.ucancode­.net/xtdscreen3.gif[/img]
"We are very excited about the release of XD++ Standard Edition for VS.NET," says Steven Chan, CEO of UCanCode Software. "Customers have been long waiting for this powerful release, it contains tons of new features, and it will save you many months of time to build any kind of Flow/Diagram based application"
"To date, the reliability and performance of the XD++ Library have been tested through many kinds of diagramming/flowcha­rt- related software of ucancode customers around the World. The XD++ Library now is used in over 40 countries!"
Additional details about XD++ Standard Edition V8.20 are available at
http://www.ucancode­.net/Products/Form2/­feature.htm
Please contact sales for more information: sales@ucancode.net
To order: http://www.ucancode­.net/Order/order.htm­
More information at http://www.ucancode­.net
Details available about each product are available at
http://www.ucancode­.net/Products/index.­htm.
About ucancode software, Inc.
We are UCanCode.Net Software, Inc., a software development company. We have been in business 9 years developing C++ libraries.UCanCode.­Net Software develops high quality software solutions that provide software developers with the most up to date tools available today. All source code is supplied and is 100% MFC compatible and extendable. Developers can easily create authentic Microsoft Visio, Adobe Illustrator, and CorelDRAW style applications within seconds. UCanCode Software can be reached at (86) 755-26737501 or by visiting their website at http://www.ucancode­.net
Add comment
пятница, 30 июня 2006 г.
hi everybodyMy problem is relatd with Knight's Tour... Guest 12:45:19
 hi everybody
My problem is relatd with Knight's Tour problem. Can anybody please send me> the code of Knights Tour that> Knight goes to each square only once.
Add comment

Add new topic:

How:  Register )
 
Login:   Password:   
Comments by: Premoderation:
Topic:
  
 
Пожалуйста, относитесь к собеседникам уважительно, не используйте нецензурные слова, не злоупотребляйте заглавными буквами, не публикуйте рекламу и объявления о купле/продаже, а также материалы нарушающие сетевой этикет или законы РФ. Ваш ip-адрес записывается.


QAIX > C/C++ ProgrammingGo to page: « previous | 1 | 2 | 3 | 4 | next »

see also:
pass tests:
..
осторожно, обманщицы!
see also:
Гостиная Пуффендуя
http://a0.qaix.com/i/temp/4027/00...

  Copyright © 2001—2010 QAIX
Идея: Монашёв Михаил.
Авторами текстов, изображений и видео, размещённых на этой странице, являются пользователи сайта.
See Help and FAQ in the community support.qaix.com.
Write in the community about the bugs you have noticedbugs.qaix.com.
Write your offers and comments in the communities suggest.qaix.com.
Information for parents.
Пишите нам на .
If you would like to report an abuse of our service, such as a spam message, please .
Если Вы хотите пожаловаться на содержимое этой страницы, пожалуйста .