IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Développement 2D, 3D et Jeux Discussion :

Lua 'veut pas se lancer


Sujet :

Développement 2D, 3D et Jeux

  1. #1
    Membre actif
    Avatar de Le Barde
    Homme Profil pro
    Chanteur
    Inscrit en
    Juillet 2007
    Messages
    343
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France, Loiret (Centre)

    Informations professionnelles :
    Activité : Chanteur

    Informations forums :
    Inscription : Juillet 2007
    Messages : 343
    Points : 259
    Points
    259
    Par défaut Lua 'veut pas se lancer
    Bonjour,
    Dans le cadre d'un projet de recherche, j'ai été amené à recompiler maintes et maintes fois tout le projet C++ à cause non pas de la programmation mais de l'utilisation du programme et de son comportement. Et c'est là que j'ai entendu parler de langages de scripts. J'ai regardé un peu tout ce qui se fait, et Lua semble décidément LE langage qui convient

    Mon problème n'est pas un problème de programmation, enfin je présume, mais un problème d'inclusion de bibliothèque. Jugez-en par vous-mêmes :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    #include <lua50/lua.h>
    int main(int argc, char** argv)
    {
    	try
    	{
    	// Chargement des vriables Lua.
    	lua_State * PileLua;
    	PileLua = lua_open();
    	// Rien pour l'instant, 'faut déjà que le reste marche...
    	lua_close(PileLua);
    	return 0;
    	}
    	catch(...)
    	{// etc.}
    }
    Bon, a priori, ça ne mange pas de pain... Je suis sous KDevelop. Voici ce que j'ai en sortie de la construction :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    cd '/home/adrien/Documents/Travail/recherche/StageFlowShop/C++' && QTDIR="/usr/share/qt3" make -j1 
    g++ -c -pipe -Wall -W -g -D_REENTRANT -DQT_THREAD_SUPPORT -DQT_SHARED -DQT_TABLET_SUPPORT -I/usr/share/qt3/mkspecs/default -I. -I/usr/include/qt3 -o Application.o Application.cpp
    Application.cpp: In function «int main(int, char**)":
    Application.cpp:106: attention : comparaison entre des expressions entières signée et non signée
    Application.cpp:110: attention : comparaison entre des expressions entières signée et non signée
    Application.cpp:152: attention : comparaison entre des expressions entières signée et non signée
    Application.cpp:155: attention : comparaison entre des expressions entières signée et non signée
    Application.cpp: At global scope:
    Application.cpp:24: attention : unused parameter «argc"
    test -d Executable/ || mkdir -p Executable/
    g++ -o Executable/Projet Application.o Atelier.o BandB.o ListeNoeuds.o Noeud.o Distrib.o Ordo.o AtelierPerfo.o Palier.o PalierPremierDernierJob.o Fichier.o -L/usr/share/qt3/lib -L/usr/X11R6/lib -lqt-mt -lXext -lX11 -lm -lpthread
    Application.o: In function `main':
    /home/adrien/Documents/Travail/recherche/StageFlowShop/C++/Application.cpp:34: undefined reference to `lua_open()'
    /home/adrien/Documents/Travail/recherche/StageFlowShop/C++/Application.cpp:38: undefined reference to `lua_close(lua_State*)'
    collect2: ld a retourné 1 code d'état d'exécution
    make: *** [Executable/Projet] Erreur 1
    *** Exited with status: 2 ***
    J'ai posté ici parce que je pensais que c'était les développeurs de jeux vidéo qui s'y connaissaient le mieux...

    Mais... -> Undefined reference to lua_open() ??
    Hayiiiiiiiiiiiiii !

  2. #2
    Rédacteur
    Avatar de Laurent Gomila
    Profil pro
    Développeur informatique
    Inscrit en
    Avril 2003
    Messages
    10 651
    Détails du profil
    Informations personnelles :
    Âge : 39
    Localisation : France, Moselle (Lorraine)

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Avril 2003
    Messages : 10 651
    Points : 15 920
    Points
    15 920
    Par défaut
    Tu n'as pas lié à la bibliothèque de lua (-llua ?).

  3. #3
    Membre actif
    Avatar de Le Barde
    Homme Profil pro
    Chanteur
    Inscrit en
    Juillet 2007
    Messages
    343
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France, Loiret (Centre)

    Informations professionnelles :
    Activité : Chanteur

    Informations forums :
    Inscription : Juillet 2007
    Messages : 343
    Points : 259
    Points
    259
    Par défaut
    Ça n'a pas l'air, en effet, mais je ne trouve pas où mettre l'option, je suis sous KDevelop. (j'vais chercher comment on fait)

    Merci pour la réponse
    Hayiiiiiiiiiiiiii !

  4. #4
    Membre actif
    Avatar de Le Barde
    Homme Profil pro
    Chanteur
    Inscrit en
    Juillet 2007
    Messages
    343
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France, Loiret (Centre)

    Informations professionnelles :
    Activité : Chanteur

    Informations forums :
    Inscription : Juillet 2007
    Messages : 343
    Points : 259
    Points
    259
    Par défaut
    Comment faut-il faire pour intégrer une biliothèque comme ça avec qmake ?
    Hayiiiiiiiiiiiiii !

  5. #5
    Membre actif
    Avatar de Le Barde
    Homme Profil pro
    Chanteur
    Inscrit en
    Juillet 2007
    Messages
    343
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France, Loiret (Centre)

    Informations professionnelles :
    Activité : Chanteur

    Informations forums :
    Inscription : Juillet 2007
    Messages : 343
    Points : 259
    Points
    259
    Par défaut
    J'ai essayé -lua, -llua, -lua50 et -llua50, et ça ne fonctionne pas dans le qmake :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    # TARGET = 
    TEMPLATE = app
    LANGUAGE = C++
    DESTDIR = Executable
    CONFIG += debug -llua50
     
     
    SOURCES = Application.cpp
     
    # Ajout des sources du Flowshop.
     
    SOURCES += Flowshop/Atelier.cpp 
    HEADERS += Flowshop/Atelier.h
     
    # Ajout du Branch and Bound
    SOURCES += Flowshop/BandB/BandB.cpp Flowshop/BandB/ListeNoeuds.cpp Flowshop/BandB/Noeud.cpp
    HEADERS += Flowshop/BandB/BandB.h   Flowshop/BandB/ListeNoeuds.h   Flowshop/BandB/Noeud.h
     
    # Ajout des autres membres du Flowshop
    SOURCES += Flowshop/Distrib.cpp Flowshop/Ordo.cpp
    HEADERS += Flowshop/Distrib.h   Flowshop/Ordo.h
     
     
    # Ajout des classes d'entrées-sorties
     
    SOURCES += 
    HEADERS += Entrees-Sorties/Console.h
     
    # Classes annexes (surtout des classes templates) 
     
    SOURCES += 
    HEADERS += ClassesAnnexes/Array.h ClassesAnnexes/Liste.h ClassesAnnexes/ListeTriee.h
     
     
     
    ########################################
    #		Partie Flowshop Perfo		   #
    ########################################
     
    SOURCES += FlowshopPerfo/AtelierPerfo.cpp FlowshopPerfo/Palier.cpp FlowshopPerfo/PalierPremierDernierJob.cpp \
    Entrees-Sorties/Fichier.cpp
    HEADERS += FlowshopPerfo/AtelierPerfo.h   FlowshopPerfo/Palier.h   FlowshopPerfo/PalierPremierDernierJob.h \
    Entrees-Sorties/Fichier.h
    DISTFILES += Données/Performances.dat Données/DuréesTravaux.dat \
    Executable/Résultat.csv
    Donc j'ai essayé directement dans le Makefile :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    #############################################################################
    # Makefile for building: Executable/Projet
    # Generated by qmake (1.07a) (Qt 3.3.7) on: Wed Aug 29 09:03:55 2007
    # Project:  Projet.pro
    # Template: app
    # Command: $(QMAKE) -o Makefile Projet.pro
    #############################################################################
     
    ####### Compiler, tools and options
     
    CC       = gcc
    CXX      = g++
    LEX      = flex
    YACC     = yacc
    CFLAGS   = -pipe -Wall -W -g -D_REENTRANT  -DQT_THREAD_SUPPORT -DQT_SHARED -DQT_TABLET_SUPPORT
    CXXFLAGS = -pipe -Wall -W -g -D_REENTRANT  -DQT_THREAD_SUPPORT -DQT_SHARED -DQT_TABLET_SUPPORT
    LEXFLAGS = 
    YACCFLAGS= -d
    INCPATH  = -I/usr/share/qt3/mkspecs/default -I. -I/usr/include/qt3
    LINK     = g++
    LFLAGS   = 
    LIBS     = $(SUBLIBS) -L/usr/share/qt3/lib -L/usr/X11R6/lib -lqt-mt -lXext -lX11 -lm -lpthread -llua50
    AR       = ar cqs
    RANLIB   = 
    MOC      = /usr/share/qt3/bin/moc
    UIC      = /usr/share/qt3/bin/uic
    QMAKE    = qmake
    TAR      = tar -cf
    GZIP     = gzip -9f
    COPY     = cp -f
    COPY_FILE= $(COPY)
    COPY_DIR = $(COPY) -r
    INSTALL_FILE= $(COPY_FILE)
    INSTALL_DIR = $(COPY_DIR)
    DEL_FILE = rm -f
    SYMLINK  = ln -sf
    DEL_DIR  = rmdir
    MOVE     = mv -f
    CHK_DIR_EXISTS= test -d
    MKDIR    = mkdir -p
     
    ####### Output directory
     
    OBJECTS_DIR = ./
     
    ####### Files
     
    HEADERS = Flowshop/Atelier.h \
    		Flowshop/BandB/BandB.h \
    		Flowshop/BandB/ListeNoeuds.h \
    		Flowshop/BandB/Noeud.h \
    		Flowshop/Distrib.h \
    		Flowshop/Ordo.h \
    		Entrees-Sorties/Console.h \
    		ClassesAnnexes/Array.h \
    		ClassesAnnexes/Liste.h \
    		ClassesAnnexes/ListeTriee.h \
    		FlowshopPerfo/AtelierPerfo.h \
    		FlowshopPerfo/Palier.h \
    		FlowshopPerfo/PalierPremierDernierJob.h \
    		Entrees-Sorties/Fichier.h
    SOURCES = Application.cpp \
    		Flowshop/Atelier.cpp \
    		Flowshop/BandB/BandB.cpp \
    		Flowshop/BandB/ListeNoeuds.cpp \
    		Flowshop/BandB/Noeud.cpp \
    		Flowshop/Distrib.cpp \
    		Flowshop/Ordo.cpp \
    		FlowshopPerfo/AtelierPerfo.cpp \
    		FlowshopPerfo/Palier.cpp \
    		FlowshopPerfo/PalierPremierDernierJob.cpp \
    		Entrees-Sorties/Fichier.cpp
    OBJECTS = Application.o \
    		Atelier.o \
    		BandB.o \
    		ListeNoeuds.o \
    		Noeud.o \
    		Distrib.o \
    		Ordo.o \
    		AtelierPerfo.o \
    		Palier.o \
    		PalierPremierDernierJob.o \
    		Fichier.o
    FORMS = 
    UICDECLS = 
    UICIMPLS = 
    SRCMOC   = 
    OBJMOC = 
    DIST	   = Données/Performances.dat \
    		Données/DuréesTravaux.dat \
    		Executable/Résultat.csv \
    		Projet.pro
    QMAKE_TARGET = Projet
    DESTDIR  = Executable/
    TARGET   = Executable/Projet
     
    first: all
    ####### Implicit rules
     
    .SUFFIXES: .c .o .cpp .cc .cxx .C
     
    .cpp.o:
    	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
     
    .cc.o:
    	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
     
    .cxx.o:
    	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
     
    .C.o:
    	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
     
    .c.o:
    	$(CC) -c $(CFLAGS) $(INCPATH) -o $@ $<
     
    ####### Build rules
     
    all: Makefile $(TARGET)
     
    $(TARGET):  $(UICDECLS) $(OBJECTS) $(OBJMOC)  
    	test -d Executable/ || mkdir -p Executable/
    	$(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJMOC) $(OBJCOMP) $(LIBS)
     
    mocables: $(SRCMOC)
    uicables: $(UICDECLS) $(UICIMPLS)
     
    $(MOC): 
    	( cd $(QTDIR)/src/moc && $(MAKE) )
     
    Makefile: Projet.pro  /usr/share/qt3/mkspecs/default/qmake.conf /usr/share/qt3/lib/libqt-mt.prl
    	$(QMAKE) -o Makefile Projet.pro
    qmake: 
    	@$(QMAKE) -o Makefile Projet.pro
     
    dist: 
    	@mkdir -p .tmp/Projet && $(COPY_FILE) --parents $(SOURCES) $(HEADERS) $(FORMS) $(DIST) .tmp/Projet/ && ( cd `dirname .tmp/Projet` && $(TAR) Projet.tar Projet && $(GZIP) Projet.tar ) && $(MOVE) `dirname .tmp/Projet`/Projet.tar.gz . && $(DEL_FILE) -r .tmp/Projet
     
    mocclean:
     
    uiclean:
     
    yaccclean:
    lexclean:
    clean:
    	-$(DEL_FILE) $(OBJECTS)
    	-$(DEL_FILE) *~ core *.core
     
     
    ####### Sub-libraries
     
    distclean: clean
    	-$(DEL_FILE) Executable/$(TARGET) $(TARGET)
     
     
    FORCE:
     
    ####### Compile
     
    Application.o: Application.cpp Flowshop/Atelier.h \
    		Flowshop/Ordo.h \
    		Flowshop/BandB/BandB.h \
    		Entrees-Sorties/Console.h \
    		FlowshopPerfo/AtelierPerfo.h \
    		Entrees-Sorties/Fichier.h \
    		Flowshop/BandB/Noeud.h \
    		Flowshop/BandB/ListeNoeuds.h \
    		Entrees-Sorties/Console.tpp \
    		ClassesAnnexes/Liste.h \
    		ClassesAnnexes/ListeTriee.h \
    		FlowshopPerfo/Palier.h \
    		ClassesAnnexes/Liste.tpp \
    		ClassesAnnexes/ListeTriee.tpp
     
    Atelier.o: Flowshop/Atelier.cpp Flowshop/Atelier.h \
    		Flowshop/Distrib.h
    	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o Atelier.o Flowshop/Atelier.cpp
     
    BandB.o: Flowshop/BandB/BandB.cpp Flowshop/BandB/BandB.h \
    		Entrees-Sorties/Console.h \
    		Flowshop/Ordo.h \
    		Flowshop/BandB/Noeud.h \
    		Flowshop/BandB/ListeNoeuds.h \
    		Flowshop/Atelier.h \
    		Entrees-Sorties/Console.tpp
    	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o BandB.o Flowshop/BandB/BandB.cpp
     
    ListeNoeuds.o: Flowshop/BandB/ListeNoeuds.cpp Flowshop/BandB/Noeud.h \
    		Flowshop/BandB/ListeNoeuds.h
    	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ListeNoeuds.o Flowshop/BandB/ListeNoeuds.cpp
     
    Noeud.o: Flowshop/BandB/Noeud.cpp Flowshop/BandB/Noeud.h \
    		Flowshop/BandB/ListeNoeuds.h \
    		Flowshop/BandB/BandB.h \
    		Flowshop/Ordo.h \
    		Flowshop/Atelier.h
    	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o Noeud.o Flowshop/BandB/Noeud.cpp
     
    Distrib.o: Flowshop/Distrib.cpp Flowshop/Distrib.h
    	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o Distrib.o Flowshop/Distrib.cpp
     
    Ordo.o: Flowshop/Ordo.cpp Flowshop/Atelier.h \
    		Flowshop/Ordo.h \
    		ClassesAnnexes/Array.h \
    		Entrees-Sorties/Console.h \
    		Flowshop/BandB/BandB.h \
    		ClassesAnnexes/Extrema.h \
    		ClassesAnnexes/Array.tpp \
    		Entrees-Sorties/Console.tpp \
    		Flowshop/BandB/Noeud.h \
    		Flowshop/BandB/ListeNoeuds.h
    	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o Ordo.o Flowshop/Ordo.cpp
     
    AtelierPerfo.o: FlowshopPerfo/AtelierPerfo.cpp FlowshopPerfo/AtelierPerfo.h \
    		Flowshop/Atelier.h \
    		FlowshopPerfo/Palier.h \
    		ClassesAnnexes/Array.h \
    		ClassesAnnexes/Liste.h \
    		ClassesAnnexes/ListeTriee.h \
    		Flowshop/Ordo.h \
    		ClassesAnnexes/Liste.tpp \
    		ClassesAnnexes/ListeTriee.tpp \
    		ClassesAnnexes/Array.tpp
    	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o AtelierPerfo.o FlowshopPerfo/AtelierPerfo.cpp
     
    Palier.o: FlowshopPerfo/Palier.cpp ClassesAnnexes/Extrema.h \
    		Flowshop/Atelier.h \
    		FlowshopPerfo/AtelierPerfo.h \
    		FlowshopPerfo/Palier.h \
    		FlowshopPerfo/PalierPremierDernierJob.h \
    		Flowshop/Ordo.h \
    		ClassesAnnexes/Liste.h \
    		ClassesAnnexes/ListeTriee.h \
    		ClassesAnnexes/Liste.tpp \
    		ClassesAnnexes/ListeTriee.tpp
    	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o Palier.o FlowshopPerfo/Palier.cpp
     
    PalierPremierDernierJob.o: FlowshopPerfo/PalierPremierDernierJob.cpp FlowshopPerfo/PalierPremierDernierJob.h \
    		FlowshopPerfo/Palier.h \
    		ClassesAnnexes/Array.h \
    		ClassesAnnexes/Extrema.h \
    		FlowshopPerfo/AtelierPerfo.h \
    		Flowshop/Atelier.h \
    		Flowshop/Ordo.h \
    		ClassesAnnexes/Liste.h \
    		ClassesAnnexes/ListeTriee.h \
    		ClassesAnnexes/Liste.tpp \
    		ClassesAnnexes/ListeTriee.tpp \
    		ClassesAnnexes/Array.tpp
    	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o PalierPremierDernierJob.o FlowshopPerfo/PalierPremierDernierJob.cpp
     
    Fichier.o: Entrees-Sorties/Fichier.cpp Entrees-Sorties/Fichier.h
    	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o Fichier.o Entrees-Sorties/Fichier.cpp
     
    ####### Install
     
    install:  
     
    uninstall:
    En rajoutant les quatre possibilités à la ligne LIB, ça ne fonctionne toujours pas, mais pour -llua50 à l'exécution du make j'ai toujours les "undefine reference to..."
    Hayiiiiiiiiiiiiii !

  6. #6
    Membre actif
    Avatar de Le Barde
    Homme Profil pro
    Chanteur
    Inscrit en
    Juillet 2007
    Messages
    343
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France, Loiret (Centre)

    Informations professionnelles :
    Activité : Chanteur

    Informations forums :
    Inscription : Juillet 2007
    Messages : 343
    Points : 259
    Points
    259
    Par défaut
    Bon, après avoir glané une ou deux infos, au passage j'ai appris l'utilisation de pkg-config --cflags et de pkg-config --libs

    Le flag est bien -llua50 (pour mon système), et maintenant lua_open() et lua_close() fonctionnent, ça compile.

    Maintenant ça me fait la même chose avec :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    luaopen_base(PileLua);      // opens the base library
    	luaopen_table(PileLua);     // opens the table library
    	luaopen_io(PileLua);        //opens the I/O library
    	luaopen_string(PileLua);    // opens the string lib.
    	luaopen_math(PileLua);      // opens the math lib.


    Ces fonctions sont dans lualib.h et lauxlib.h, comment puis-je savoir quelles sont les libs associées et le flag correspondant ?

    EDIT : c'était -llualib50
    Voilà, [RÉSOLU], merci !
    Hayiiiiiiiiiiiiii !

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Apache ne veut pas se lancer
    Par Amybond dans le forum Apache
    Réponses: 11
    Dernier message: 20/11/2008, 13h31
  2. Mon bouton ne veut pas me lancer mon Userform
    Par Spyder-ferrari dans le forum Macros et VBA Excel
    Réponses: 7
    Dernier message: 21/10/2008, 16h15
  3. fichier SWF qui ne veut pas se lancer
    Par arnaud_verlaine dans le forum Flash
    Réponses: 12
    Dernier message: 06/09/2006, 09h15
  4. java web start qui veut pas se lancer
    Par calvin dans le forum JWS
    Réponses: 4
    Dernier message: 30/06/2004, 11h42
  5. [Kylix] Un programme compilé ne veut pas se lancer
    Par LightBeam dans le forum EDI
    Réponses: 1
    Dernier message: 05/08/2003, 10h15

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo