Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » VC++ / MFC » Suche nachhilfe über mail für visual c++6

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 < [ 2 ] [ 3 ]
000
24.07.2003, 12:14 Uhr
~Fuat
Gast


Hallo leute

ich suche nachhilfe und begleitung um eine sache zuverstehen.ich komme einfach
nicht mehr weiter.

über den preis können wir reden.
bin dankbar für jede hilfe.

fuatk@???.de

grüße Fuat

Dieser Post wurde am 24.07.2003 um 13:08 Uhr von FloSoft editiert.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
24.07.2003, 13:08 Uhr
FloSoft
Medialer Over-Flow
(Administrator)


Hallo,
nimm einfach dieses Forum für Fragen, usw!
Dafür ist es da. Selbstverständlich ist das Forum kostenlos!
--
class God : public ChuckNorris { };
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
24.07.2003, 14:28 Uhr
~Fuat
Gast


ok. mein problen ist das.

Create a project, either manually or using the AppWizard.
Derive classes, as needed, from the ToolKit classes. The MIDI input, MIDI output, and sync device classes include virtual functions, so derived classes are needed if these functions are redefined.
Add all the necessary files to the project, including the MxMidi32.lib import library file and any ToolKit class implementations of classes that are used.
Define conditionals for each of the ToolKit classes that the program uses.
Use the ToolKit classes to implement MIDI support in the program.
It is amazingly easy to create the application skeleton using AppWizard. It creates all of the basic files and classes that are needed to build a working MFC application. Granted, the resulting program is shockingly dull, since it doesn't do anything useful, but it gets the ball rolling. Let's create one of these dull-as-rock programs and take a look at the organization of the code that the AppWizard generates. Once we understand the "free" boilerplate code, we can start adding MIDI support to make the program do something useful.

The Application Framework
All of the C++ examples in this book will begin life in the same way. In each case, we'll use the AppWizard to create the simplest possible program framework. For our first example, let's walk through all of the steps to create a proto-app. This is the only time we will do this; in every other example only the changes will be shown. All of the files for this project and all of the other examples in the book are included on the accompanying disk.

To build this first program, create a new project workspace by selecting New... from the Developer Studio's File menu. Highlight Project Workspace in the dialog box and click OK. In the next dialog, choose MFC AppWizard (exe) as the project type and give it a name. For this example, call it Ch10Ex1. Click OK to create the project and start the AppWizard.

Page 137


Choose the simplest possible options for the program in each of the six steps of the AppWizard. No Toolbars, no printing, no Status Bar. Databases, MAPI, OLE, ActiveX controls and sockets need not apply, either. Of course, you are free to use any or all of these features in your own programs, but for the purposes of these examples, simplicity is best. Following the Prime Directive, select Single Document for the application type and choose the appropriate resource language in AppWizard's Step 1 dialog. (English is the default setting.) Click Next to move to Step 2. There, select None for the database support and click Next. In Step 3, select None for OLE container support, clear the ActiveX controls checkbox, and click Next again. Step 4 lists features and support options. Deselect everything except 3D Controls, which will provide that nifty chiseled look. Click Next to move to the next step.

In Step 5, select "No, thank you" to eliminate the source file comments, and choose Shared DLL for the MFC library. AppWizard will add useful TODO comments to the source code if source file comments are selected. These comments can serve to remind you of things to add to the framework. However, for readability, these comments do not appear in the example projects supplied on the accompanying diskette.

The example programs link to the MFC library in its DLL form--instead of as a static library--to reduce the size of the executable. This requires that the proper version of the MFC DLL be installed on the system. Since there is a different version of this DLL for each version of the Microsoft compiler, you may wish to reduce the chance of confusion by linking to the MFC library statically. However, this will greatly increase the size of the executable. After making appropriate selections, click Next to move to the final step.

Step 6 shows the names of the classes and files that AppWizard will create and allows the base class name to be changed. Normally, the default names are readable enough. Click Finish, then click OK to make AppWizard create the files and open the new project.

Build the project to be sure everything came out correctly. For real excitement, run the resulting executable. Wow.

