Click here to Skip to main content
15,913,610 members

Comments by Gerry Logrosa (Top 12 by date)

Gerry Logrosa 19-Sep-11 1:34am View    
Is mobile-based application uses the same font with the windows-based? Because i'd tried in windows-based the chinese strings will display properly.
Gerry Logrosa 18-Sep-11 22:42pm View    
yes, the font I used is from charmap.exe but still display garbage. I have also installed "simsun & Nsimsun" font.
Gerry Logrosa 15-Sep-11 3:52am View    
during loading all items were loaded properly. The problem occur during selection changed. First I select item[0], then second select another item, third selection I observed that the item[0] is missing from the dropdownlist.
Gerry Logrosa 15-Sep-11 3:44am View    
Hi sir KenBonny,here code inside SelectedIndexChanged.

protected virtual void cboItemCode_SelectedIndexChanged(object sender, EventArgs e)

{

objCurrentInvoiceItem.ItemCode = cboItemCode.Text.ToString();

if (parentquotationNo != "")
{

GetJobAndTransportRate(out objTransportRate, out msg, out transportRateUOMList);

} DisplayItemInfo();
}
Gerry Logrosa 15-Sep-11 3:39am View    
No, I loaded all the items(List<classobject>) during form load.