Search Results

Search results 1-20 of 47.

This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

  • gSoap Compatibility

    Venkat_15 - - emNet related

    Post

    Hi, I am working on to port gsoap to Embos. But am not able to succed. Since I wanted client - server architecture by using webservices. Our goal is that wanted a webservice which is running any of the server like IIS and by gsoap methodology try to invoke the methods running in server. Do you guys having any support for gsoap. Because gsoap works on different platforms. If its there how we can proceed with that to host webservice in server. REgards, Venakt

  • problem with multipage widget

    Venkat_15 - - emWin related

    Post

    Hi, How we can get the 5.26 version of emwin. Regards, Venkat

  • problem with multipage widget

    Venkat_15 - - emWin related

    Post

    The Version used is emWin_V522_ARM_IAR_V630G_GUI-00419_gQY0p1LX_130711. REgards, Venkat

  • problem with multipage widget

    Venkat_15 - - emWin related

    Post

    Hi, I have an issue with multipage widget. I have 4 to 5 pages. The problem is if I touch corners of pages it opening another page. For clarity please look into attached files. In the attached pages(pic2) its mentioned I clicked on 3rd page and 2nd page was opened. Can you please help us on the same. Regards, Venkat

  • Hi, I have seen that it wont receive any event from the other thread. For example, am using WM_MakeModal() fun void guiSetDate(WM_HWIN hWin1) { WM_HWIN hWin; buff = Startbuff; /* used this to show the content in to edit field or text labels */ hWin = GUI_CreateDialogBox(_aDialogCreate, GUI_COUNTOF(_aDialogCreate), &_cbDialog, hWin1, 0, 0); WM_SetUserData(hWin, &dateFilter, sizeof(dateFilter)); WM_MakeModal(hWin); GUI_ExecCreatedDialog(hWin); } GUItask() { hwin=GUI_CreateDialogBox(_aDialogCreate,…

  • Hi, I have a UI thread it wont receive any events from the other thread. If i display the alertmesage like MESSAGEBOX_Create("Message","Hi",GUI_MESSAGEBOX_CF_MODAL). UI thread like; GUItask() { hwin=GUI_CreateDialogBox(_aDialogCreate, GUI_COUNTOF(_aDialogCreate), &_cbDialog, WM_HBKWIN,10,5); MESSAGEBOX_Create("Message","Hi",GUI_MESSAGEBOX_CF_MODAL). while(1) { if(event) {//Do something } GUI_Delay(100) } }

  • Hi, The Getdata() for the XBF font is different GUI_XBF_GET_DATA_FUNC(U32 Off, U16 NumBytes,void * pVoid, void * pBuffer); And when i do FS_Read(handle, pData, NumBytes) Its getting into Hard Fault. code snippet for the getdata() is int _cbGetData(U32 Off, U16 NumBytes,void * pVoid, void * pBuffer) { FS_FILE * handle; DWORD NumBytesRead; char pData[100]; //*pData1; //buff=(char*)pBuffer; // pBuffer = (U8 *)pBuffer; //pBuffer=pData; handle = (FS_FILE *)pVoid; if (FS_FSeek(handle, Off, FS_SEEK_SET…

  • Hi, The getdata function for xbf fonts its different int GUI_XBF_GET_DATA_FUNC(U32 Off, U16 NumBytes, void * pVoid, void * pBuffer); So, from your last reply "Getting data with the ...Ex() functions" in the chapter "Displaying bitmap files" this only for reading bitmaps and there getdata function is different. What i have observed in the getdata function ,the NumBytes it always recieve 18bytes. so,what i can think is that fs_open for xbf is not properly working. xbf file size is nearly 450KB . S…

  • Hi, I have created a xbf file through font converter with extended type font. I placed a xbf file into a SDcard. code snippet for creating xbf file: GUI_FONT XBFFont; GUI_XBF_DATA XBF_Data; int _cbGetData(U32 Off, U16 NumBytes,void * pVoid, void * pBuffer) { FS_FILE * handle; DWORD NumBytesRead; char pData[100]; //*pData1; //buff=(char*)pBuffer; // pBuffer = (U8 *)pBuffer; //pBuffer=pData; handle = (FS_FILE *)pVoid; if (FS_FSeek(handle, Off, FS_SEEK_SET) == 0xFFFFFFFF) { return 0; } NumBytesRead…

  • Hi, I have a string in Turkish language to display to our console. Am using LoadCSVex() for opening the Turkish Resource strings. Couple of the characters in Turkish are unable to display such as: the string to be display is "ürün yüksekliği" but it was displaying "ürün yükseklii".It was always missing the 'ğ' character. and the other string is "Oluşan Durum" but it was displaying "Oluan Durum". It was always missing the 'ş' character. Regards, Venkat

  • Browsing internet explorer

    Venkat_15 - - emWin related

    Post

    Hi, How we can develop a browser by using emwin. Or How can we browse internet. Regards, Venkat

  • Hi, By setting a font to Multi-Language.Can we print the text by printer. for eg: char *buff = "बुरा"; GUI_SetFont(_Languages[HINDI].font_16B); //setting to hindi langauge font USBH_PRINTER_Write(hPrinter, (unsigned char *)buff , size); Regards, Venkat

  • Hi, Recently,We bought a Font Converter for the Multi-langauge support. I am Facing a problem for the Hindi Language , Created a resource file for the Hindi langauge. Used GUI_LANG_LoadCSVEx(_GetData, hFile) function for reading a language resource text from the CSV file. Created a C file for the Mangal TTF by using a Font Converter. When reading a string from the CSV file it always displaying in next to next line. For eg; if a string has line break, on reading the string the it displays सक्रिय …

  • Hi, What is the default TTF used in emWin for english language. Regards, venkat

  • Hi, I have tried with the less size Using ySize == 53 and an offset of 40 on the y axis, the text was not display on the BUTTON. Regards, venkat

  • Hi, Sample code follows; static const GUI_WIDGET_CREATE_INFO _aDialogCreate[] = { { BUTTON_CreateIndirect, 0, ID_BUTTON_0, 149, 5, 87, 53, 0, 0, 0 }, } hItem = WM_GetDialogItem(pMsg->hWin, ID_BUTTON_0); BUTTON_SetFont(hItem, GUI_FONT_16B_ASCII); BUTTON_SetBitmap(hItem, BUTTON_BI_UNPRESSED, &bmInactive_Tab_Inventory); BUTTON_SetBitmap(hItem, BUTTON_BI_PRESSED, &bmTab_Inventory); BUTTON_SetTextOffset(hItem,5 ,70); BUTTON_SetText(hItem,"Inventory"); Regards, venkat

  • Hi, BUTTON_SetTextOffset() is unable to set offset for the text in Button Widget. First, I set a bmp on button and then set a text on Button. When i tried to use BUTTON_SetTextOffset() after setting text it was not displaying on the button. REgards, Venkat

  • Hi Adrian, On reading string which having new line break in csv and setting the string on button which adding extra new line in between the line break. Regards, venkat

  • I have used GUI_LANG_LoadTextEx() for reading language resource from the text file. How to use new line character for the langauge resource files. For eg: I used hindi langauge text file,i have given all the hindi words. पसंदीदा \n में जोड़ें When i read this string and set this string to a button or text field . I am not able to get in the new line like पसंदीदा में जोड़ें It was coming as it is.So can you please let us know ,how to use new line character in the langauge resources. Regards, venk…

  • Hi, TEXT_SetText (hItem,ptr) not able to set text,when i tries to set Arabic Text. 1.Arabic Text converted into UTF-8,got a hex format. 2.Placed the hex format in CSV file. 3.Used GUI_LANG_LoadCSVEx(_GetData, hFile); char * ptr; ptr = (char *)GUI_LANG_GetTextEx(21, 0); 4.When i try to Set text on text field , it was not displayinh. Can you olease tell me what may be the reason.