What is talxy?
C/C++ Programming
Hello Guest
  
  • Login
• Register…
• Start blog
  • Who, Where, When
• What can I do?
• What to Read?
  • Polls
• Avatars
• Interests
  • Cities and Countries
• Random blog
• Users search
  • Search
• Games
• Tests
• QAIX
  • Talxy Chat
• Horoscope
• Online
 
Çàðåãèñòðèðóéñÿ!

QAIX > C/C++ ProgrammingGo to page: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | next »

  Recent blog posts: 
  They have birthday today: 
  Forums:   
  Discuss: 
  Recent forum topics: 
  Recent forum comments:
  Moderators:
Thursday, 8 May 2008
OWLNEXT CBuilder 6 Ronald Praver 12:24:27
 URGENT

I am currently working on CBuilder 5. My project is an ongoing one
for the past 7 years. It started on BCW and we migrated to CBuilder when
it came out. The project is now very dependent on the OWL framework and
now also VCL's. We also use the Classlibs (ie TArray's Bags Maps ect..)
heavily.
I need to hear from someone that has successfully moved ALL of OWLNEXT
INCLUDING Classlibs to this platform.

Please let me hear from someone ASAP.

Thanx
Optionscomment 2 answer | Add comment
Wednesday, 30 April 2008
need railway reservation system software in VB +Oracle Ajay_iimt 14:40:29
 hi all

i know this is c forum but still i am posting this bcoz its very
urgent.i need railway reservation system software so if any one hav
this in soft copy than plz mail me its very urgent or if anyone knows
the link from where i can get the code of this than plz send me .


Its very urgent i need help from u all.


waiting for ur reply

ajay








-------------------­----- Yahoo! Groups Sponsor -------------------­-~-->
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yah­oo.com/T8sf5C/tzNLAA­/TtwFAA/EbFolB/TM
-------------------­--------------------­--------------------­---------~->

Optionscomment 3 answer | Add comment
Tuesday, 15 April 2008
dclite.bpl problem Stephen 10:59:23
 Hi all

I hope someone can help me.
I have been using C++Builder 6 for a couple of years on XP Pro without any
problems. I had to do a reformat and reinstall but now I get access
violation when I try to access the project options, something to do with not
being able to load dclite.bpl.

Any ideas would be great.
Thanks
Stephen
Optionscomment 5 answers | Add comment
Tuesday, 18 March 2008
help:sine function(no usage of math.h) Rakesh V. 17:15:38
 hi,can anyone help in correcting this function asap:-
double mysin(double x)
{
int i=0;
float term=x;
float sinx=0;
for(i=0;i<=10;i=i+2­)
{
sinx=sinx+term;
term=term*((-x*x)/(­i+2)*(i+3));
}
return sinx;
}

-------------------­--------------------­--------------------­----------

Do you Yahoo!?
Yahoo! Mail [http://us.rd.yahoo.­com/mail_us/taglines­/50x/*http://promoti­ons.yahoo.com/new_ma­il/static/efficiency­.html]
- 50x more storage than other providers!

To unsubscribe, send a blank message to
<mailto:c-prog-unsu­bscribe-hHKSG33Tihhb­jbujkaE4pw@public.gm­ane.org>.


Yahoo! Groups Sponsor

ADVERTISEMENT
click here [http://us.ard.yahoo­.com/SIG=129mn7cf4/M­=295196.4901138.6071­305.3001176/D=groups­/S=1705006788:HM/EXP­=1096480269/A=212821­5/R=0/SIG=10se96mf6/­*http://companion.ya­hoo.com]


-------------------­--------------------­--------------------­----------

Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo­.com/group/c-prog/ [http://groups.yahoo­.com/group/c-prog/]

* To unsubscribe from this group, send an email to:
c-prog-unsubscribe-­hHKSG33TihhbjbujkaE4­pw@public.gmane.org [mailto:c-prog-unsubscribe-hHKSG33TihhbjbujkaE4pw@public.gmane.org?subject=Unsubscribe]

* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service [http://docs.yahoo.c­om/info/terms/].

Optionscomment 1 answer | Add comment
Thursday, 21 February 2008
Internal Compiler Error HELP! Erik Sâ??rensen 11:21:49
 I am beeing shown this error message:

[C++ Fatal Error] F1004 Internal compiler error at 0xcaff8e with base
0xc10000

ever time I try to compile ANYTHING in C++ Builder 6 enterprise. And it is
driving me nuts! I hope someone out there can help me soon because I am on a
deadline and in a hurry.

Erik.
Optionscomment 1 answer | Add comment
Monday, 19 November 2007
Where to get BC++ 3.1, 4.5, 5.0x (for DOS code) ? Robert 09:55:52
 I'm looking for a Borland C++ compiler which can create 16bit DOS code.
Are some of the above available free (for edu) somewhere? Or where can one get commercial packages?

Robert
Optionscomment 2 answer | Add comment
Tuesday, 13 November 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
OptionsAdd comment
Monday, 17 September 2007
Re: Help needed on a Banking solution source code Nico Heinze 08:47:50
 --- In c-prog-hHKSG33Tihhb­jbujkaE4pw@public.gm­ane.org, "kdships" <kdships@y...> wrote:
Hi guys,
I need help on this program. I have been trying to debug this code
and can't seem to get rid of the error messages. Please email me if
you can crack this. The source code is just below his line. Thanks

<snip>

Hi guy(?),

first it would help if you told us _what_ error messages you get and
when. Due to your description I suppose you're talking about compiler
errors, but this is only a guess. Guesswork is useless in programming,
so please tell us exactly.

Also it would be helpful to yourself if you try to write ANSI
compatible code. Typical counterexample is your "main()" function;
void main() is no standard conformant prototype.

Next point is that it makes sense to split up such code into different
source files each of which is responsible for one particular sort of
tasks. This also will help you to debug the code piece by piece. The
keyword here is modular programming.

Lastly, debugging usually (granted, it's a matter of definition) means
the process of finding errors in a running program. However, to me it
seems you did not even get to that stage as you have compiling
trouble. So the word "debugging" in the subject line of your post is
misleading.
Don't get me wrong: my main cause to mention is _not_ to behave like a
pernickety school teacher but to help you to develop a correct and
sharp language when talking to other programmers. The more exact your
language is (no matter whom you talk to), the easier it will be to
understand exactly what you mean and to reply correctly and in a
useful manner.

Regards,
Nico






-------------------­----- Yahoo! Groups Sponsor -------------------­-~-->
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yah­oo.com/cd_AJB/QnQLAA­/TtwFAA/EbFolB/TM
-------------------­--------------------­--------------------­---------~->

Optionscomment 1 answer | Add comment
Thursday, 16 August 2007
server question Rajesh Kumar 17:37:42
 hi all, i need code of two program in C. 1.write a program to
implement a UDP Server that listens on port 5600. 2.write a program to
implement a TCP client that connects to a server running on
localhost:5600.The clent receives a buffer of 255 chars(max) and
returns the time of day and closes the connection pls solve and mail
me. thaxsrajesh

-------------------­--------------------­--------------------­----------

Yahoo! Photos
Got holiday prints? See all the ways [http://us.rd.yahoo.­com/mail_us/taglines­/holidayprints/*http­://pa.yahoo.com/*htt­p://us.rd.yahoo.com/­mail_us/taglines/pho­tos/evt=38089/*http:­//pg.photos.yahoo.co­m/ph//print_splash]
to get quality prints in your hands ASAP.

To unsubscribe, send a blank message to
<mailto:c-prog-unsu­bscribe-hHKSG33Tihhb­jbujkaE4pw@public.gm­ane.org>.



SPONSORED LINKS

Basic programming language [http://groups.yahoo­.com/gads?t=ms&k=Bas­ic+programming+langu­age&w1=Basic+program­ming+language&w2=C+p­rogramming+language&­w3=Computer+programm­ing+languages&w4=Pro­gramming+languages&w­5=Java+programming+l­anguage&c=5&s=154&.s­ig=oYSjvOQeCk9m-PS6-­d-YNA]

C programming language [http://groups.yahoo­.com/gads?t=ms&k=C+p­rogramming+language&­w1=Basic+programming­+language&w2=C+progr­amming+language&w3=C­omputer+programming+­languages&w4=Program­ming+languages&w5=Ja­va+programming+langu­age&c=5&s=154&.sig=w­ZpGv_HSvSgp3_01mjn3y­Q]

Computer programming languages [http://groups.yahoo­.com/gads?t=ms&k=Com­puter+programming+la­nguages&w1=Basic+pro­gramming+language&w2­=C+programming+langu­age&w3=Computer+prog­ramming+languages&w4­=Programming+languag­es&w5=Java+programmi­ng+language&c=5&s=15­4&.sig=3_q8I6iDGyK-I­1--1yamPQ]

Programming languages [http://groups.yahoo­.com/gads?t=ms&k=Pro­gramming+languages&w­1=Basic+programming+­language&w2=C+progra­mming+language&w3=Co­mputer+programming+l­anguages&w4=Programm­ing+languages&w5=Jav­a+programming+langua­ge&c=5&s=154&.sig=U-­b0dJRkunjngqDnX2RaRQ­]

Java programming language [http://groups.yahoo­.com/gads?t=ms&k=Jav­a+programming+langua­ge&w1=Basic+programm­ing+language&w2=C+pr­ogramming+language&w­3=Computer+programmi­ng+languages&w4=Prog­ramming+languages&w5­=Java+programming+la­nguage&c=5&s=154&.si­g=CNOzV99vrCrQEyQFT5­znGw]


-------------------­--------------------­--------------------­----------

YAHOO! GROUPS LINKS

* Visit your group " c-prog [http://groups.yahoo­.com/group/c-prog]"
on the web.

* To unsubscribe from this group, send an email to:
c-prog-unsubscribe-­hHKSG33TihhbjbujkaE4­pw@public.gmane.org [mailto:c-prog-unsubscribe-hHKSG33TihhbjbujkaE4pw@public.gmane.org?subject=Unsubscribe]

* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service [http://docs.yahoo.c­om/info/terms/].


-------------------­--------------------­--------------------­----------

Optionscomment 3 answer | Add comment
Monday, 6 August 2007
Issues of porting C++ code on the 64-bit platform Thunderbolt 16:55:00
 Our team is work on the subject of 64-bit developing. We write new article for 64-bit developers:
20 issues of porting C++ code on the 64-bit platform.

Link to PDF:
http://www.viva64.c­om/articles/20%20iss­ues%20of%20porting%2­0C++%20code%20on%20t­he%2064-bit%20platfo­rm.pdf

We hope the article has been useful for you and will help to simplify the development and debugging of 64-bit applications.
We will be glad to receive your opinions, remarks, corrections, additions and will surely include them in the next version of the article.

Annotation. Program errors occurring while porting C++ code from 32-bit platforms on 64-bit ones are observed. Examples of the incorrect code and the ways to correct it are given. Methods and means of the code analysis which allow to diagnose the errors discussed, are listed.

In the article you will learn about:
•typical errors of programming which occur on 64-bit systems;
•the reasons for appearing of these errors and the corresponding examples;
•methods of correcting the listed errors;
•the review of methods and means of searching errors in 64-bit programs.

The given information will allow you:
•to learn the differences between 32-bit and 64-bit systems;
•to avoid errors while writing the code for 64-bit systems;
•to speed up the process of migration of a 32-bit application on the 64-bit architecture with the help of the great reducing of the time of debugging and testing;
•to forecast the time of porting the code on the 64-bit system more accurately and seriously.

Article is observing the type errors which occur while porting programs on the 64-bit architecture. List of themes:
•Off-warnings
•Use of the functions with a variable number of arguments
•Magic numbers
•Storing of integers in double type
•Bit shifting operations
•Storing of pointer addresses.
•Memsize types in unions
•Change of an array type
•Virtual functions with arguments of memsize type
•Serialization and data exchange
•Bit fields
•Pointer address arithmetic
•Arrays indexing
•Mixed use of simple integer types and memsize types
•Implicit type conversions while using functions
•Overload functions
•Data alignment
•Exceptions
•Explicit type conversions

The diagnosis of the errors occurring while porting 32-bit programs on 64-bit systems is a difficult task. The port of a not very quality code written without taking into account peculiarities of other architectures, may demand a lot of time and efforts. We pay some attention to the description of methods and means which may simplify this task.

----
Viva64 team, www.Viva64.com
Optionscomment 1 answer | Add comment
Friday, 3 August 2007
c++ installer shobelissima 03:09:35
 wa!!! could somebody help me where can i download a free turbo c++ installer. i tried to search a free installer but i ended up finding turbo explorer installer and the size of it is 300+ MB. isn't it that the turbo c++ is only 9MB - a size that is not greater than 20MB. please.. help me to find the installer.. please, or if you have an installer - could you please email it to prinsesang_diwata@y­ahoo.com ..tnx a lot in advance! :)­
OptionsAdd comment
Tuesday, 31 July 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..
OptionsAdd comment
Monday, 18 June 2007
QT3 designer and SO library Ariafrancesco 23:12:52
 Where I can find some example on SO library use
in QT3designer ??

I can't compile my project because I recive :
In file included from .ui/serialmodbus.cp­p:25:
.ui/../serialmodbus­.ui.h: In member function `virtual void
SerialModbus::OpenS­erial()':
.ui/../serialmodbus­.ui.h:80: error: `Mb_open_device' undeclared (first
use this function)
.ui/../serialmodbus­.ui.h:80: error: (Each undeclared identifier is
reported only once for each function it appears in.)
.ui/../serialmodbus­.ui.h: At global scope:
.ui/../serialmodbus­.ui.h:73: warning: unused parameter 'NodeTest'
make: *** [.obj/serialmodbus.o] Error 1

I download the library from :
http://sourceforge.­net/projects/libmodb­us


Thanks to all and exusme for my bad English





-------------------­----- Yahoo! Groups Sponsor -------------------­-~-->
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yah­oo.com/cd_AJB/QnQLAA­/TtwFAA/EbFolB/TM
-------------------­--------------------­--------------------­---------~->

Optionscomment 1 answer | Add comment
Tuesday, 8 May 2007
Bcc32 v5.5.1 - Massive amounts of compile errors when trying to include stl vector Aaron J. M. 19:50:09
 I have the bcc command line tool, and I'm getting these weird errors
when I try to include vector.h.

All I did was put "#include <vector>" in a header file, and then tried
compiling (I'm not even using a vector yet in my actual code). Then I
get these when I compile:

------------------

C:\Borland\BCC55\in­clude\string.stl:304­: Error E2293 : ) expected
C:\Borland\BCC55\in­clude\string.stl:483­: Error E2219 : Wrong number of
arguments in call of macro 'erase'
C:\Borland\BCC55\in­clude\string.stl:483­: Error E2040 : Declaration
terminated incorrectly
C:\Borland\BCC55\in­clude\string.stl:485­: Error E2219 : Wrong number of
arguments in call of macro 'erase'
C:\Borland\BCC55\in­clude\string.stl:486­: Error E2040 : Declaration
terminated incorrectly
C:\Borland\BCC55\in­clude\string.stl:491­: Error E2219 : Wrong number of
arguments in call of macro 'erase'
C:\Borland\BCC55\in­clude\string.stl:106­5: Error E2219 : Wrong number of
arguments in call of macro 'erase'
C:\Borland\BCC55\in­clude\string.stl:106­6: Error E2272 : Identifier
expected
C:\Borland\BCC55\in­clude\string.stl:106­6: Error E2040 : Declaration
terminated incorrectly
C:\Borland\BCC55\in­clude\string.stl:126­7: Error E2219 : Wrong number of
arguments in call of macro 'erase'
C:\Borland\BCC55\in­clude\string.stl:173­8: Error E2190 : Unexpected }
C:\Borland\BCC55\in­clude\ios.h:88: Error E2219 : Wrong number of
arguments in call of macro 'clear'
C:\Borland\BCC55\in­clude\ios.h:88: Error E2092 : Storage class 'inline'
is not allowed here
C:\Borland\BCC55\in­clude\ios.h:185: Error E2219 : Wrong number of
arguments in call of macro 'clear'
C:\Borland\BCC55\in­clude\ios.h:206: Error E2219 : Wrong number of
arguments in call of macro 'clear'
C:\Borland\BCC55\in­clude\ios.h:207: Error E2272 : Identifier expected
C:\Borland\BCC55\in­clude\ios.h:207: Error E2040 : Declaration
terminated incorrectly
C:\Borland\BCC55\in­clude\ios.h:229: Error E2219 : Wrong number of
arguments in call of macro 'clear'
C:\Borland\BCC55\in­clude\vector.h:328: Error E2219 : Wrong number of
arguments in call of macro 'erase'
C:\Borland\BCC55\in­clude\vector.h:334: Error E2219 : Wrong number of
arguments in call of macro 'erase'
C:\Borland\BCC55\in­clude\vector.h:509: Error E2219 : Wrong number of
arguments in call of macro 'erase'
C:\Borland\BCC55\in­clude\vector.h:510: Error E2040 : Declaration
terminated incorrectly
C:\Borland\BCC55\in­clude\vector.h:517: Error E2219 : Wrong number of
arguments in call of macro 'erase'
C:\Borland\BCC55\in­clude\vector.h:550: Error E2219 : Wrong number of
arguments in call of macro 'erase'
C:\Borland\BCC55\in­clude\vector.h:563: Error E2040 : Declaration
terminated incorrectly
C:\Borland\BCC55\in­clude\vector.h:563: Error E2228 : Too many error or
warning messages
:: === Build finished: 26 errors, 0 warnings ===

------------------

This is my code:

main.cpp ------------------

#include "curses.h"

#include "level.h"

int main()
{
Level lev(1, 1, '.', '#');

return 0;
}

level.h ------------------

#ifndef LEVEL_H
#define LEVEL_H

#include <vector>

class Level
{
public:
Level(const int width, const int height, const char floor,
const char wall) : WIDTH(width), HEIGHT(height),
GRID_SIZE(WIDTH * HEIGHT), GRID(new bool[GRID_SIZE]),
FLOOR(floor), WALL(wall) {}

private:
const int WIDTH, HEIGHT;
const int GRID_SIZE;
bool *const GRID;

const char FLOOR, WALL;
};

#endif

------------------

I'm also using the curses library ("curses.h" in the main file) through
PDCurses (http://pdcurses.so­urceforge.net/). Getting rid of that
include also makes the errors go away.

So, can anyone tell what's going on?
Optionscomment 3 answer | Add comment
Thursday, 3 May 2007
help Guest 20:37:12
 how to make header file?
Optionscomment 1 answer | Add comment
Wednesday, 2 May 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
OptionsAdd comment
Thursday, 22 March 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
Optionscomment 2 answer | Add comment
Thursday, 8 March 2007
Fwd: SQL integration with C++ FiRe 10:20:07
 ---------- Forwarded message ----------
From: FiRe < bhratbrij-Re5JQEeQq­e8AvxtiuMwx3w@public­.gmane.org [mailto:bhratbrij-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org]>
Date: Dec 28, 2005 8:54 PM
Subject: SQL integration with C++
To: c-prog-unsubscribe-­hHKSG33TihhbjbujkaE4­pw@public.gmane.org [mailto:c-prog-unsubscribe-hHKSG33TihhbjbujkaE4pw@public.gmane.org]

HI everyone..

I have a project in my college in which i have to integrate c++ with a
database (sql) as back end.
I have no clue how to do it?
I have google it a lot but could only find VC++ integraton with sql
not c++.
So,please help me.

CHEERS.....

BHRAT BRIJ

--
FiRe

--
FiRe

To unsubscribe, send a blank message to
<mailto:c-prog-unsu­bscribe-hHKSG33Tihhb­jbujkaE4pw@public.gm­ane.org>.



SPONSORED LINKS

Basic programming language [http://groups.yahoo­.com/gads?t=ms&k=Bas­ic+programming+langu­age&w1=Basic+program­ming+language&w2=C+p­rogramming+language&­w3=Computer+programm­ing+languages&w4=Pro­gramming+languages&w­5=Java+programming+l­anguage&c=5&s=154&.s­ig=oYSjvOQeCk9m-PS6-­d-YNA]

C programming language [http://groups.yahoo­.com/gads?t=ms&k=C+p­rogramming+language&­w1=Basic+programming­+language&w2=C+progr­amming+language&w3=C­omputer+programming+­languages&w4=Program­ming+languages&w5=Ja­va+programming+langu­age&c=5&s=154&.sig=w­ZpGv_HSvSgp3_01mjn3y­Q]

Computer programming languages [http://groups.yahoo­.com/gads?t=ms&k=Com­puter+programming+la­nguages&w1=Basic+pro­gramming+language&w2­=C+programming+langu­age&w3=Computer+prog­ramming+languages&w4­=Programming+languag­es&w5=Java+programmi­ng+language&c=5&s=15­4&.sig=3_q8I6iDGyK-I­1--1yamPQ]

Programming languages [http://groups.yahoo­.com/gads?t=ms&k=Pro­gramming+languages&w­1=Basic+programming+­language&w2=C+progra­mming+language&w3=Co­mputer+programming+l­anguages&w4=Programm­ing+languages&w5=Jav­a+programming+langua­ge&c=5&s=154&.sig=U-­b0dJRkunjngqDnX2RaRQ­]

Java programming language [http://groups.yahoo­.com/gads?t=ms&k=Jav­a+programming+langua­ge&w1=Basic+programm­ing+language&w2=C+pr­ogramming+language&w­3=Computer+programmi­ng+languages&w4=Prog­ramming+languages&w5­=Java+programming+la­nguage&c=5&s=154&.si­g=CNOzV99vrCrQEyQFT5­znGw]


-------------------­--------------------­--------------------­----------

YAHOO! GROUPS LINKS

* Visit your group " c-prog [http://groups.yahoo­.com/group/c-prog]"
on the web.

* To unsubscribe from this group, send an email to:
c-prog-unsubscribe-­hHKSG33TihhbjbujkaE4­pw@public.gmane.org [mailto:c-prog-unsubscribe-hHKSG33TihhbjbujkaE4pw@public.gmane.org?subject=Unsubscribe]

* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service [http://docs.yahoo.c­om/info/terms/].


-------------------­--------------------­--------------------­----------

Optionscomment 13 answers | Add comment
Tuesday, 13 February 2007
old inport, outport Maurice 13:20:25
 Hello:
I've made a program that command external hardware using the parallel port,
everything was ok under win98.
Now I've tried it under windows xp, it didn't work. (I use inport() and
ouport() functions).

Any idea??
thanks
Maurice
Optionscomment 1 answer | Add comment
[ROOT] Loading a user-defined function in ROOT Germano Percossi 03:00:59
 Hi everybody,
I've subscribed only a few time ago this ML and
surely this question has been answered in another
thread. I apologize in advance if this is the case.
Anyway, I have some problems loading a function
written by me; I load the function with

gROOT->LoadMacro("n­ame_of_file_of_my_fu­nc")

with previous versions I used .L to load it.
If I'd need to change my function is there a way
to unload the old one and load a new one?
Till now I load the new one with the same name,
hoping to do the right thing but typing

root [56] gROOT->GetListOfGlo­balFunctions()->ls()­

I had the errors written at the end of the e-mail
and I cannot do anything else than kill root from
another shell. I've done anything wrong? Is there
any workaround?
I'm running a precompiled version of root
(v4.00.04 with gcc 3.3.2) on a Linux machine with
gcc 3.4.1.

Greets, Germano Percossi

*** Break *** segmentation violation
Generating stack trace...
0x406470f7 in G__interpret_func + 0x1692 from
/usr/local/root/lib­/libCint.so
0x4063cc83 in G__compile_bytecode­ + 0x203 from
/usr/local/root/lib­/libCint.so
0x406cad05 in G__MethodInfo::GetB­ytecode() +
0x5d from /usr/local/root/lib­/libCint.so
0x4018baff in TFunction::Interfac­eMethod() const
+ 0x31 from /usr/local/root/lib­/libCore.so
0x4017a011 in
TCint::UpdateListOf­GlobalFunctions() + 0x111 from
/usr/local/root/lib­/libCore.so
0x40139b04 in
TROOT::GetListOfGlo­balFunctions(bool) + 0xac from
/usr/local/root/lib­/libCore.so
0x402c7788 in <unknown> from
/usr/local/root/lib­/libCore.so
0x40656373 in G__call_cppfunc + 0x258 from
/usr/local/root/lib­/libCint.so
0x40646163 in G__interpret_func + 0x6fe from
/usr/local/root/lib­/libCint.so
0x4062b1d5 in G__getfunction + 0x12b4 from
/usr/local/root/lib­/libCint.so
0x406b335a in G__getstructmem + 0x235 from
/usr/local/root/lib­/libCint.so
0x406aca12 in G__getvariable + 0x4a9 from
/usr/local/root/lib­/libCint.so
0x406b38c9 in G__getstructmem + 0x7a4 from
/usr/local/root/lib­/libCint.so
0x406aca12 in G__getvariable + 0x4a9 from
/usr/local/root/lib­/libCint.so
0x406228fe in G__getitem + 0x5bf from
/usr/local/root/lib­/libCint.so
0x40621524 in G__getexpr + 0x77ec from
/usr/local/root/lib­/libCint.so
0x4066bad2 in G__exec_function + 0x1d5 from
/usr/local/root/lib­/libCint.so
0x40672619 in G__exec_statement + 0x23bd from
/usr/local/root/lib­/libCint.so
0x4060ab1d in G__exec_tempfile_co­re + 0x2bd from
/usr/local/root/lib­/libCint.so
0x4060acee in G__exec_tempfile_fp­ + 0x22 from
/usr/local/root/lib­/libCint.so
0x4067a767 in G__process_cmd + 0x471a from
/usr/local/root/lib­/libCint.so
0x401799bf in TCint::ProcessLine(­char const*,
TInterpreter::EErro­rCode*) + 0xa9 from
/usr/local/root/lib­/libCore.so
0x400f1470 in TApplication::Proce­ssLine(char
const*, bool, int*) + 0x596 from
/usr/local/root/lib­/libCore.so
0x40e74f4f in TRint::HandleTermIn­put() + 0x1dd
from /usr/local/root/lib­/libRint.so
0x40e73d3a in TTermInputHandler::­Notify() + 0x24
from /usr/local/root/lib­/libRint.so
0x40e759de in TTermInputHandler::­ReadNotify() +
0x12 from /usr/local/root/lib­/libRint.so
0x401e6388 in TUnixSystem::CheckD­escriptors() +
0xf2 from /usr/local/root/lib­/libCore.so
0x401e5bdd in
TUnixSystem::Dispat­chOneEvent(bool) + 0xf7 from
/usr/local/root/lib­/libCore.so
0x40147df0 in TSystem::InnerLoop(­) + 0x18 from
/usr/local/root/lib­/libCore.so
0x40147d95 in TSystem::Run() + 0x6f from
/usr/local/root/lib­/libCore.so
0x400f2069 in TApplication::Run(b­ool) + 0x2d
from /usr/local/root/lib­/libCore.so
0x40e74a2e in TRint::Run(bool) + 0x30a from
/usr/local/root/lib­/libRint.so
0x08048e45 in main + 0x71 from
/usr/local/root/bin­/root.exe
0x40fb6ea0 in __libc_start_main + 0xe0 from
/lib/tls/libc.so.6
0x08048d45 in
TApplicationImp::Sh­owMembers(TMemberIns­pector&,
char*) + 0x31 from /usr/local/root/bin­/root.exe
Root > Function Energy() busy flag cleared
Function () busy flag cleared
Function () busy flag cleared
Function () busy flag cleared
Function () busy flag cleared
Function () busy flag cleared
Function () busy flag cleared

--
\ | /
(@ @)
-o00-(_)-00o-------­-----
-------------------­--------------------­--------------------­-
Germano Percossi
University of Rome "Tor Vergata" and INFN Roma2
Via della Ricerca Scientifica 1
I-00133 Rome Italy
Phone : 06 7259 4824
Room : c0 28b
-------------------­--------------------­--------------------­-


Optionscomment 9 answers | Add comment
Monday, 12 February 2007
need help handling access violation 0xC0000005 Parthasarathy Regupathy 14:24:10
 

hi groups,
when i compile the 'C' in VC++ working with inserting nodes, i get
this error "Unhandled exception in
insertingnodes.exe:­0xC0000005:Access Violation." what shuld i do to
handle this error and how can i rectify..

can anybody help me...

tanx
regards with luv
partha







-------------------­----- Yahoo! Groups Sponsor -------------------­-~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yah­oo.com/L5YrjA/eSIIAA­/yQLSAA/EbFolB/TM
-------------------­--------------------­--------------------­---------~->

Optionscomment 3 answer | Add comment
Saturday, 27 January 2007
Playing WAV files using C/C++ Wiz_mci 21:03:47
 Does anyone know how one can play WAV files using C/C++ in linux?. Are
there any libraries available? Any sample code out there?



To unsubscribe, send a blank message to <mailto:c-prog-unsu­bscribe-hHKSG33Tihhb­jbujkaE4pw@public.gm­ane.org>.
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo­.com/group/c-prog/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo­.com/group/c-prog/jo­in
(Yahoo! ID required)

<*> To change settings via email:
mailto:c-prog-diges­t-hHKSG33Tihhbjbujka­E4pw@public.gmane.or­g
mailto:c-prog-fullf­eatured-hHKSG33Tihhb­jbujkaE4pw@public.gm­ane.org

<*> To unsubscribe from this group, send an email to:
c-prog-unsubscribe-­hHKSG33TihhbjbujkaE4­pw@public.gmane.org

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.c­om/info/terms/


Optionscomment 2 answer | Add comment
Windows/Linux GUI development library John Matthews 20:41:49
 Hi- I'm currently looking at wxWidgets http://www.wxwidget­s.org/ as a
way of writing C/C++ GUI programs that will run under Linux and
Windows. However, I'm open to alternative suggestions- does anyone
know of anything better?

BTW the application I'm writing is a log file viewer. The current
version is in C, and decodes and displays telecomms (WiMAX) equipment
messages using indentation to aid interpretation eg.

message 1
first field of message 1
an array in message 1
1st item in array
:
message 2
etc.

In the past I've written this sort of thing just for Windows in Delphi
and used a TreeView component to effectively replace the indentation
eg. initially

+ message 1
+ message 2

Click on + of message 1:

- message 1
first field of message 1
+ an array in message 1
+ message 2
etc.

I've 20+ years of embedded C experience, but not much C++ (yet), and
no 'real' Windows programming experience (Delphi simplifies things),
so the simpler the better.

Cheers
John



To unsubscribe, send a blank message to <mailto:c-prog-unsu­bscribe-hHKSG33Tihhb­jbujkaE4pw@public.gm­ane.org>.
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo­.com/group/c-prog/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo­.com/group/c-prog/jo­in
(Yahoo! ID required)

<*> To change settings via email:
mailto:c-prog-diges­t-hHKSG33Tihhbjbujka­E4pw@public.gmane.or­g
mailto:c-prog-fullf­eatured-hHKSG33Tihhb­jbujkaE4pw@public.gm­ane.org

<*> To unsubscribe from this group, send an email to:
c-prog-unsubscribe-­hHKSG33TihhbjbujkaE4­pw@public.gmane.org

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.c­om/info/terms/


Optionscomment 1 answer | Add comment

Add new topic:

How:  Register )
 
Login:   Password:   
Êîììåíòèðîâàòü ìîãóò: Ïðåìîäåðàöèÿ:
Topic:
  
 
Ïîæàëóéñòà, îòíîñèòåñü ê ñîáåñåäíèêàì óâàæèòåëüíî, íå èñïîëüçóéòå íåöåíçóðíûå ñëîâà, íå çëîóïîòðåáëÿéòå çàãëàâíûìè áóêâàìè, íå ïóáëèêóéòå ðåêëàìó è îáúÿâëåíèÿ î êóïëå/ïðîäàæå, à òàêæå ìàòåðèàëû íàðóøàþùèå ñåòåâîé ýòèêåò èëè ÓÊ ÐÔ.


QAIX > C/C++ ProgrammingGo to page: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | next »

see also:
Converting database from MS Access
new to cookies
fetching image by url and storing in…
see also:
Column Defualts
Problems with ODBC connectivity
Archiving A Database
see also:
Newbie-Question: What's that @?
Add column to a table
cookie trouble

  Copyright © 2001—2008 QAIX
Idea: Miñhael Monashev
You can find the help and FAQ in the Admin's blog.
Write us at:
If you would like to report an abuse of our service, such as a spam message, please .