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

Interfaces Graphiques Discussion :

Récupération string [Débutant]


Sujet :

Interfaces Graphiques

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre averti
    Homme Profil pro
    Étudiant
    Inscrit en
    Mai 2011
    Messages
    13
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Somme (Picardie)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Électronique et micro-électronique

    Informations forums :
    Inscription : Mai 2011
    Messages : 13
    Par défaut Récupération string
    Hello,

    Je cherche à enregistrer des valeurs entrées dans un gui pour ensuite les réutiliser pour faire un calcul. C'est à dire que chaque case remplie doit m'enregistrer des nombres, qui seront réutiliés dans une fonction appelée par le bouton.

    J'aimerai savoir comment la fonction de retour
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    function simulation_Callback(hObject, eventdata, handles)
    activée par un bouton va prendre les valeurs dans les fonctions de type
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    function *_Callback(hObject, eventdata, handles)
    function *_CreateFcn(hObject, eventdata, handles)
    Il y'aura ensuite des calculs dans la fonction simulation

    voilà le code complet :
    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
    function varargout = it(varargin)
     
    gui_Singleton = 1;
    gui_State = struct('gui_Name',       mfilename, ...
                       'gui_Singleton',  gui_Singleton, ...
                       'gui_OpeningFcn', @it_OpeningFcn, ...
                       'gui_OutputFcn',  @it_OutputFcn, ...
                       'gui_LayoutFcn',  [] , ...
                       'gui_Callback',   []);
    if nargin && ischar(varargin{1})
        gui_State.gui_Callback = str2func(varargin{1});
    end
     
    if nargout
        [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
    else
        gui_mainfcn(gui_State, varargin{:});
    end
     
    function it_OpeningFcn(hObject, eventdata, handles, varargin)
     
    handles.output = hObject;
     
    guidata(hObject, handles);
     
    function varargout = it_OutputFcn(hObject, eventdata, handles) 
     
    varargout{1} = handles.output;
     
     
    % --- Executes on button press in pushbutton1.
    function simulation_Callback(hObject, eventdata, handles)
    % hObject    handle to pushbutton1 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
     
     
     
     
    % --- Executes on button press in reset.
    function reset_Callback(hObject, eventdata, handles)
    initialize_gui(gcbf, handles, true);function initialize_gui(fig_handle, handles, isreset)
    if isfield(handles, 'metricdata') && ~isreset
        return;
    end
     
    set(handles.N, 'String', '');
    set(handles.L,  'String', '');
    set(handles.nb, 'String', '');
     
    set(handles.lambda, 'String', '');
    set(handles.z,  'String', '');
    set(handles.H, 'String', '');
     
     
    set(handles.x1, 'String', '');
    set(handles.dx,  'String', '');
    set(handles.dy, 'String', '');
     
     
    set(handles.la, 'String', '');
    set(handles.I0,  'String', '');
     
     
    guidata(handles.figure1, handles);
     
     
    function N_Callback(hObject, eventdata, handles) %variables à récuperer 
     
    input = str2num(get(hObject,'String'));
     
     
    function N_CreateFcn(hObject, eventdata, handles)
     
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end
     
     
    function L_Callback(hObject, eventdata, handles)
     
    input = str2num(get(hObject,'String'));
     
     
     
     
    function L_CreateFcn(hObject, eventdata, handles)
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end
     
     
     
     
    function z_Callback(hObject, eventdata, handles)
     
    input =str2num(get(hObject,'String'));
     
    if (isempty(input))
         set(hObject,'String','0')
    end
     
     
     
    function z_CreateFcn(hObject, eventdata, handles)
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end
     
     
    function H_Callback(hObject, eventdata, handles)
     
        input = str2num(get(hObject,'String'));
     
     
     
     
    function H_CreateFcn(hObject, eventdata, handles)
     
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end
     
     
     
     
     
    function dx_Callback(hObject, eventdata, handles)
     
       input = str2num(get(hObject,'String'));
     
     
    function dx_CreateFcn(hObject, eventdata, handles)
     
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end
     
     
    function dy_Callback(hObject, eventdata, handles)
     
        input = str2num(get(hObject,'String'));
     
     
     
    function dy_CreateFcn(hObject, eventdata, handles)
     
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end
     
     
     
    function nb_Callback(hObject, eventdata, handles)
     
        input = str2num(get(hObject,'String'));
     
     
     
    function nb_CreateFcn(hObject, eventdata, handles)
     
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end
     
     
     
    function la_Callback(hObject, eventdata, handles)
     
        input = str2num(get(hObject,'String'));
     
     
    function la_CreateFcn(hObject, eventdata, handles)
     
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end
     
     
    function I0_Callback(hObject, eventdata, handles)
     
       input = str2num(get(hObject,'String'));
     
     
     
    function I0_CreateFcn(hObject, eventdata, handles)
     
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end
     
     
    function lambda_Callback(hObject, eventdata, handles)
     
       input = str2num(get(hObject,'String'));
     
     
    function lambda_CreateFcn(hObject, eventdata, handles)
     
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end
     
     
     
     
     
    function x1_Callback(hObject, eventdata, handles)
     
       input = str2num(get(hObject,'String'));
     
    function x1_CreateFcn(hObject, eventdata, handles)
     
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end;
    Merci

  2. #2
    Invité
    Invité(e)
    Par défaut
    Bonjour et bienvenue sur le forum,

    Pour cela il te faut utiliser la structure handles et la fonction guidata:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    function *_Callback(hObject, eventdata, handles)
     
    handles.Nom2maVariable = str2double(get(hObject,'String')); % str2double plus adapté
    guidata(gcbf,handles); % sauvegarde structure handles

  3. #3
    Membre averti
    Homme Profil pro
    Étudiant
    Inscrit en
    Mai 2011
    Messages
    13
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Somme (Picardie)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Électronique et micro-électronique

    Informations forums :
    Inscription : Mai 2011
    Messages : 13
    Par défaut
    Bonsoir, merci

    J'ai suivi vos recommendations :
    et voilà le résultat.
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
     
     ??? Undefined function or variable 'H'.
     
    Error in ==> it>simulation_Callback at 37
    dX=H/N;
    Dois je utiliser handles.H pour ma fonction de calcul? et ce pour chaque variable?
    Je suis peu initié et je comprends peu les tutos du net.

    Bonne soirée!

    Merci

  4. #4
    Invité
    Invité(e)
    Par défaut
    Dois je utiliser handles.H pour ma fonction de calcul?
    Oui c'est le principe, toutes les variables sont contenues dans la structure handles.
    Il te suffisait d'essayer pour voir que cela marchait.

  5. #5
    Membre averti
    Homme Profil pro
    Étudiant
    Inscrit en
    Mai 2011
    Messages
    13
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Somme (Picardie)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Électronique et micro-électronique

    Informations forums :
    Inscription : Mai 2011
    Messages : 13
    Par défaut
    Super, vous êtes formidable!

    Oui, j'aurai pu vérifier mai j'ai perdu tellement de temps que je préfère avoir l'avis d'un pro!

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

Discussions similaires

  1. Récupération string avant un caractère défini?
    Par toutounesan dans le forum VB.NET
    Réponses: 2
    Dernier message: 17/06/2011, 14h24
  2. Date et récupération en String
    Par fatenatwork dans le forum Collection et Stream
    Réponses: 7
    Dernier message: 13/06/2008, 11h50
  3. pb récupération d'une partie d'un String
    Par yakup.67 dans le forum Débuter avec Java
    Réponses: 6
    Dernier message: 21/04/2008, 21h03
  4. Récupération d'une valeur en string sous format spécifique
    Par casavba dans le forum Macros et VBA Excel
    Réponses: 7
    Dernier message: 14/11/2007, 14h04
  5. html:form checkbox String[] récupération
    Par tommey dans le forum Struts 1
    Réponses: 4
    Dernier message: 29/12/2006, 17h43

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