http://www.purebasic.fr/english/viewtop ... 758#138758
Search found 6 matches
- Wed Apr 19, 2006 1:17 am
- Forum: Feature Requests and Wishlists
- Topic: pure library for ldap
- Replies: 0
- Views: 1312
pure library for ldap
it would be nice to have a pure library for ldap
http://www.purebasic.fr/english/viewtop ... 758#138758

http://www.purebasic.fr/english/viewtop ... 758#138758
- Tue Apr 11, 2006 10:24 pm
- Forum: Coding Questions
- Topic: ldapsdk.dll from novell with purebasic
- Replies: 4
- Views: 1912
callcfunctionfast with ldapsdk.dll
If OpenLibrary(0, "LDAPSDK.DLL")
ExamineLibraryFunctions(0)
While NextLibraryFunction()<>0
Debug LibraryFunctionName()
result.l = LibraryFunctionAddress()
Debug "adress :" +Hex(result)
Wend
Else
MessageRequester("Problem","Can't open library.",#MB_ICONEXCLAMATION)
EndIf
i obtain all ...
ExamineLibraryFunctions(0)
While NextLibraryFunction()<>0
Debug LibraryFunctionName()
result.l = LibraryFunctionAddress()
Debug "adress :" +Hex(result)
Wend
Else
MessageRequester("Problem","Can't open library.",#MB_ICONEXCLAMATION)
EndIf
i obtain all ...
- Tue Apr 11, 2006 3:31 pm
- Forum: Coding Questions
- Topic: ldapsdk.dll from novell with purebasic
- Replies: 4
- Views: 1912
LDAPSDK.dll
ASAIK, this library is support, and many other functions.
The only problem is ldap_get_values with dim type for the result (dynamics arrays).
an exemple (not perfect) with the first entry
lpres.l
base$ = "dc=ldap, dc=fr"
filter$ = "(objectClass=*)"
#LDAP_SUCCESS = 0
#LDAP_OPT_VERSION = $11
#LDAP ...
The only problem is ldap_get_values with dim type for the result (dynamics arrays).
an exemple (not perfect) with the first entry
lpres.l
base$ = "dc=ldap, dc=fr"
filter$ = "(objectClass=*)"
#LDAP_SUCCESS = 0
#LDAP_OPT_VERSION = $11
#LDAP ...
- Tue Apr 11, 2006 12:11 pm
- Forum: Coding Questions
- Topic: ldapsdk.dll from novell with purebasic
- Replies: 4
- Views: 1912
ldapsdk.dll from novell with purebasic
for (e=ldap_first_entry(ld,result); e !=NULL; e=ldap_next_entry(ld,e))
{
//fonction spécifique pour le dn
printf("DN: %s\n",ldap_get_dn(ld,e));
//parcours des attributs<->valeurs d'une entrée
for (attribute = ldap_first_attribute(ld,e,&ber);
attribute != NULL; attribute = ldap_next_attribute ...
{
//fonction spécifique pour le dn
printf("DN: %s\n",ldap_get_dn(ld,e));
//parcours des attributs<->valeurs d'une entrée
for (attribute = ldap_first_attribute(ld,e,&ber);
attribute != NULL; attribute = ldap_next_attribute ...
- Thu Dec 08, 2005 9:53 pm
- Forum: Feature Requests and Wishlists
- Topic: listicongadget
- Replies: 2
- Views: 1344
listicongadget sort
Is this library portable on linux and macosx ?
- Thu Dec 08, 2005 11:02 am
- Forum: Feature Requests and Wishlists
- Topic: listicongadget
- Replies: 2
- Views: 1344
listicongadget
i use actually a button and a procedure to sort the listicongadget and it would be nice to integrate the button in the listicongadget.
I know we can do with a callback with windows api but it's heavy.
For the portability on other platform, it would be nice to complete the listicongadget.
I know we can do with a callback with windows api but it's heavy.
For the portability on other platform, it would be nice to complete the listicongadget.