The AppWizard creates more than 15 files, but the most interesting ones are the four C++ source files. These files (Ch10Ex1.cpp, MainFrm.cpp, Ch10Ex1Doc.cpp, and
Ich gehe so vor

1. ich erstelle ein neues Dialog projekt.

2. Dann register Dateien und klicke mit der rechten maus taste QuellcodeDateien. dann Dateien zum projekt hinzufügen. (MIDI input, MIDI output, and sync device ) die .cpp


3. nachdem das geschehen ist füge die .h dateien

4. dann füge ich noch die MxMidi32.lib genau so wie oben .wenn ich es compielire dann erhalte ich 281Fehler.

Was Mache ich Falsch ?


--------------------Konfiguration: Fuat seq - Win32 Debug--------------------
Kompilierung läuft...
CMidiOutDeviceMenu.cpp
CMaximum MIDI\MFC Classes\CMidiOutDeviceMenu.cpp(12) : error C2653: 'CMidiOutDeviceMenu' : Keine Klasse oder Namespace
CMaximum MIDI\MFC Classes\CMidiOutDeviceMenu.cpp(14) : error C2065: 'Create' : nichtdeklarierter Bezeichner
CMaximum MIDI\MFC Classes\CMidiOutDeviceMenu.cpp(15) : warning C4508: 'CMidiOutDeviceMenu' : Funktion sollte einen Wert zurueckgeben; Ergebnistyp 'void' angenommen
CMaximum MIDI\MFC Classes\CMidiOutDeviceMenu.cpp(20) : error C2653: 'CMidiOutDeviceMenu' : Keine Klasse oder Namespace
CMaximum MIDI\MFC Classes\CMidiOutDeviceMenu.cpp(21) : error C2373: 'Create' : Neudefinition; unterschiedliche Modifizierer
CMaximum MIDI\MFC Classes\CMidiOutDeviceMenu.cpp(26) : error C2065: 'hPopupMenu' : nichtdeklarierter Bezeichner
CMaximum MIDI\MFC Classes\CMidiOutDeviceMenu.cpp(26) : error C2440: '=' : 'struct HMENU__ *' kann nicht in 'int' konvertiert werden
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
003
24.07.2003, 15:05 Uhr
FloSoft
Medialer Over-Flow
(Administrator)


du musst die header-dateien nicht nur im gleichen projekt haben, sondern diese auch in den AppWizardGeneratedFiles einbinden. Also z.b füge ganz am ende der stdafx.h


C++:
#include "midiinput.h"
//usw



hinzu, kompilier komplett neu und es sollte gehen
--
class God : public ChuckNorris { };
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
004
24.07.2003, 15:22 Uhr
~Fuat
Gast


wavvvvvv

FloSoft ich versuche schon seit 4 monaten das ding zum laufen
zubringen. jetz sind es nur noch zweifehler.


--------------------Konfiguration: Fuat seq - Win32 Debug--------------------
Kompilierung läuft...
StdAfx.cpp
cprogramme\microsoft visual studio\vc98\include\mmsystem.h(113) : error C2146: Syntaxfehler : Fehlendes ';' vor Bezeichner 'MMVERSION'
cprogramme\microsoft visual studio\vc98\include\mmsystem.h(113) : fatal error C1004: Unerwartetes Dateiende gefunden
Fehler beim Ausführen von cl.exe.

wenn ich den ersten fehler anklicke dann springt der cursor hier hin.

/* general data types */

#ifdef _WIN32
typedef UINT MMVERSION; /* major (high byte), minor (low byte) */

aber da feht kommt doch kein semikolon hin.


wenn ich den zweiten fehler anklicke dann springt der cursor hier hin.

wieder an die gleiche stelle.

habe ich was vergessen?

Dieser Post wurde am 24.07.2003 um 15:43 Uhr von FloSoft editiert.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
005
24.07.2003, 15:42 Uhr
FloSoft
Medialer Over-Flow
(Administrator)


du darfst nicht mmsystem.h vor der stdafx.h includieren.
Wenn du die in der stdafx.h includierst nach windows.h bzw afx.h

(in der stdafx.h eigene header möglichst immer am ende einfügen)
--
class God : public ChuckNorris { };

Dieser Post wurde am 24.07.2003 um 15:43 Uhr von FloSoft editiert.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
006
24.07.2003, 15:49 Uhr
~Fuat
Gast


in dem quellcode stdafx.cpp sind dies includiert

#include "stdafx.h"
#include "MaxMidi.h"
#include "MaxMidi.h"
#include "mmsystem.h"

oder muss ich es auch wo anders includieren ?
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
007
24.07.2003, 16:07 Uhr
~Fuat
Gast



C++:
#if !defined(AFX_STDAFX_H__68B3A266_BDCC_11D7_B1E1_000AE64F30C2__INCLUDED_)
#define AFX_STDAFX_H__68B3A266_BDCC_11D7_B1E1_000AE64F30C2__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#define VC_EXTRALEAN        // Selten verwendete Teile der Windows-Header nicht einbinden
#include "MaxMidi.h"




im quel code stdafx.h sieht es so aus

aber ich habe immer noch die zwei fehler.

C++:


#include <afxwin.h>         // MFC-Kern- und -Standardkomponenten
#include "mmsystem.h"

#include <afxext.h>         // MFC-Erweiterungen
#include <afxdtctl.h>        // MFC-Unterstützung für allgemeine Steuerelemente von Internet Explorer 4


#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h>            // MFC-Unterstützung für gängige Windows-Steuerelemente
#endif // _AFX_NO_AFXCMN_SUPPORT

#endif


Dieser Post wurde am 24.07.2003 um 16:11 Uhr von FloSoft editiert.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
008
24.07.2003, 16:10 Uhr
FloSoft
Medialer Over-Flow
(Administrator)


Hallo,
includier die MaxMidi.h vor dem letzten #endif!


C++:
#if !defined(AFX_STDAFX_H__68B3A266_BDCC_11D7_B1E1_000AE64F30C2__INCLUDED_)
#define AFX_STDAFX_H__68B3A266_BDCC_11D7_B1E1_000AE64F30C2__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#define VC_EXTRALEAN        // Selten verwendete Teile der Windows-Header nicht einbinden

im quel code stdafx.h sieht es so aus

aber ich habe immer noch die zwei fehler.



#include <afxwin.h>         // MFC-Kern- und -Standardkomponenten
#include "mmsystem.h"

#include <afxext.h>         // MFC-Erweiterungen
#include <afxdtctl.h>        // MFC-Unterstützung für allgemeine Steuerelemente von Internet Explorer 4


#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h>            // MFC-Unterstützung für gängige Windows-Steuerelemente
#endif // _AFX_NO_AFXCMN_SUPPORT

[b]// hier:
#include "MaxMidi.h"[/b]
#include "mmsystem.h"
#endif



und mach die includes aus der stdafx.cpp raus. Das dann da halt nur noch


C++:
#include "stdafx.h"



drinsteht
--
class God : public ChuckNorris { };
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
009
24.07.2003, 16:32 Uhr
~Fuat
Gast


so bald ich die datei #include "MaxMidi.h"

unterhalb der datei #include <afxwin.h>

schreibe erhalte ich wieder 216 fehler.

auch vor dem letzten #endif.

wenn ich es vor der datei <afxwin.h> schreibe
habe ich nur zwei fehler

o Gott.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 < [ 2 ] [ 3 ]     [ VC++ / MFC ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: