Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

38 Posted Topics

Member Avatar for hkhk106

[QUOTE=Ancient Dragon;502059]There are none for him at this time. Tell him to wait a few more years to grow up a little and finish grade school. There are a lot of necessary things he probably doesn't know yet, such as a good foundation in algebra. In the meantime he should …

Member Avatar for sumtaru
0
241
Member Avatar for #include<DAN.h>

I was just about to post a similar (almost exact) question to this, so why not post it here... Is there any actual code that can be used to send output to the console (in c++ still) without calling any sort of premade "out to screen" function? I assume that …

Member Avatar for Duoas
0
5K
Member Avatar for Brent.tc

Hi, I was wondering how to program a device driver for Windows XP in c++. For example, say I wanted to make a device driver for a mouse (I say mouse because that seems like one of the most simple everyday 'tools', and would seem as though it were the …

Member Avatar for Nick Evan
0
243
Member Avatar for Brent.tc

Wow. It's kinda strange to even consider that I am taking part in the creation of an operating system... It really wasn't that long ago that I wasn't even capable of writing a functional program... I owe a good portion of my achievements to you posters here on DANIWEB (especially …

Member Avatar for Brent.tc
0
94
Member Avatar for Brent.tc

Hi, I need to know how (if it is possible) to determine the sizeof a function... [code=c++] #include <iostream> using namespace std; int theFunction(); int theFunction() { int x = 0; return x; } int main() { cout << sizeof theFunction; cin.get(); return 0; } [/code] The above does not …

Member Avatar for Duoas
0
96
Member Avatar for Brent.tc

Firstly, let me say that I am REALLY sorry that I am doing this, and I know that the c++ section of daniweb is not the section that is supposed to be used for posting general questions about daniweb... I'm just terrible at finding things. If someone could give/tell me: …

Member Avatar for Nick Evan
0
226
Member Avatar for Brent.tc

Hi, I was wondering how to make a program listen on a port... lests say port 54321. All I want for it to do is listen for any message sent on that port, and then output "54321"... Is this as simple as I think, or is it something that is …

Member Avatar for Laiq Ahmed
0
97
Member Avatar for Brent.tc

Hi, I have made a program in c++ that inputs a file, and outputs the number of characters... I have placed this executable into my apache 2.2 server's cgi-bin directory under the name "TestApp.exe" how would I retrieve the output of this file by calling it with either PHP, or …

Member Avatar for MitkOK
0
69
Member Avatar for Brent.tc

Hi all, I have a few general questions that need answering: 1) Is there a way for an application to run a few final commands before it closes (this one is for all applications, not just windows) 2) Is it possible for a window to 'see' the application that sends …

Member Avatar for Ancient Dragon
0
145
Member Avatar for #include<DAN.h>

I BELIEVE that a namespace is just something used to give context to where something should be used. Also, it helps to avoid conflicting names.

Member Avatar for Duoas
0
614
Member Avatar for Brent.tc

Hi, first let me say that I am particularly new to all things hardware. I have just upgraded my motherboard, and processor... My processor has been upgraded from a 32 bit AMD XP 2000 (1.667 GHz?) to a 64 bit AMD 3600+ -- Please forgive any inaccuracy in the exact …

Member Avatar for Brent.tc
0
101
Member Avatar for Brent.tc

