Search found 6 matches

by electron
Wed Apr 19, 2006 1:17 am
Forum: Feature Requests and Wishlists
Topic: pure library for ldap
Replies: 0
Views: 1275

pure library for ldap

it would be nice to have a pure library for ldap
http://www.purebasic.fr/english/viewtop ... 758#138758
:idea:
by electron
Tue Apr 11, 2006 10:24 pm
Forum: Coding Questions
Topic: ldapsdk.dll from novell with purebasic
Replies: 4
Views: 1862

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 ...
by electron
Tue Apr 11, 2006 3:31 pm
Forum: Coding Questions
Topic: ldapsdk.dll from novell with purebasic
Replies: 4
Views: 1862

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 ...
by electron
Tue Apr 11, 2006 12:11 pm
Forum: Coding Questions
Topic: ldapsdk.dll from novell with purebasic
Replies: 4
Views: 1862

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 ...
by electron
Thu Dec 08, 2005 9:53 pm
Forum: Feature Requests and Wishlists
Topic: listicongadget
Replies: 2
Views: 1310

listicongadget sort

Is this library portable on linux and macosx ?
by electron
Thu Dec 08, 2005 11:02 am
Forum: Feature Requests and Wishlists
Topic: listicongadget
Replies: 2
Views: 1310

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.