Warning #1011 
I tested C/C++ compiler 8.1 with NTPort Library samples. Intel comiler reported following warning in FastMode sample:
E:\Program Files\NTPort Library\VC\FastMode\FastModeDlg.cpp(190): warning #1011: missing return statement at end of non-void function "_Inp"
}

If you want to disable this warning, please change _Inp function as follows:

// Using inline assembler to increase performance further.
// warning C4035: 'xxx' : no return value

#pragma warning (disable:4035)
BYTE _Inp(WORD Port)
{
_asm{
...
}
}
#pragma warning (default:4035)

Here 4035 is the warning code of Visual C++, but Intel compiler also supports it. Wonderful!

[ add comment ]   |  [ 0 trackbacks ]   |  permalink  |  related link  |   ( 3 / 1158 )
Warning #880 
I tested C/C++ compiler 8.1 with NTPort Library samples. Intel compiler reported following warning:
E:\Program Files\NTPort Library\VC\Console\../../ntport.h(64): warning #880: omission of explicit type is nonstandard ("int" assumed)
const ERROR_SCM_CANT_CONNECT = 9998;

If you want to avoid this warning, you can change constant declarations in Ntport.h as follows:
const int ERROR_NONE = 0;
const int ERROR_DRIVER = 2;
const int ERROR_SCM_CANT_CONNECT = 9998;


[ add comment ]   |  [ 0 trackbacks ]   |  permalink  |  related link  |   ( 3 / 1111 )
JBuilder samples for NTPort Library 
Some users requested JBuilder samples for NTPort Library. We already released JBuilder samples last year, which were included in JBuilder 2005 Partner CD. You can download from here. This samples can be also used with JBuilder 8.0 or higher. In these samples, we use JavaTM Native Interface (JNI) to call NTPort Library. JNI is supported by JDK 1.2 or higher, but is not supported by Visual J++. VJ++ use J/Direct instead. If you want to use NTPort Library in VJ++, please download samples from here.

[ add comment ]   |  [ 0 trackbacks ]   |  permalink  |  related link  |   ( 3 / 1118 )
CheckListBox ActiveX version 2.6 SP4 is released 
A maintenance version of CheckListBox, Version 2.6 Service Pack 4, is released.

CheckListBox ActiveX Control provides support for listbox containing checkboxes, which is like the control that is built into Microsoft Word and Excel. In this control, each item's font, color, enabled and checked state can be individually modified. The control also supports 3D look, picture items and custom checkmark. This package includes samples written in Visual Basic, Visual Basic.NET, Visual C#, Visual C++, Microsoft Access and Internet Explorer. CheckListBox is also called Check List.

In this version, two small bugs are fixed.
  • Fix the bug that ListIndex property can't be set for a multiple selection listbox(#10023).
  • Fix the bug that the control contains extra borders with XP theme(#10024).

    Please download full-feature evaluation version from http://www.zealsoftstudio.com/checklistbox/.

    Registered user can download the upgrade version from http://www.zealsoft.com/upgrade/ .


    [ add comment ]   |  [ 0 trackbacks ]   |  permalink  |  related link  |   ( 3 / 1240 )
    Site Maintenance Schedule 
    One of our mirror site, www.zealsoft.com, will be upgraded during 11:00 p.m. EST- 3:00 a.m. EST, 4/04/05. Please visit another site:www.zealsoftstudio.com instead.

    [ add comment ]   |  [ 0 trackbacks ]   |  permalink  |  related link  |   ( 3 / 1139 )
    Call for ADA95 samples 
    One user suggested we should provide some ADA95 samples. But we don't have any experience of ADA. If you are using ADA95 with our products and want to share your works with others, please help us to provide some basic ADA95 samples.

    Thanks in advance.

    [ add comment ]   |  [ 0 trackbacks ]   |  permalink  |  related link  |   ( 2.9 / 1043 )
    REALBasic is not so good as expected. 
    REAL Software will offer "stranded" Visual Basic (VB) users free upgrades to REALbasic through March 31. I download REALBasic 5.5.5 and got a license key yesterday. I also found a good tutorial. I tested it with CheckListBox activex and Color ComboBox activex control.

    The converter provided by REALBasic can convert most Visual Basic code into REALBasic, but if failed to convert activex control. It simply replaced the activex control wtih a canvas control. I still need to manually modify some code just like using VB.NET upgrade wizard. But the REALBasic's syntax is remarkably different with Vsiual Basic's, especially on ActiveX controls, so I need more time to learn it.

    With my primary test, CheckListBox can be used at design time, but when my program was going to run, the control disappeared without any errors. Color ComboBox seemed all right with REALBasic. I'll test REALBasic later to know why.

    [ add comment ]   |  [ 0 trackbacks ]   |  permalink  |  related link  |   ( 3 / 1435 )
    CheckListBox 2.6 Service Pack 3 is available. 
    A maintenance version of CheckListBox, Version 2.6 Service Pack 3, is released.

    CheckListBox ActiveX Control provides support for listbox containing checkboxes, which is like the control that is built into Microsoft Word and Excel. In this control, each item's font, color, enabled and checked state can be individually modified. The control also supports 3D look, picture items and custom checkmark. This package includes samples written in Visual Basic, Visual Basic.NET, Visual C#, Visual C++, Microsoft Access and Internet Explorer. CheckListBox is also called Check List.

    In this version, Microsoft Access samples are added. We test our product with Access 97, Access 2000, Access XP(2002) and Access 2003.

    We also add three Visual Basic & Visual Basic.NET samples:
  • FindItem sample demonstrates how to find an item in the list.
  • OneCheck sample shows how to make sure only one item is checked.
  • Color sample shows how to list color choices.
    All samples are required by our value customers.

    We fix a bug that list items can't be sorted when Sorted is True and SortMode is clsStringAscending(#10021).

    Please download full-feature evaluation version from http://www.zealsoftstudio.com/checklistbox/.

    Registered user can download the upgrade version from http://www.zealsoft.com/upgrade/.

    [ add comment ] ( 1 view )   |  [ 0 trackbacks ]   |  permalink  |  related link  |   ( 3 / 1252 )

    Back Next