I'm using Visual C++ 2005 Express, and I see that this type of error message has been giving a lot of people problems, but after trying a few of the fixes posted here, my project still gets the same error message.
Here's a snippet of my .h file:
//randomcard.h
int
randomcard(void){
and here's the top part of my .cpp file:
#include
<stdlib.h>#include
<stdio.h>#include
<ctype.h>#include
<string.h>#include
<time.h>#include
"randomcard.h"#include
<iostream>;Please let me know if you need anything else. I turned off the header "stdafx.h" hoping that would fix it...but it still doesn't work.
Thanks in advance!

fatal error C1083: Cannot open include file: 'randomcard.h': No such file or directory
Armageddon
-----------------------------------------------------------------------------
Jeries Shahin
Thanks!
B o g d a n
Parag Kudtarkar
Would you give us more info If possible, give us a simple standalone code. I will try it myself. The result will be presented here ASAP!
AravananRaman
Error 1 fatal error C1083: Cannot open include file: 'randomcard.h': No such file or directory c:\my documents\visual studio 2005\projects\randomcard\randomcard\random.cpp 6
Note I did not include your H file.
The result seems to indicate that your source code should compile.
Hope this helps.
DocJames
Congrats!
At first glance, C1083 error seems to not be so significant. I think it actually means a lot. In terms of program organization, it indicates that you do not provide other separately compiled program segments with necessary interface info. In this context, I would say that you failed to define the problem that should be solved.
Coding is very important, of course. At the same time, program design is also important.
Hope this helps.
Bill S
and I have also created and added randomcard.h to the project, but am getting this error message fatal error C1083: Cannot open include file: 'randomcard.h': No such file or directory, so why is it not being seen
Atosecond
You made a very simple mistake. Look at this;
#include <iostream>;
vinay dubey
hi....
i tried to run a program that make c++ read the data from excel... but fatal error c1083 figure out...how can i solve this problem
thanks....