Search:

Type: Posts; User: Michael Clease; Keyword(s):

Page 1 of 20 1 2 3 4

Search: Search took 0.02 seconds; generated 11 minute(s) ago.

  1. Manifest

    Petr, It looks like windows 10 SDK has renamed the tool as mage.exe (mageui.exe) unless I am mistaken.

    C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6.2 Tools

    Mike C.
  2. Replies
    12
    Views
    10,032

    Start at the start

    if you use the version at the first post it works! (without modifying)

    http://www.thinbasic.com/community/showthread.php?8181-Sine-Wave-Dynamic-Texture-Fonty-thingy&p=60794&viewfull=1#post60794
  3. The hardware doesn't seem anything special so the...

    The hardware doesn't seem anything special so the Intel drivers from the Intel site and Realtek drivers from Realtek site should be safe.
  4. Replies
    202
    Views
    217,286

    Beta testing "at the end is just a a matter of pointers to...

    "at the end is just a a matter of pointers to something"

    or

    "In the end it is a matter of pointers to something"

    have different means

    Did you notice the double "a a"??
  5. Replies
    8
    Views
    11,094

    Thanks guys, it works great. Eros I haven't...

    Thanks guys, it works great.

    Eros I haven't done any work with TB for a while, i've been playing with python and discovering its a horrible language if your used to fixed data types.

    thanks.
  6. Replies
    8
    Views
    11,094

    Registry problem again

    Hello Eros,

    The old registry bug has appeared again ???, Registry_GetAllKeys seems stuck in a loop.

    I am using Version 1.9.15.0



    Uses "UI","COMM","REGISTRY"
    ' -- ID numbers of controls
  7. Replies
    6
    Views
    7,429

    because this isn't C its ThinBasic! result...

    because this isn't C its ThinBasic!



    result = ANDb (Num1, Num2) ' Used to perform AND bitwise operations.
    result = ORb (Num1, Num2) 'Used to perform OR bitwise operations.
    result =...
  8. Replies
    4
    Views
    4,444

    Back in the Day!!!!

    It is a legacy from and early version.

    Here is version 1.3.0.1 for your appreciation, check out the utilities section and code formatting which I always quite liked.

    Mike C.
  9. Replies
    5
    Views
    4,454

    Type tMytype sfred as string dwLunch as...

    Type tMytype
    sfred as string
    dwLunch as function
    end type

    Function dwLunch(byref lRoach as long) as DWORD

    DIM lizardpeople as tMytype
  10. Replies
    5
    Views
    4,454

    I find prefix the datatype in front of the...

    I find prefix the datatype in front of the variable name stops keyword clash but also gives me reminders of the datatype being used.



    Type t_example
    sName As String
    lUser As Long
    End...
  11. Replies
    12
    Views
    12,706

    Too C or not to C that is the question!

    I'm loving the new functionality but have a question about the use of "me.radius" wouldn't "this.radius" be a better syntax much like its use in c.

    Mike C.
  12. Replies
    6
    Views
    10,188

    Thanks Eros, I am working with the registry...

    Thanks Eros,

    I am working with the registry and was interested how you are handling it in PB, I have a requirement to dump some keys in a Regedit format and was looking for inspiration.

    Mike C.
  13. Replies
    6
    Views
    10,188

    Is this still active?

    Is this still active?
  14. Replies
    2
    Views
    5,210

    is this turn on in your pm settings? ...

    is this turn on in your pm settings?



    notification box informing you of the new message.
    Sent Private Messages:

    Save a copy of sent messages in my Sent Items folder by default
    Don't...
  15. Replies
    6
    Views
    8,712

    Thanks Eros it worked very well, below is what I...

    Thanks Eros it worked very well, below is what I had found out (with help from PB forums)



    Uses "CONSOLE"


    '// Definitions and structures used by getnetworkparams and getadaptersinfo apis
  16. Replies
    6
    Views
    8,712

    I will test the code tomorrow, I can see some...

    I will test the code tomorrow, I can see some enhancements that could be added but I will let you know if I have been blown over to France by these winds.
  17. Replies
    6
    Views
    8,712

    you are correct, it was a last minute rename of a...

    you are correct, it was a last minute rename of a variable without running the script.

    I fixed it now.

    It is a nonsense answer I need to look for an api solution but its evading me at the...
  18. Replies
    6
    Views
    8,712

    NetMask question

    My knowledge of networking is quite limited and I wanted to know the netmask for a project I am working on so I came up with the script below.

    Can I have some feedback on this, is it correct ?
    ...
  19. Replies
    1
    Views
    4,398

    What does your screen look like?

    I was playing with a microscope and thought I would look at two phone screens, an iphone4s and a Samsung Galaxy note with interesting results.
  20. Replies
    15
    Views
    20,796

    I had an issue with sub directories and bundles...

    I had an issue with sub directories and bundles in that I was sure older versions supported sub folders but now it doesn't.

    I move all my graphics into a gfx folder and that folder is no longer...
  21. Why not just create a unit file with the commands...

    Why not just create a unit file with the commands you require, here is an example


    Dim s As StringDim ss As String
    Dim sMsg As String

    s= "T"
    ss="T"

    If eq(s,ss) Then
  22. K.i.s.s.

    I like this version the best it stays subscribed to the title of the language BASIC and not "C" as some people seem to want it to become, lets not reinvent the wheel just how much hand holding do you...
  23. If you read the whole thread you can see I was...

    If you read the whole thread you can see I was explaining why you shouldn't use sleep and said





    Perhaps I should put "don't use this script as it is an example of how not to do it."

    bye...
  24. It would seem it doesn't matter how many times I...

    It would seem it doesn't matter how many times I tell people to NOT use the sleep command inside ui they continue to ignore the fact windows will continue to send timer events to the message queue...
  25. Replies
    0
    Views
    1,279

    How to set a font on a control

    Here is a rough example of how to set a font for a windows control in this case a label, the equates are a mystery.



    Uses "UI"


    ' -- ID numbers of controls
    Begin ControlID
    %bClose
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4