Search found 65 matches: partially

Return to advanced search

Re: A new Class TGantt

... and the start date of the earliest task. Later we need to consider task dependencies. Tasks can be dependent on another task being completed or partially completed. So, instead of a start date, a task starts at another's end date, or 5 days before the end date, or two days after another task's ...
by James Bott
Wed Oct 05, 2011 10:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A new Class TGantt
Replies: 11
Views: 3964

Re: How to programmatically click on a cell of an xBrowse?

Gale, I don't think the user would know why it is invalid. I use valid routines all the time that take partially entered data and look it up in a database and present a list of choices. For instance a customer code. I don't think the user should have to know all of the 10 ...
by James Bott
Thu Mar 24, 2011 2:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to programmatically click on a cell of an xBrowse?
Replies: 13
Views: 2564

Re: How to programmatically click on a cell of an xBrowse?

I don't think the user would know why it is invalid. I use valid routines all the time that take partially entered data and look it up in a database and present a list of choices. For instance a customer code. I don't think the user should have to know all of the 10 characters ...
by Gale FORd
Thu Mar 24, 2011 6:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to programmatically click on a cell of an xBrowse?
Replies: 13
Views: 2564

Re: Question about XBROWSE

... rlOptLevel() returns 2, then cmkeycount() and cmkeyno() will be very fast to determine total records and relative position. If the filter is only partially optimized then the maybe's have to be resolved to get an accurate count. I think cmkeycount() and cmkeyno() will still be faster than skipping ...
by Gale FORd
Tue Sep 28, 2010 11:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about XBROWSE
Replies: 32
Views: 7906

Re: Pritpal, HBIDE developer, assists us to use it with FWH

... include a .dll to the project. Does that mean that I would no longer have to create the .lib from the .dll to be used from my app? You are right partially. If you are using mingw as compiler, then any standard C dll needs not to be converted to lib with, for example, bcc's implib utility. It ...
by Pritpal Bedi
Tue Jun 29, 2010 5:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Pritpal, HBIDE developer, assists us to use it with FWH
Replies: 293
Views: 99542

Memory could not be "read" error with ADO

I have a hybrid application which runs partialy on SQL Server, and partially on ADS. I am using a mix of standard DBF type calls as well as some ADO with ADS. Sql is all ADO. If I access an ADS database with ADO when I quit the application I get the following ...
by byron.hopp
Mon Jul 13, 2009 3:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Memory could not be "read" error with ADO
Replies: 2
Views: 449

Re: How to connert to WLAN programmatically

... = -1, D0 = 0, // Full On: full power, full functionality D1, // Low Power On: fully functional at low power/performance D2, // Standby: partially powered with automatic wake D3, // Sleep: partially powered with device initiated wake D4, // Off: unpowered } private const int POWER_NAME ...
by Otto
Sat May 23, 2009 6:10 pm
 
Forum: FiveWin for Pocket PC
Topic: How to connert to WLAN programmatically
Replies: 1
Views: 746

Re: Alphablend Platform Independent !!!

Toninho,

> I´ll try implement Alpha Channel in its code.

I have tried it and I have it partially working.

If you want to I can share my changes so we can work together to get it properly working :-)
by Antonio Linares
Thu Apr 16, 2009 2:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Alphablend Platform Independent Working !!!
Replies: 13
Views: 2214

Re: MDI window

This is not the right solution and it just works partially, but it may be the start to fix it. In Class TMenu Method Command(): METHOD Command( nCommand ) CLASS TMenu   local oMenuItem // := ::GetMenuItem( nCommand )      if Upper( ::oWnd:ClassName() ...
by Antonio Linares
Fri Apr 10, 2009 7:24 pm
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: MDI window
Replies: 8
Views: 2284

Showing a asociated dialog with a xbrowse

... from the keys (also very short) executes always RETURN , nothing is updated DO WHIL GetAsyncKey(VK_DOWN) .OR. GetAsyncKey(VK_UP) END This works partially , pressing one from the keys the program continues only when the key is released. So we have to press again for each row CUSTOMER.DBF see ...
by demont frank
Thu Dec 18, 2008 9:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Showing a asociated dialog with a xbrowse
Replies: 0
Views: 598

... These are tooltips that appear when the user hovers the mouse over a string that cannot be displayed in its entirety. The tooltip overlays the partially-displayed text and provides the remainder of the text that had been truncated. Windows uses them in treeviews and some other controls. Now ...
by Antonio Linares
Tue Aug 26, 2008 6:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: In place tooltips!
Replies: 28
Views: 5433

... problem right now is that the responsibility of maintaining the focus chain is not kept completely within the core parts of GTK+, but also is partially the responsibility of the implementation of GtkContainer::focus. In particular, there are two constraints on the ::focus implementation. - ...
by xProgrammer
Thu Mar 13, 2008 8:26 pm
 
Forum: FiveLinux / FiveDroid (Android)
Topic: Tab Order on a DIALOG
Replies: 5
Views: 1917

Tim,

It will require FWH 8.02 as there are many changes in the Class TMsgBar and TMsgItem.

They have been partially redesigned to solve the painting problem
by Antonio Linares
Fri Jan 18, 2008 7:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Messages on office 2007 style
Replies: 6
Views: 1264

You are right. The effect is only partially transparent. I don't know how to get the full transparency effect. Antonio?

EMG
by Enrico Maria Giordano
Fri Jan 18, 2008 4:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hires
Replies: 8
Views: 1924

Bug in TBtnBmp

The following sample shows the problem (the button is inset and partially visible):

Code: Select all  Expand view
#include "Fivewin.ch"


FUNCTION MAIN()

    LOCAL oDlg

    DEFINE DIALOG oDlg

    @ 1, 1 BTNBMP

    ACTIVATE DIALOG oDlg;
             CENTER

    RETURN NIL


EMG
by Enrico Maria Giordano
Sat Sep 29, 2007 12:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug in TBtnBmp
Replies: 4
Views: 741
PreviousNext

Return to advanced search