UTILIZANDO CONSTANTE PARA PREENCHER COMBO
eu tenho a seguinte constante
Public Const g_sTP_PFJ = ";JurÃÂÂdica=1;FÃÂÂsica=2"
então eu fiz o seguinte if:
If SQLPegaColLng(Rs!TP_PFJ) = TPPFJ_Fisica Then
cmbTP_PFJ.Text = g_sTP_PFJ
Else
cmbTP_PFJ.Text = g_sTP_PFJ
End If
ou seha se o registro TP_PFJ for igual a esse kra TPPFJ_Fisica então ele deve jogar o FÃÂÂsica na combo senão o JurÃÂÂdica. porém não está funcionando pq?
Public Const g_sTP_PFJ = ";JurÃÂÂdica=1;FÃÂÂsica=2"
então eu fiz o seguinte if:
If SQLPegaColLng(Rs!TP_PFJ) = TPPFJ_Fisica Then
cmbTP_PFJ.Text = g_sTP_PFJ
Else
cmbTP_PFJ.Text = g_sTP_PFJ
End If
ou seha se o registro TP_PFJ for igual a esse kra TPPFJ_Fisica então ele deve jogar o FÃÂÂsica na combo senão o JurÃÂÂdica. porém não está funcionando pq?
Fera! vc pode fazer assim:
------
ou
------
Ate mais.
Dim g_sTP_PFJ As string
------
If SQLPegaColLng(Rs!TP_PFJ) = TPPFJ_Fisica Then
g_sTP_PFJ = "FÃÂÂsica"
cmbTP_PFJ.Text = g_sTP_PFJ
Else
g_sTP_PFJ = "JurÃÂÂdica"
cmbTP_PFJ.Text = g_sTP_PFJ
End If
ou
Public Const Fisica = "FÃÂÂsica=2"
Public Const Juridica = "JurÃÂÂdica=1
------
If SQLPegaColLng(Rs!TP_PFJ) = TPPFJ_Fisica Then
cmbTP_PFJ.Text = Fisica
Else
cmbTP_PFJ.Text = Juridica
End If
Ate mais.
mas, em lugar algum vc esta usando isso g_sTP_PFJ
que variavel é essa TPPFJ_Fisica
If SQLPegaColLng(Rs!TP_PFJ) = 1 Then
g_sTP_PFJ = "FISICA"
cmbTP_PFJ.Text = g_sTP_PFJ
Else
g_sTP_PFJ = "JURIDICA"
cmbTP_PFJ.Text = g_sTP_PFJ
End If
que variavel é essa TPPFJ_Fisica
If SQLPegaColLng(Rs!TP_PFJ) = 1 Then
g_sTP_PFJ = "FISICA"
cmbTP_PFJ.Text = g_sTP_PFJ
Else
g_sTP_PFJ = "JURIDICA"
cmbTP_PFJ.Text = g_sTP_PFJ
End If
vlw
Tópico encerrado , respostas não são mais permitidas