Forum: Windows Vista and Windows 7 Sep 2nd, 2009 |
| Replies: 12 Views: 1,000 I never had that problem. |
Forum: OS X Sep 1st, 2009 |
| Replies: 1 Views: 699 I burned a CD on windows Vista with files/programs I need on a mac laptop, but when I insert the CD, nothing happens. I was told that an icon is supposed to come up on the desktop, but none do. I... |
Forum: Shell Scripting Aug 27th, 2009 |
| Replies: 6 Views: 441 hmmm, I didn't know you could do that. I'll have to try that. I was hoping that I could get and use this on any computer. You know, take my configs with me. |
Forum: Shell Scripting Aug 27th, 2009 |
| Replies: 6 Views: 441 They don't like how much time it takes to switch users, and they have to be around when they turn it on to get into their account right away. |
Forum: Shell Scripting Aug 27th, 2009 |
| Replies: 6 Views: 441 I have my way that I want the computer to look, and my parents have their own way, and I want a fast way to switch between the two.
Also, I know it can be done in C/C++, I just don't want to have... |
Forum: Shell Scripting Aug 27th, 2009 |
| Replies: 6 Views: 441 Is it possible to change the desktop background, hide the desktop icons, and hide the menu bar (in windows) using a batch script? If not, could someone direct me as to how to do it in C/C++?
... |
Forum: Windows Vista and Windows 7 Aug 24th, 2009 |
| Replies: 12 Views: 1,000 The YouTube videos lag because of the tab save feature. Read this:
How To Fix Annoying YouTube Jumpiness in Firefox (http://lifehacker.com/5342636/how-to-fix-annoying-youtube-jumpiness-in-firefox) |
Forum: Java Aug 9th, 2009 |
| Replies: 16 Views: 539 I think I got it. I'm pretty sure that the ";" after while ([] counter <= 10) isn't supposed to be there. |
Forum: Java Aug 8th, 2009 |
| Replies: 16 Views: 539 The only other thing I can see is that you have a //loop ends comment one "}" after the while loop actually ends. That might lead to something later in the file. If it isn't that, then could you... |
Forum: Java Aug 8th, 2009 |
| Replies: 16 Views: 539 I'm not really familiar with java, but in c++ you need a ";" at the end of a class:
class foo
{
...
};<---
Could it be that? |
Forum: USB Devices and other Peripherals Jul 21st, 2009 |
| Replies: 9 Views: 644 I have manually installed drivers on both machines from the disk that came with the printer. It said that it was for both vista and xp. |
Forum: USB Devices and other Peripherals Jul 21st, 2009 |
| Replies: 9 Views: 644 Neither accounts have a password. I have a folder of files shared between the two computers set up and working though. |
Forum: USB Devices and other Peripherals Jul 20th, 2009 |
| Replies: 9 Views: 644 Um, what does PW stand for? :?: |
Forum: C++ Jul 20th, 2009 |
| Replies: 6 Views: 296 I know that Dev-C++ is dead. I simply suggested it because it comes ready to go and isn't as complicated to set up as code::blocks (which i use myself).
Hiroshe- I was under the impression that... |
Forum: C++ Jul 18th, 2009 |
| Replies: 6 Views: 296 As a beginner, you should find some online tutorials on how to write C++. You also need a compiler, preferably with an IDE. I recommend Dev-C++ bloodshed for beginers, but you should definitely... |
Forum: USB Devices and other Peripherals Jul 12th, 2009 |
| Replies: 9 Views: 644 Sorry, I've been out of town this week.
I am trying to share the printer connected to the vista computer with the xp computer. |
Forum: USB Devices and other Peripherals Jul 2nd, 2009 |
| Replies: 9 Views: 644 My house has two computers both networked together. The one upstairs runs vista, and the one in the basement runs XP. Recently the printer we had hooked up to the XP computer broke, and I am trying... |
Forum: C++ Jun 30th, 2009 |
| Replies: 5 Views: 379 the only way i can think of is to read the string one character at a time, and convert it in this way:
First make an int for the holding of the sum. Then repeatedly multiply it by 10 and add add... |
Forum: C++ Jun 27th, 2009 |
| Replies: 18 Views: 734 I would suggest allegro (probably version 4.2). I've been using it for about a year, and it makes it super easy to program gui. Plus it is platform independent so you can take code written on a... |
Forum: C++ Jun 23rd, 2009 |
| Replies: 6 Views: 528 Um, OK. I think I have it figured out. Thanks |
Forum: C++ Jun 22nd, 2009 |
| Replies: 6 Views: 528 Um, I'm using the allegro library, which implements it's own GUI, and looking over some of the QT docs it looks like it could be tough to get the two to "play nice". I might be able to do it, but if... |
Forum: C++ Jun 22nd, 2009 |
| Replies: 5 Views: 315 If the only error you get is undefined reference to winmain() then you did everything in your class right. All that error is telling you is that you don't have a main() or winmain() function for the... |
Forum: C++ Jun 22nd, 2009 |
| Replies: 5 Views: 315 all this is is a class. you need to implement it in an actual program.
int main()
{
timer Timer;
//use the timer here
return 0;
}
I'm assuming you have the actual class in... |
Forum: C++ Jun 22nd, 2009 |
| Replies: 6 Views: 528 I am writing a portable desktop for my flash drive as an alternative to the portable "menus" that you can download. I need to know how to drag a link from somewhere on the screen (eg desktop, start... |
Forum: C++ Jun 1st, 2009 |
| Replies: 3 Views: 433 Oh, and I have looked into the allegro forum, but it never emailed me my password, so I can't log in even though I have an account. |
Forum: C++ May 31st, 2009 |
| Replies: 3 Views: 433 It is version 4.9.9. Everywhere I have seen it refers to it as 5.
I know that because my compiler (MinGW) told me that no such variable exists, or at least not by that name.
I have linked all... |
Forum: C++ May 30th, 2009 |
| Replies: 3 Views: 433 I have recently upgraded from Allegro 4.2 to Allegro 5 and am trying to upgrade some of my programs. I came to a program that tells the user a ton of info about the computer it's running on such as... |
Forum: C++ May 18th, 2009 |
| Replies: 10 Views: 516 It works great! Thanks!:) |
Forum: C++ May 17th, 2009 |
| Replies: 10 Views: 516 Correct.
What I did was create a new file (actually .h not .cpp. I don't know why I put _CPP.) and put that code in it. I then linked it to my project and included it in my main file. Where am... |
Forum: C++ May 16th, 2009 |
| Replies: 10 Views: 516 Um, unless i'm not doing it right, it still comes up with the same conflicting definitions errors. Here's the code:
#ifndef RUNNER_CPP
#define RUNNER_CPP
#include <windows.h>
void run()... |
Forum: C++ May 16th, 2009 |
| Replies: 10 Views: 516 I need to know a way to open a notepad document from one of my programs without opening a console window. The calling program is a standard window, so it would look bad if a console widow opened. ... |
Forum: C++ May 3rd, 2009 |
| Replies: 33 Views: 1,842 Um, wow, it works. That's going to be a pain in the butt to have to do that for every project. That was 10 different libs. Thank you very much though!:) |
Forum: C++ May 3rd, 2009 |
| Replies: 33 Views: 1,842 It sounds like a good idea in theory, and I have tried that. The thing, though, is that there are about nine different allegro libs, and the one that seemed obvious to me (liballegro-4.9.9.a or... |
Forum: C++ May 2nd, 2009 |
| Replies: 33 Views: 1,842 The compiler output from a test program is:
obj\Debug\hello1.o||In function `mangled_main':|
C:\Users\Owner\Desktop\test3\hello1.c|22|undefined reference to `al_install_system'|... |
Forum: C++ May 2nd, 2009 |
| Replies: 33 Views: 1,842 The compiler can't really tell me what's wrong, because I don't know which libraries to link to my projects. These libraries contain all the definitions for the functions used by allegro.
Also,... |
Forum: C++ Apr 22nd, 2009 |
| Replies: 33 Views: 1,842 No it didn't. There are some new functions used that aren't present in previous versions. |
Forum: C++ Apr 21st, 2009 |
| Replies: 5 Views: 282 You have three options:
1. Don't worry about it.
2. type
#pragma warning(disable:4700)
#pragma warning(disable:4101)
at the beginning of the file.
3. If it really bothers you that much, set... |
Forum: C++ Apr 21st, 2009 |
| Replies: 5 Views: 282 try this:
#include <iostream>
using namespace std;
int main (){
int trenutnoStanje;
int trenutnostanje; |
Forum: C++ Apr 21st, 2009 |
| Replies: 5 Views: 282 char znak;
float n=0;
{ //why do you need this?
cout<<"\npjessem: CRVENO";
{ //or this?
//you also don't need the ";" at the end |
Forum: Promotion and Marketing Plans Apr 21st, 2009 |
| Replies: 0 Views: 458 I have recently finished a program that deals with the periodic table. My chemistry teachers said that they would like to have a copy to use in class and I need to figure out what it's worth. If... |