1. #1

    Default Re:

    Woops better watch where I send thing. Marni is Doreen's sister and Sam is
    Marni's pet name for Doreen.


    Blushing Grant


    Grant Dixon Guest

  2. #2

    Default Re:

    Here is a link for Chuck and all the other digi shutter bugs. It seems that
    Jim Brandenburg has embraced digital:
    [url]http://www.nationalgeographic.com/adventure/0306/q_n_a.html[/url]

    For those that don't know who Jim Brandenburg is, I suspect you never seen
    national Geographic, here is 'the' link to his work ... enjoy:

    with flash [url]http://www.jimbrandenburg.com/flash/index_flash.html[/url]
    without flash [url]http://www.jimbrandenburg.com/home.html[/url]

    --
    Grant

    Home Pages [url]http://home.cogeco.ca/~grant.dixon/index.htm[/url]

    Challenge Pages: [url]http://home.cogeco.ca/~challenge/[/url]

    ************************************************** *******

    Creativity is so delicate a flower that praise tends to make it bloom, while
    discouragement often nips it in the bud. Any of us will put out more and
    better ideas if our efforts are appreciated.

    Alexander Osborn (1888 - 1966)

    ************************************************** *******


    Grant Dixon Guest

  3. #3

    Default Re:

    And if you reply to spam do not copy the content...


    Egbert Nierop \(MVP for IIS\) Guest

  4. #4

    Default Re:

    Tried this code get a server 500 error.

    Anyone know what's wrong with it?

    if $DayName eq "Select a Day" or $RouteName eq "Select A Route") {
    dienice("Please use the back button on your browser to fill out the Day
    & Route fields.");
    }

    Thanks,
    Ron



    Ron Guest

  5. #5

    Default Re:

    Ron wrote:
    > Tried this code get a server 500 error.
    >
    > Anyone know what's wrong with it?
    >
    > if $DayName eq "Select a Day" or $RouteName eq "Select A Route") {
    (---^

    > dienice("Please use the back button on your browser to fill out the Day
    > & Route fields.");
    > }
    ....
    > Ron
    ....
    --
    Bob Walton

    Bob Walton Guest

  6. #6

    Default Re:

    Hmm...don't recall ever seeing an dead-empty thread title before. At least not on these forums.
    Phosphor Guest

  7. #7

    Default Re:

    The bar can be split with slices. The dividers could be donw with a bevel or embossed line, applied on a layer with an overlay style.
    Don McCahill Guest

  8. #8

    Default Re:

    In article <tv%Ra.91979$TJ.5252351@twister.austin.rr.com>, Ron wrote:
    > Tried this code get a server 500 error.
    >
    > Anyone know what's wrong with it?
    >
    > if $DayName eq "Select a Day" or $RouteName eq "Select A Route") {
    ^ ^
    | |

    here you should change something or there

    Rainer
    Rainer Klier Guest

  9. #9

    Default Re:

    have you tried making sure the drivers are up-to-date? You can still find them on SB's website ... I used to have a 128 as well and never had an issue.

    NT4 was never designed as a multimedia platform, so you should make sure you have all the updated drivers (audio & video), latest DirectX, latest WMP and codecs, SP4 or better (SP6 recommended), and try not to use anything higher than 22K for sample rate.

    You also may have to switch the SoundDevice within the Director project for NT4 - there was something about that back when 2000 just came out. One SoundDevice will work in most cases but is sloppy or incompatible on some OS's.




    ============================
    Glen Palmer
    SafariTECH
    Cold Fusion Specialist
    [url]www.safaritech.com[/url]
    ============================
    SafariTECH Guest

  10. #10

    Default Re:

    I am glading for your reply. May I tell you more the information?

    The environment:
    Platform: MS NT4 workstation w/ service pack 5
    Sound card: SoundBlaster PCI128. (w/latest sound driver)

    Problems:
    If I use SoundBlaster PCI128, the swa bg sound will shutter. In the disc, I haven't set the soundDevice. It also not work even I set the soundDevice to MacoMix or DirectSound or others. On the other hand, If I replace it to be SoundBlaster Live 5.1, the sound will play well.

    Question:
    (a). Which soundDevice are you prefer?
    (b). Could you tell me any pack you installed on your NT?
    (c). Any must-need xtra?
    (d). According to your experiements, what will be the most problem?


    stevenfok webforumsuser@macromedia.com Guest

  11. #11

    Default RE:

    The only bad thing about Flash is the fact that it sucks at rendering HTML. It only understands a handful of HTML tags, and it reads the code differently thatn normal browsers do you have to redo your scripting. My suggestion would be to mix the site with Flash and HTML for best results. Just my $.02!


    RoyalFunk webforumsuser@macromedia.com Guest

  12. #12

    Default Re:

    Please send me some Challenge candidates.

    --
    Grant



    Grant Dixon Guest

  13. #13

    Default Re:

    ??

    I'm using Outlook Express, if this helps you.

    Ray


    Ray Guest

  14. #14

    Default Re:

    Hi, Ray! Have you been into the forum to check out the new look?

    Chuck
    Chuck Snyder Guest

  15. #15

    Default Re:

    Yep.

    Can't say I'm very found of it :)

    Ray


    Ray Guest

  16. #16

    Default Re:

    Hey, looks like you can mark a thread "read" without opening it..... cool.

    Pete


    Pete D Guest

  17. #17

    Default Re:

    In article <4B3D04853B3CB1351C594449F4F69936@in.webx.la2eafNX anI>,
    Grant Dixon <grant.dixon@cogeco.ca> wrote:
    > Can this be accessed by news reader?
    Yes. adobeforums.com
    Peter Gaunt Guest

  18. #18

    Default Re:

    www wrote on 21 aug 2003 in microsoft.public.inetserver.asp.general:
    > I have seen an example of a page that displays the users browser
    > details in a friendly manner like this:
    > Your operating system : Microsoft Windows NT
    > Your browser : Microsoft Internet Explorer 6.0
    >
    >
    > from a HTTP_User_Agent string like this: Mozilla/4.0 (compatible; MSIE
    > 6.0; Windows NT 5.0)
    >
    > Can somebody give me some sample code of how I can extract this result
    > out of the string, using asp
    using vbscript in serverside asp:

    <%
    s="Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)
    '' exchange for your user agend code

    If instr(s,"Windows NT 5.0")>0 then
    os="Microsoft Windows NT"
    elseif instr(s,"Windows NT 5.1")>0 then
    os="Microsoft Windows XP"
    ' more elsifs here
    else
    os="unknown"
    end if

    If instr(s,"MSIE 6.0")>0 then
    br="Microsoft Internet Explorer 6.0"
    elseif instr(s,"Netscape")>0 then
    br="any Netscape"
    ' more elsifs here
    else
    br="Unknown"
    end if
    %>

    Your operating system : <%=os%><br>
    Your browser : <%=br%><br>

    NOT tested

    --
    Evertjan.
    The Netherlands.
    (Please change the x'es to dots in my emailaddress)
    Evertjan. Guest

  19. #19

    Default Re:

    Jacobs, Dee wrote:
    > Can you help me understand the scope problem that occurs at line 18 in my
    > example below?
    > I initially set the main window icon to yicon at line 9 which works
    > correctly.
    >
    > When I try to set the main window icon to xicon at line 19 after clicking
    > the button,
    > I get "x.rbw:19: [BUG] Segmentation fault".
    >
    > I'm sure this is a misunderstanding on my part as to the scope of
    > theMainWindow.
    Works ok for me, after I changed the paths to the icons to find them on
    my system. I'm running linux, and you appear to be running windows,
    though. I don't think it's a scope problem. Maybe a windows specific bug?


    Joel VanderWerf Guest

  20. #20

    Default Re:

    I had the exact same problem. My guess is that you are either missing some
    MySQL-DBI code or the permissions on the files are incorrect.

    Unfortunately, I did not know how to fix the problem by hand. So I deleted
    MySQL as installed by Mandrake (my Linux distribution at home) and
    re-installed MySQL from a download I found at mysql.com.

    Then I installed the Ruby-DBI package
    ([url]http://prdownloads.sourceforge.net/ruby-dbi/ruby-dbi-all-0.0.21.tar.gz?down[/url]
    load) and everything started working.

    Several years ago this would have been called the 'hammer and tongs' method,
    but it worked for me.

    Drew
    > -----Original Message-----
    > From: Sabyasachi Mustafi [mailto:sabymus@rediffmail.com]
    > Sent: Saturday, September 06, 2003 5:15 AM
    > To: [email]ruby-talk@ruby-lang.org[/email]
    > Subject:
    >
    >
    > I am trying to connect to a mysql database with ruby and
    > showing the data in text boxes using Tk. But the following error
    > is coming. Is there any problem with the dbi itself or the problem
    > lies in the code? If you want then I can send the codes, just two
    > pages. Please help me as soon as possible.
    >
    > Thanks,
    > Sabyasachi Mustafi
    >
    > Error:
    > /usr/local/lib/ruby/site_ruby/1.8/dbi/dbi.rb: 490
    > :in `load_driver': is not a class/module
    >
    > Stack Trace for Error
    > --------------------------
    > /usr/local/lib/ruby/site_ruby/1.8/dbi/dbi.rb:490:in `load_driver':
    > is not a class/module
    > while executing
    > "rb_out c00003"
    > invoked from within
    > ".w00005 invoke"
    > ("uplevel" body line 1)
    > invoked from within
    > "uplevel #0[list $w invoke]"
    > (procedure "tkButtonUp" line 7)
    > invoked from within
    > "tkButtonUp .w00005
    > "
    > (command bound to event)
    > __________________________________________________ _
    > Law meets Electronics; Veena Weds Sanjay.
    > Rediff Matchmaker strikes another interesting match !!
    > Visit [url]http://rediff.com/matchmaker?1[/url]
    >
    >
    Mills Thomas (app1tam) Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139