Search Results

Showing results 1 to 40 of 104
Search took 0.01 seconds.
Search: Posts Made By: goody11
Forum: C++ Oct 22nd, 2009
Replies: 12
Views: 338
Posted By goody11
Never mind. I figured it all out. Thanks for all of your help. I had to use the IsDialogMessage function properly.
Forum: C++ Oct 22nd, 2009
Replies: 12
Views: 338
Posted By goody11
I'm not following your code very well, could you please explain it? And shouldn't the tab stop style fix my problem because from the research that I've done, It should do exactly what I want it to....
Forum: C++ Oct 22nd, 2009
Replies: 12
Views: 338
Posted By goody11
OK, after some research I figured out that I could use WS_TABSTOP but it's still not working. I have condensed my Program down so that you can see somewhat of the full code that I am dealing with.
...
Forum: C++ Oct 21st, 2009
Replies: 12
Views: 338
Posted By goody11
Actually here's the code to the entire dialog Procedure:


BOOL CALLBACK DlgProc2(HWND hwnd2, UINT Message2, WPARAM wParam2, LPARAM lParam2)
{
switch(Message2)
{
case WM_INITDIALOG:
//...
Forum: C++ Oct 21st, 2009
Replies: 12
Views: 338
Posted By goody11
Here is the best thing that I could come up for the tab functionality but it still doesn't work.

case WM_CHAR:
switch(LOWORD(wParam2))
{
case 0x09:
{
HWND hmove =...
Forum: C++ Oct 21st, 2009
Replies: 12
Views: 338
Posted By goody11
I'm not sure how to create the functionality of the tabs.
Forum: C++ Oct 21st, 2009
Replies: 12
Views: 338
Posted By goody11
How can I say, if the tab button is pushed, use SetFocus() ?
(I haven't dealt to much with code for saying if a certain button is pressed do something.)
Forum: C++ Oct 21st, 2009
Replies: 12
Views: 338
Posted By goody11
Well yes, but how can I use that in order to do this?
Forum: C++ Oct 21st, 2009
Replies: 12
Views: 338
Posted By goody11
Hey,
I was just wondering how do I make my edit boxes so that when the the tab button is hit the cursor will go on to the next edit box in windows API. I've done some research on functions that deal...
Forum: HTML and CSS Oct 4th, 2009
Replies: 4
Views: 722
Posted By goody11
Yes, but I thought personally things started to get overly complicated at that point and I didn't think that it was worth it to use a bunch of effort using the processing method. Still, if I were...
Forum: HTML and CSS Oct 4th, 2009
Replies: 8
Views: 468
Posted By goody11
Never mind I found the problem I had to set border="0" in the frameset part.
Forum: HTML and CSS Oct 4th, 2009
Replies: 8
Views: 468
Posted By goody11
But then I won't have any background for that frame.
Forum: HTML and CSS Oct 4th, 2009
Replies: 8
Views: 468
Posted By goody11
No actually the background is a very light peach(very light!). I don't see why my band director cares. Nobody is ever going to notice it but she is a perfectionist. It is a verticle white line that...
Forum: HTML and CSS Oct 4th, 2009
Replies: 8
Views: 468
Posted By goody11
Like I said, I didn't originally build the website, if I did I would have never used frames, and try maximizing the browser to see the white line(it's pretty thin).
Forum: HTML and CSS Oct 4th, 2009
Replies: 4
Views: 722
Posted By goody11
Honestly, from what I have seen and worked with for a few years now, the way that you described seemed the best way to fit what you were trying to do. There are other routes I guess that you could go...
Forum: HTML and CSS Oct 4th, 2009
Replies: 8
Views: 468
Posted By goody11
I'm trying to help my band director with her website and I can't seem to figure this out. We have 2 frames set up, one that takes up 20% of the screen and the other takes up 80%. There is a little...
Forum: C++ Sep 7th, 2009
Replies: 6
Views: 382
Posted By goody11
I'm having troubles implementing your code into mine. I used resource files to create my buttons and edit boxes and I'm not using the window for this, I'm just using a dialog box here is some of my...
Forum: C++ Sep 6th, 2009
Replies: 6
Views: 382
Posted By goody11
Ok, I tried this but it didn't work.


case IDC_AWA:
{
HWND hRetrieve = GetFocus();
int length = GetWindowTextLength(hRetrieve);
LPCSTR pszText = "รก";...
Forum: C++ Sep 6th, 2009
Replies: 3
Views: 272
Posted By goody11
Yeah, just use system("color 1F);
The 1F is just an example. they stand for the color's foreground and background. to view the different color choices go to command prompt and type color ?.
Forum: C++ Sep 6th, 2009
Replies: 6
Views: 382
Posted By goody11
Hey, I was working on a program in windows API where there are multiple edit boxes and there are push buttons. If a pushbutton is clicked, I want the program to find the edit box that the cursor is...
Forum: C++ Sep 2nd, 2009
Replies: 7
Views: 283
Posted By goody11
Thank you that actually helped quite a bit and there really is no reason besides just the fact that I want to learn.
Forum: C++ Sep 2nd, 2009
Replies: 7
Views: 283
Posted By goody11
thank you very much. Now is there a compiler that will let me create them?
Would Dev let me?
Forum: C++ Sep 1st, 2009
Replies: 7
Views: 283
Posted By goody11
I use the compiler that comes with Visual C++, the os is vista. and by compiler directives I mean like when you use #define, #if, #endif... and so on. I have used compiler directives many times but...
Forum: C++ Sep 1st, 2009
Replies: 7
Views: 283
Posted By goody11
Hey, I was wondering how (if it's even possible) to create my own compiler directives. Any help?
Forum: C++ Aug 18th, 2009
Replies: 1
Views: 209
Posted By goody11
Hi, I was wondering how you could change the head bar of a window in windows API.

This is the line of code that I want it to change:

CAPTION "Spanish Conjugation Quiz"
Forum: C++ Aug 18th, 2009
Replies: 5
Solved: loading bitmaps
Views: 499
Posted By goody11
I downloaded winres.h. If you look in the resource file, and see where I include it, you can replace it with afxres.h instead.
Forum: C++ Aug 18th, 2009
Replies: 7
Views: 329
Posted By goody11
nevermind I figured it out, thanks for all the help.
Forum: C++ Aug 18th, 2009
Replies: 7
Views: 329
Posted By goody11
Yea I was actually looking at that just before you told me that but is there some kind of message for inserting the text?
Forum: C++ Aug 18th, 2009
Replies: 7
Views: 329
Posted By goody11
Forum: C++ Aug 18th, 2009
Replies: 7
Views: 329
Posted By goody11
Well, I create the edit box in my resource file and it's identifier is something like IDC_IDENTIFIER. So how would I go about doing it that way?
Forum: C++ Aug 17th, 2009
Replies: 7
Views: 329
Posted By goody11
Hey, I'm working on a Spanish program and I want to make it so that if somebody wants to type in an a with an accent all they have to do is press the pushbutton. I realize how to create the...
Forum: C++ Aug 17th, 2009
Replies: 1
Views: 232
Posted By goody11
Hey, I can't figure what is wrong with this part of my program. I know that it has something to do with that my variable i is exceeding the vector boundaries but I can't figure out how to stop it. I...
Forum: C++ Aug 16th, 2009
Replies: 2
Views: 365
Posted By goody11
Thanks. It works like a charm now.
Forum: C++ Aug 16th, 2009
Replies: 2
Views: 365
Posted By goody11
Hey, I was working on a program that would ask you a question and you had to put an answer. Well, when I went to compare the answer the user inputs with the right answer, it always comes up wrong and...
Forum: C++ Aug 12th, 2009
Replies: 0
Views: 247
Posted By goody11
Hey, I'm having some troubles with my hangman game i'm making. I want it to display dashes for the number of characters that there are in the word which that part works fine. but then if they guess...
Forum: C++ Aug 10th, 2009
Replies: 5
Solved: loading bitmaps
Views: 499
Posted By goody11
Thanks that worked perfect.
Forum: C++ Aug 9th, 2009
Replies: 5
Solved: loading bitmaps
Views: 499
Posted By goody11
I'm trying to load a bit map but the picture won't come up. It compiles just fine. I'm not sure if this makes a difference either but I am trying to load a bitmap into a dialog box. Here's the code:...
Forum: C++ Aug 7th, 2009
Replies: 3
Views: 225
Posted By goody11
SPNstruct(LPCSTR english, LPCSTR spanish) { eng = english; spn = spanish; }
eng = new LPCSTR[strlen(english)+1];
strcpy(eng, english);
// now do the same thing for spn variable
spn =...
Forum: C++ Aug 7th, 2009
Replies: 3
Views: 225
Posted By goody11
Hey, I'm trying to load a bunch of words and setting them as my text but I they aren't setting for some reason. Here is the code:


#include "windows.h"
#include "resource.h"
#include <fstream>...
Forum: C++ Aug 6th, 2009
Replies: 1
Solved: using LTEXT
Views: 299
Posted By goody11
What I mean is how can I use that string in the first parameter?
Showing results 1 to 40 of 104

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC