Hi,
I have a SQL private void called from public static ArrayList like :
Previous code is called from the following code :
I receive the following error:
CS0120 È necessario un riferimento all'oggetto per la proprietà, il metodo o il campo non statico 'Form_Parametri.Insert_SQL_Par_Rotore(string, string, string, string, string, string, string, string)'
could you please give me a suggestion how to solve this issue ?
Regards,
Paolo
I have a SQL private void called from public static ArrayList like :
C#:
public static ArrayList Parametri_Rotore()
{
ArrayList arl = new ArrayList();
par p;
int id = Mex.PAR_ROTORE + 1;
int id_par;
// Descrizione
p = new par(); id_par = 0;
p.par_descr = Mex.M[id]; id++;
p.par_tipo = TEXTBOX_STRINGA;
p.par_min = 0;
p.par_max = 0;
p.par_lenght = 20;
p.par_enable = Abilita_Parametro(OPERATORE);
arl.Add(p);
Insert_SQL_Par_Rotore(id.ToString(), p.par_descr, p.par_um, p.par_tipo.ToString(), p.par_min.ToString(), p.par_max.ToString(), p.par_lenght.ToString(), p.par_enable.ToString());
// ...
}
Previous code is called from the following code :
C#:
private void Insert_SQL_Par_Rotore(string IDParametroProg_string, string Descrizione_string, string UnitaMisura_string, string Tipo_string, string Min_string, string Max_string, string Perc_string, string Perc_Enable_string)
{
// ...
}
I receive the following error:
CS0120 È necessario un riferimento all'oggetto per la proprietà, il metodo o il campo non statico 'Form_Parametri.Insert_SQL_Par_Rotore(string, string, string, string, string, string, string, string)'
could you please give me a suggestion how to solve this issue ?
Regards,
Paolo
Last edited by a moderator: