Search Results

Showing results 1 to 40 of 50
Search took 0.01 seconds.
Search: Posts Made By: guy40az
Forum: Windows Software Dec 3rd, 2008
Replies: 1
Views: 896
Posted By guy40az
Any one know if you can develop software for pocket pc windows 2002 using visual studio 2008. I get an error saying my device needs a new version of windows to load.
Forum: C++ Oct 13th, 2008
Replies: 1
Views: 694
Posted By guy40az
Can you use a static library on visual studio 2008 that was complied on visual c++ version 6 or do I have to recompile the static library?
Forum: C++ Oct 5th, 2008
Replies: 6
Views: 469
Posted By guy40az
Just add a if statement



if(minrange<maxrange)
{
cout <<"The numbers that are divisible by " <<increment<<" are ";
cout <<endl;
for(count=minrange; count<=maxrange; count++)
{
Forum: C++ Jul 15th, 2008
Replies: 5
Views: 2,782
Posted By guy40az
Thanks CoolGamer48 you are a genius
Forum: C++ Jul 14th, 2008
Replies: 5
Views: 2,782
Posted By guy40az
In VC 6 you add it in.

Project --> Settings --> Link Tab --> change Catetory to input then add the library to the Object/library modules list. In the left pain, change Settings For to All...
Forum: C++ Jul 14th, 2008
Replies: 3
Solved: static lib file
Views: 2,349
Posted By guy40az
Forum: C++ Jul 14th, 2008
Replies: 5
Views: 2,782
Posted By guy40az
Can someone tell me how to add a static library file to a project in visual studio 2007.
Forum: C++ Jun 26th, 2008
Replies: 1
Views: 1,252
Posted By guy40az
I was wondering if anyone knows of a good resource online to learn the IDE of visual studio 2008. I have been using an older version (visual studio 6), I need to learn the 08 .net IDE.

If any...
Forum: C++ Jun 15th, 2008
Replies: 2
Views: 2,050
Posted By guy40az
Here is an Example

/* rename example */
#include <stdio.h>

int main ()
{
int result;
char oldname[] ="oldname.txt";
char newname[] ="newname.txt";
Forum: C++ Jun 15th, 2008
Replies: 2
Views: 2,050
Posted By guy40az
int rename( const char *oldname, const char *newname );
Forum: C++ Apr 19th, 2008
Replies: 11
Views: 1,660
Posted By guy40az
something like this



int main ()
{

double feet=0,inches=0;
double meters=0,centimeters=0;
char letter;
Forum: C Apr 19th, 2008
Replies: 3
Views: 4,600
Posted By guy40az
Have you tried using Direct I/O?

The web site is

http://www.direct-io.com

I hope that helps.
Forum: C++ Apr 19th, 2008
Replies: 9
Views: 3,281
Posted By guy40az
My plan was to calculate the resistance of the RC circuit. The formula T=R*C.

T=time
R=resistance
C=capacitance


So if I know the capacitance and the time it takes to charge the capacitor...
Forum: C++ Apr 18th, 2008
Replies: 9
Views: 3,281
Posted By guy40az
krs, cliff

Thanks for the link I think I can us the info to make it work.

I was also thinking about using a rc circuit and measure the time it takes to charge the capacitor and I could figure...
Forum: C++ Apr 17th, 2008
Replies: 9
Views: 3,281
Posted By guy40az
Can anyone tell me how I can read the resistance between pins 4 and 6 of the serial port using VB or c++?
Forum: C++ Dec 31st, 2007
Replies: 5
Views: 4,180
Posted By guy40az
The source code works ok, its just when I compile using

Gcc test.c I get the linker error but when I use the

Gcc –o test test.c –lm the –lm fixes the problem.

I was just wondering if the...
Forum: C++ Dec 30th, 2007
Replies: 5
Views: 4,180
Posted By guy40az
I am a new to linux and the gcc system I was just wondering if someone could answer a couple of questions about the including hearder files like the math.h file.

I was making a simple program and...
Forum: C++ Dec 20th, 2007
Replies: 2
Views: 626
Posted By guy40az
Could someone recommend a C++ compiler to write programs on a linux platform. I am just looking to write some programs in the shell not really looking to do any X-windows programming right now.
Forum: C++ Dec 12th, 2007
Replies: 3
Views: 1,318
Posted By guy40az
Do you have a reason why you are running borland c++ 3.11??

I can tell you that the program will not run on a computer that has no clue what DOS stretch mode is .
Forum: Pascal and Delphi Dec 12th, 2007
Replies: 2
Views: 837
Posted By guy40az
If you could post the code you have so far I would be happy to help you.
Forum: Visual Basic 4 / 5 / 6 Dec 12th, 2007
Replies: 8
Views: 4,178
Posted By guy40az
You could use a program called VirtualBox but you would still have to have a windows OS running in the VirtualBox. VirtualBox is a program that will allow you to run multiple OS at the same time.
...
Forum: C++ Dec 11th, 2007
Replies: 4
Views: 1,725
Posted By guy40az
here is a listing of the codes they are in Hex so you will have to convert them to decimal.


http://flint.cs.yale.edu/cs421/papers/art-of-asm/pdf/APNDXC.PDF
Forum: C++ Dec 11th, 2007
Replies: 4
Views: 1,725
Posted By guy40az
The extended ASCII key codes are

F1=59,F2=60,F3=61,F4=62,F5=63 F6=64,F7=65,F8=66,F9=67,F10=68

Is that what you are referring to
Forum: Legacy and Other Languages Dec 11th, 2007
Replies: 2
Views: 2,062
Posted By guy40az
here is a link for qbasic

http://www.geocities.com/TimesSquare/Arena/5451/qbasic/downloads/
Forum: Visual Basic 4 / 5 / 6 Dec 11th, 2007
Replies: 41
Views: 62,980
Posted By guy40az
Actually going from qbasic to VB is not all that difficult. You will be surprised how much faster you can make programs.
Forum: C++ Dec 11th, 2007
Replies: 2
Views: 624
Posted By guy40az
I was wondering what versions of visual studio are compatible with Vista?
Forum: C++ Dec 7th, 2007
Replies: 9
Views: 1,578
Posted By guy40az
If you are talking about a virtual partition that is created like ghost does to restart your computer in DOS mode, then I would like to see the source code on how that is done as well.

Let me...
Forum: C++ Sep 7th, 2007
Replies: 3
Solved: static lib file
Views: 2,349
Posted By guy40az
I am using Visual C++ version 6. I need to know how to add a .lib file to a project. I want to add it as a static lib file.
Forum: USB Devices and other Peripherals Jul 4th, 2007
Replies: 3
Views: 2,222
Posted By guy40az
This error occurs because the Spooler service has not been started or has stopped working. To start the Spooler service, follow these steps:

I. Click Start, and then click Control Panel.
II....
Forum: Pascal and Delphi Jul 3rd, 2007
Replies: 3
Views: 4,146
Posted By guy40az
What brand is the USB Parallel converter?
I am just taking a guess here but it could be that the converter is using 0x278 for the memory location of the port and not 0x378 . Look at the manual and...
Forum: Motherboards, CPUs and RAM Jul 3rd, 2007
Replies: 1
Views: 1,162
Posted By guy40az
You do not need to have pairs of memory sticks in the motherboard, depending on the MB you can have 3 different sizes of memory sticks on your board.
Look up the specs on your MB and it will give...
Forum: C May 5th, 2007
Replies: 6
Views: 8,009
Posted By guy40az
The Month and the Year are integer variables. I used a double varible for the day because later in the program I will be adding the fraction of the day it. I need to have 6 digits of precision later...
Forum: C May 5th, 2007
Replies: 6
Views: 8,009
Posted By guy40az
This is what I have for the code to get the system date and put it in 3 variables, is this the best way to do this?

void main()

{

struct tm *Sys_T = NULL;

...
Forum: C May 4th, 2007
Replies: 6
Views: 8,009
Posted By guy40az
I am trying to get the system date into 3 different varibles Month,Day, and Year but I cant figure out how to get the system date from the OS.
Forum: C++ May 4th, 2007
Replies: 7
Views: 3,459
Posted By guy40az
Yes I am in agreement it should run fin on a XP OS. Must have been a problem with the install I would try to reinstall it.
Forum: C++ May 4th, 2007
Replies: 5
Views: 5,669
Posted By guy40az
in DEV C++


#include <windows.h>

void gotoxy(int x, int y)
{
COORD coord;
coord.X = x;
coord.Y = y;
Forum: C++ May 4th, 2007
Replies: 5
Views: 5,669
Posted By guy40az
if you are using visual C++ it is very simple to write your own functions.

// function definition -- requires windows.h

void gotoxy(int x, int y)
{
HANDLE hConsoleOutput;
COORD...
Forum: C++ Apr 1st, 2007
Replies: 12
Views: 2,306
Posted By guy40az
Are you using Dev-C++ ver 4. and should i be able to run both vc6 and Dev C++ 4 on the same computer and same hard drive partition.
Forum: C++ Apr 1st, 2007
Replies: 11
Views: 4,269
Posted By guy40az
Thanks for the info.
Forum: C++ Apr 1st, 2007
Replies: 11
Views: 4,269
Posted By guy40az
How do i get the cout << "GL = " << GL[PN]*180/PI;
to print out to six digits after the decimal point.
Showing results 1 to 40 of 50

 


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

©2003 - 2009 DaniWeb® LLC