I have a powerbook ?G4?, with an unknown (as in [I]I[/I] don't know what it is) OS on it. When I boot it up it asks for a password. I set the password ages ago to keep my brother out, and now I don't know it. Is there any way …

Member Avatar for Brent.tc
0
222
Member Avatar for lifei

You have an extra comma (',') before the x... Is that your question, and is that even a problem?

Member Avatar for invisal
0
149
Member Avatar for kv79

Is this the messagebox you speak of? MessageBox(NULL,"TOO","bre",MB_OK | MB_ICONINFORMATION);

Member Avatar for Brent.tc
0
187
Member Avatar for nugget93

doesn't vision disable all keyboard and mouse input? Is your teacher blind? Upgrade to VC++ -- There is a (free) express edition.

Member Avatar for Ancient Dragon
0
97
Member Avatar for Brent.tc

I need to know how (if even possible) to return a substring without having to return a local variable or space allocated by new here's some code as an example as to what I'm looking for. [code] char* substr(const char* str, int start, int len) { char retSub[len+1]; int pos=start; …

Member Avatar for Salem
0
106
Member Avatar for Brent.tc

I have newly made my bcstring class, and it is having some strange errors. I have given it the ability of dynamically allocating memory. If the memory to be allocated is already allocated, nothing happens (correct/non-problematic); If the memory to be allocated is greater than that that is allocated, and …

Member Avatar for Ancient Dragon
0
158
Member Avatar for Brent.tc

I was wondering which would be better to use for the allocation of memory. The memory that is being allocated will almost certainly have to be reallocated several times. I am making a string class (how original :) and I am going to give it dynamic memory allocation (whether or …

Member Avatar for Narue
0
161
Member Avatar for Ancient Dragon

I know this post is kinda dead, but I think bloodshed now has an ide for linux.

Member Avatar for Infarction
0
209
Member Avatar for Ancient Dragon
Member Avatar for Brent.tc

I am going to build my own computer and I need some help fnding components. I need a VERY fast [U][B]AMD[/B][/U] processor (no more than $1500) I also need a very good [U][B]ASUS[/B][/U] motherboard (no more than $1500) And an excellent graphics card (no more than $1000) (Best I've seen …

Member Avatar for Brent.tc
0
88
Member Avatar for Brent.tc

There is an amd processor that I believe to be oddly priced (But what do I know) here is a link [URL]http://www.ecost.com/detail.aspx?edp=33334904&source=EWBBASE&ci_src=14110944&ci_sku=33334904[/URL] Of course I have no intention of buying it. :)

Member Avatar for Brent.tc
0
85
Member Avatar for Brent.tc

I want to know how to remove the EWX_TOPMOST property from a window. Example: I have a window 900x900 that is relevently important, 810000 pixels is quite a bit of wasted space, and I need to get to another application, but the "big window" is very persistant in thinking it …

Member Avatar for WolfPack
0
89
Member Avatar for Brent.tc

This may come off as a rather broad question, but I need to learn how to multitask in c++. I am developing a game, and to do so I need to learn how to program applications to run in realtime. (I want multiple characters to do things at the same …

Member Avatar for iMalc
0
201
Member Avatar for Brent.tc

How can I open a link without opening it in a frame. I have my main frame being Frame1 My menu Frame is Frame2 <a href="mysite.com" target=???????> I want it to open it in the same window, but destroy all frames because it is the link to home so it …

Member Avatar for MattEvans
0
154
Member Avatar for Brent.tc

For any of you who have posted at my previous questions [COLOR=darkorange](this is mainly directed towards Ancient Dragon) [/COLOR][COLOR=black]you know that I have a tendancy to ask about things I have nearly no knowledge of.[/COLOR] [COLOR=#000000][/COLOR] [COLOR=#000000]This time is no different, I wish to know how to send a string …

Member Avatar for ~s.o.s~
0
95
Member Avatar for Brent.tc

How do i find the dimensions of a button? Example: I want to find the width of the start button, and the height and then assign them to seperate ints. int width=WindowWidth(Start); int height=WindowHeight(Start); The abbove functions are totally made up, so they are just examples...

Member Avatar for Ancient Dragon
0
114
Member Avatar for Brent.tc

I was wondering if it is possible (by this I mean, with a 'premade' c++ api function) to logon to a windows account (if there is I assume you must know the password) I use bloodshed, not vc++.

Member Avatar for vijayan121
0
245
Member Avatar for Brent.tc

How can i find the curret position of the mouse and then use them in mouse_event(MOUSEEVENTF_LEFTDOWN, x, y, 0, 0)

Member Avatar for Ancient Dragon
0
60
Member Avatar for Brent.tc

I'm making a program that reads commands from a file and then executes them accordingly... Example: start hide -hides the start button... mbox Hello and welcome The Title -creates a message box would this be called an interpreter, or something else...

Member Avatar for Rashakil Fol
0
65
Member Avatar for Brent.tc

My javascript does not work in any browser except windows IE... WHY Please just give me an example of some javascript that works in mozilla Here is example of my source... [code] <script> var x = 400; alert(x); alert("This works in IE, but not Mozilla, why!!!!!!!!??????????"); </script> [/code]

Member Avatar for Brent.tc
0
121
Member Avatar for Brent.tc

My javascript does not work in any browser except windows IE... WHY Please just give me an example of some javascript that works in mozilla Here is example of my source... [code] <script> var x = 400; alert(x); alert("This works in IE, but not Mozilla, why!!!!!!!!??????????"); </script> [/code]

Member Avatar for darkan9el
0
81
Member Avatar for Brent.tc

I would like to know how to read a value from the registry. And store that value in a variable... I use Bloodshed ide and ?mingw? compiler, NOT visual c++ so please do not give answers if they only apply to vc++.

Member Avatar for ~s.o.s~
0
3K
Member Avatar for Brent.tc

I've been working on a program (nothing big, or anything) and there are some things I'd like to work (That has nothing to do with the fact that there supposed to work :) Problems: 1 - Screen won't clear (This seems to be the most frequent question about c/c++ "ms-dos" …

Member Avatar for Brent.tc
0
160
Member Avatar for Brent.tc

I am in 9th grade and have a friend who I am arguing with about "What bit video games are currently programmed in". I argue my point, whether it be true or totally false, that games have not and probably will not stop being programmed in bits. Because bits are …

Member Avatar for John A
0
74
Member Avatar for Brent.tc

I need to know where to get a copy of bios.h(and any files that are used with it.) and the opengl header files.(gl\glaux.h...)

Member Avatar for Narue
0
69
Member Avatar for Brent.tc

I have recently began programming in the windows api rather than the command prompt\ms-dos environment. I am still using windows 98 and bloodshed dev-cpp 4.9.9.2. I need to know how to disable the START MENU, TASK BAR, and the little boxes in the top right hand corner of the application …

Member Avatar for Ancient Dragon
0
113
Member Avatar for Brent.tc

I need help with using the cin command\function. Any time I try to use it outside of the main function it does not work what am I doing wrong?

Member Avatar for WaltP
0
111

The End.