Dennis,
For the moment I checked my code and changed it for :
dim s As string
s = "Arial,Arial Black,Verdana,Helvetica,Futura,Monaco,Courier"
for i = 1 to 7
self.ListBox1.addrow NthField(s,",",i)
if NthField(s,",",i) = self.Cal.propFontAgenda then
n = self.listbox1.LastIndex
end if
next
This works perfectly. But this is not the list of all installed fonts
coming from "outside" my app. So maybe that you are right about text
encoding. But this is a topic, I would much appreciate a little...
guidance ;-)
TIA,
Regards,
Youri
Dennis Birch wrote:
You might want to check to see if TextEncoding is causing problems.
Seth,
Thanks for the bit of code, but the index (n) returned is always "0"
even thought the font name is rigth.
I did put a test as
MsgBox "Font name is " + myFontName + " n = " + str(n)
But it seems that there might be a pb with my code to populate the
listbox.
If I check how many times the max value of i = f.count, I get 31, but
my listbox shows many more fonts (about 60).
However, when I selct any of the font between 32 and 60 the font is
not recognised.
Could this be the problem in my listbox?
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>
From Tue 28 Nov 2006 14:25:20 -0700
Return-Path: <realbasic-nug-bounces at lists dot realsoftware dot com>
X-Original-To: listarchive at realsoftware dot com
Delivered-To: listarchive at realsoftware dot com
Received: by xmail.realsoftware.com (Postfix, from userid 1037)
id 9DCC3125A0F5; Tue, 28 Nov 2006 13:25:53 -0800 (PST)
X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on
www.realsoftware.com
X-Spam-Level:
X-Spam-Status: No, score=-1.6 required=4.5 tests=AWL,BAYES_00,NO_REAL_NAME
autolearn=no version=3.1.1
Received: from lists.realsoftware.com (lists.realsoftware.com [209.198.132.125])
by xmail.realsoftware.com (Postfix) with ESMTP id 0A288125A0EF;
Tue, 28 Nov 2006 13:25:51 -0800 (PST)
Received: from lists.realsoftware.com (localhost [127.0.0.1])
by lists.realsoftware.com (Postfix) with ESMTP
id B1CB716B7518; Tue, 28 Nov 2006 15:25:35 -0600 (CST)
X-Original-To: realbasic-nug at lists dot realsoftware dot com
Delivered-To: realbasic-nug at lists dot realsoftware dot com
Received: from mail.verex.com (mail.verex.com [66.116.103.197])
by lists.realsoftware.com (Postfix) with ESMTP id 2597416B7509
for <realbasic-nug at lists dot realsoftware dot com>;
Tue, 28 Nov 2006 15:25:27 -0600 (CST)
Received: from [66.116.103.197] (localhost [127.0.0.1])
by mail.verex.com (Postfix) with SMTP id B718E6A9B21
for <realbasic-nug at lists dot realsoftware dot com>;
Tue, 28 Nov 2006 14:25:20 -0700 (MST)
Date: Tue, 28 Nov 2006 14:25:20 -0700
From: joe at strout dot net
To: realbasic-nug at lists dot realsoftware dot com
X-Mailer: VerEx Email Gateway
Content-type: text/plain;
Content-transfer-encoding: 7bit
Message-Id: <20061128212520 dot B718E6A9B21 at mail dot verex dot com>
Subject: has anyone made an SSL server?
X-BeenThere: realbasic-nug at lists dot realsoftware dot com
X-Mailman-Version: 2.1.2
Precedence: list
Reply-To: REALbasic NUG <realbasic-nug at lists dot realsoftware dot com>
Sender: realbasic-nug-bounces at lists dot realsoftware dot com
Errors-To: realbasic-nug-bounces at lists dot realsoftware dot com
I've been trying to make a custom web server respond to https using
SSLSocket. If I have just a single SSLSocket listening on the
appropriate port, I can get this to work. But of course it can then
accept only a single connection at a time. When I try to use it
through a ServerSocket, it doesn't work; connection attempts simply
time out.
Has anyone else managed to make a server (ServerSocket-style) that
works with SSL?
Thanks,
- Joe
--
Joe Strout -- joe at strout dot net
Verified Express, LLC "Making the Internet a Better Place"
http://www.verex.com/
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>
|