Scheduled Maintenance:
We are undertaking some essential, but extensive maintenance to improve Yahoo!
Calendar. Your Group Calendar is being migrated to a much improved version of
Yahoo! Calendar. During the maintenance period, you may not have access to your
Groups Calendar.
We sincerely apologize for this inconvenience. Your Groups Calendar is in great
shape and we are working to have it available again as quickly as possible
- Yahoo! Groups & Yahoo! Calendar Team
(but not only there!) used as "DIM PortDCB AS DBC". I don't know from where "DCB" comes. I have been looking at everywhere but have not found nothing. Please,...
... everywhere ... DCB is a Windows API structure. You can read about it here: MS DCB <http://msdn.microsoft.com/library/default.asp?url=/library/en-us/devio/\...
, ... Device Control Buffer. It's a structure defined in the Win32 world. I'd suggest you search for some of the Win32 function calls that use the buffer. ...
Having trouble with Combo Controls on a TAB control. The Combo's show up, but when I issue cb_add... the data does not show. The same control on a Form without...
... Change the height of the combobox from 20 to about 80 or so. Doing this allows me to see all of the data in both. Btw, the height of a combobox is the...
Does anyone have some sample code on how to create a shortcut for an executable. I have created an application that has an installer that can be downloaded,...
... Here are two functions from one of my projects. One returns the full path to the current user's STARTUP folder. The other creates a shell link. FUNCTION...
I'm using this to parse a binary file for display in a RichEdit box: hdc = GetDC(Form1)' My attempt to repaint the window :) h = 0 i = 0 AddyInt = 000000 For i...
Thishas NOT been tested, but if it should help improve the speed a bit. Youperforming many string concatenations, maybe someone can provide a moreefficient...
... 12k. ... the ... it ... I thought about the DO EVENTS but I don't know how to implement it in the bcx structure. Do I need to get messages and dispatch...
... bit. Youperforming many string concatenations, maybe someone can provide a moreefficient method. ... justthinking that he'd be able to write a few lines to...
Maybeyou could replace this line: SendMessage(Form1, WM_PAINT, hdc,0) ' <---Tried this to no avail With : DOEVENTS() John -- No virus found in this incoming...
I am unable to use MKDIR, UCASE$ and LCASE$ instructions when using Pelles, although I once could do so. For example I get the message: Missing prototype for...
Hi all, in the following code DIM RAW pszText[100] AS CHAR ListView_GetItemText(ListView1,lplvcd->iSubItem,0,pszText,sizeof(pszText)) IF pszText = "" THEN ... ...
... ListView_GetItemText(ListView1,lplvcd->iSubItem,0,pszText,sizeof(pszText)) ... think ... Hi Andreas, It should be: IF pszText$ = "" THEN ' Always add the...
Hi Mike, with the $ identifier it translates to if(pszText[0]==0) ' I DIMed pszText[100] { Is this really what I intended to do? Would you write it like this...
... This is correct. I'm thinking no operation is performed if the item is empty. So the solution would be to initialize pszText before calling. You can either...
... Should that not be: lplvcd->iItem if you want the first column text? lplvcd->iSubItem refers to the next column,(i.e. 1) IIRC. ... -- Doyle Whisenant ...
Hi Doyle, I have tested before with a MSGBOX and it seems to work. I am at work now but I will test your suggestion when I get home (but can also be at...
Hi All That is one of the my eccentric questions!, Can I Monitoring members of a type (structure) in BCX ,Without using Timer(or using code at begin/end...