Search:

Type: Posts; User: Raedwulf

Page 1 of 6 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    86
    Views
    6,850

    Re: get a new contest going?

    I got a nice idea for a new competition:

    A substitution code 'breaker' competition. E.g. the fastest code breaker/and most accurate code breaking program.

    Basically the idea is for a program to...
  2. Replies
    7
    Views
    3,388

    Re: SmartReplace challenge

    I'm coming im coming - exams over :D.
    Coursework started :(.

    Well Ill try to get something done soon.

    Honestly though, I'm moving to other programming languages... I've hacked VB too much....
  3. Replies
    40
    Views
    5,133

    Re: QuoteSplit challenge

    AFAIK, the regexp object is quite slow. I mean a trimmed down version - less bells and whistles, more speed.
  4. Replies
    40
    Views
    5,133

    Re: QuoteSplit challenge

    Why not Regular Expression, search and replace?
    Would be along the lines of your SmartReplace, but more practical?
  5. Replies
    40
    Views
    5,133

    Re: QuoteSplit challenge

    I'll have to pass on this for a while, busy with exams. Since it is an open/not-too-serious challenge, i guess there shouldn't be any time limit. I'll post my solution when I get my exams over with,...
  6. Replies
    40
    Views
    5,133

    Re: QuoteSplit challenge

    Ummmm I think I did something similar before, under the name of ParseCSV (Not released tho), hangon - Ill dig out my code.
    EDIT: Yes I did, Ill need to make the interface compatible - because ','s...
  7. VB6 - Ultra Fast String Sort FTW - MSD Radix Sort!

    Here's a super fast Radix sort I've written, please see included Readme.txt.
    Basically this is a graphical benchmark comparing QuickSort, MSD Radix Sort (American Flag & Two Array Variants). The...
  8. Replies
    2
    Views
    540

    Determine if field is a key or not.

    Hello there, I've been messing with some ADO lately, I was wondering how to actually retrieve, programmatically, whether a field is a primary key/part of one or not.

    I've tried this:

    If...
  9. Replies
    31
    Views
    1,320

    Poll: Re: Annual VBF Carol Competition

    Haha :D :eek2: :afrog:
  10. Replies
    31
    Views
    1,320

    Poll: Re: Annual VBF Carol Competition

    Have I scared everyone away? :D
    Suceeded in one category then lol.
  11. Replies
    31
    Views
    1,320

    Poll: Re: Annual VBF Carol Competition

    Thanks enough for 20minutes, I'll write more when I have time :D

    Cheers.
  12. Replies
    31
    Views
    1,320

    Poll: Re: Annual VBF Carol Competition

    Christmas is coming

    Christmas will be coming,
    The posters are becoming madhats,
    Please say something crazy,
    In the VBForums Chit/Chat.

    If you haven't got anything crazy,
    something funny...
  13. Replies
    31
    Views
    1,320

    Poll: Re: Annual VBF Carol Competition

    Let it Snow (Blow)

    Oh Jacob's howls are frightful,
    But Martin's rifle is delightful,
    And since we have to keep VBF so,
    Let It Blow! Let It Blow! Let It Blow!

    It doesn't show signs of...
  14. Replies
    31
    Views
    1,320

    Poll: Re: Annual VBF Carol Competition

    White Christmas take :P

    I'm dreaming of a clean forum
    Just like the one I used to know
    Where the members were helpful
    and the code was wonderful
    Oh where did they all go....

    I'm dreaming of...
  15. Replies
    42
    Views
    12,234

    Re: Contests Future

    vrooom vrooom, speed! :D
  16. Replies
    2
    Views
    787

    Re: Accessing the VB6 RTL from C/C++ apps

    Theoretically it would be possible to use the VB6 runtime library in C++.
    However which functions do you require to use in C++?
    If you are talking about the normal string routines Mid$, Left$ etc....
  17. Replies
    10
    Views
    4,410

    Re: Anyone know of any Active ASM forums?

    I personally prefer computers to gam e consoles, don't own a gam e console myself.
  18. Replies
    108
    Views
    109,376

    Re: Subclass External Programs done for you

    Dawn of realisation :)

    Without TLS, processes that have more than one thread may cause the hooking dll act in ways that are strange :).
  19. Replies
    10
    Views
    4,410

    Re: Anyone know of any Active ASM forums?

    MASM is Microsoft Macro Assembler which is for x86 Intel computers - basically your home Intel/AMD desktop PC.

    MIPS appears to be the processor type used in game consoles?

    Cheers.
  20. Thread: ASM Question

    by Raedwulf
    Replies
    8
    Views
    1,748

    Re: ASM Question

    Yeah i forgot to include that - the OS preserves them if i am correct.

    Cheers.
  21. Replies
    108
    Views
    109,376

    Re: Subclass External Programs done for you

    Just curious, in what cases does not using TLS fail?
  22. Replies
    10
    Views
    4,410

    Re: Anyone know of any Active ASM forums?

    Oops sorry didn't mean to post here MIPS is not in my knowledge :D
  23. Thread: ASM Question

    by Raedwulf
    Replies
    8
    Views
    1,748

    Re: ASM Question

    Yes that is true. But when you use assembly language, especially when you translate a high-level algorithm -
    You basically use eax, ecx, edx - and if you preserve ebx, ebp, esi, edi those can become...
  24. Re: Tutorial: Entering the world of x86 assembly.

    I really need to sort out the next installation of this tutorial :) - I got it written, but the tedious bit is trying to get the tables in - maybe i should make the tables images so they display...
  25. Re: Tutorial: Entering the world of x86 assembly.

    Registers

    A register is a temporary storage location for a small amount of data to be processed on the CPU. Performing operations on values stored in registers is much faster than performing the...
  26. Tutorial: Entering the world of x86 assembly.

    Most the tutorial has been written already, but I have not included it all, as I will be tidying bits of it up as I post them in the forum.
    There will be basically two sections two this:

    1.)...
  27. Thread: rol & ror

    by Raedwulf
    Replies
    3
    Views
    1,240

    Re: rol & ror

    Ok thanks
  28. Thread: rol & ror

    by Raedwulf
    Replies
    3
    Views
    1,240

    rol & ror

    Is there a way of rotating bits in C?

    e.g. in asm,

    rol eax, 4
    ror eax, 3 etc.

    I know i could use inline asm, but i was wondering if there was a C equiv

    Cheers.
  29. Replies
    14
    Views
    16,135

    Re: VB - Double Linked List

    Oh thanks , for a moment I thought our responses were getting a little too heated :P
    Yes probably I have too much time on my hands, especially in the summer holidays. But Last year I had something...
  30. Replies
    14
    Views
    16,135

    Re: VB - Double Linked List

    I do that too - but sometimes i don't like the dependencies (especially when trying to make a UserControl). And for me its easier to just stick in some ASM into VB - but thats just me I guess.
    ...
  31. Replies
    14
    Views
    16,135

    Re: VB - Double Linked List

    :P You included timings! - I just couldn't resist :D :P
    And you did include your own ptr version too?

    -----

    cDblLinkedListPtrVariant is a real linked list, the arrays are used to directly...
  32. Replies
    14
    Views
    16,135

    Re: VB - Double Linked List

    Ooops :)

    I originally used the Format function to round the timings in the benchmarks, but that appears to produce some strange placements for the decimal. I forgot to check it once again after I...
  33. Replies
    14
    Views
    16,135

    Re: VB - Double Linked List

    Hi:

    I have implemented a super-optimised Linked List.

    Here's the contents of the readme.txt I've included within:

    Linked Lists

    Visual Basic provides little support for Linked Lists. The...
  34. Re: IS ASSEMBLY LANGUaGE A PROGRAMMING LANGUAGE???

    :ehh:
  35. Re: IS ASSEMBLY LANGUaGE A PROGRAMMING LANGUAGE???

    Actually .NET is quite easy to disassemble - and easier to modify than x86 :|
    But 25mb is kinda deterring, just due the resource hogging of editing a 25mb file.
    Arghhh....in my opinion Microsoft...
  36. Replies
    12
    Views
    17,423

    Re: VB - RichTextBox to HTML

    Well, integer array would be more appropriate. Time savings would be around 50% or so...at a rough estimate.

    but I guess at 80ms, unless you need it realtime, that will do ;)
  37. Replies
    3
    Views
    456

    Re: another trigonometric question.

    Grrrrrr, ddon't feel like doing ascii art or drawing pics at the moment

    But if you remember the triangle with sides 1,1 and Sqrt(2)
    and the triangle with sides 1, 2, Sqrt(3)

    But here's the...
  38. Thread: plz help

    by Raedwulf
    Replies
    2
    Views
    448

    Re: plz help

    Ok easy h/w :)

    I feel in quite a good mood now so here it is:
    sin x = 1/2

    sin x cos(90°-x)

    Hopefully you know that cos(90°-x) is sin x .....but if not:
    Imagine a sin x graph and a cos x...
  39. Replies
    13
    Views
    1,825

    Re: Coding math with VB6

    Ok I've done the symbols ;)

    Here's the instructions to test:
    -----
    x=5+5
    Answer=10
    ------
    x+5
    Answer=15
  40. Replies
    13
    Views
    1,825

    Re: Coding math with VB6

    Ok....didn't have time to do the symbols....but here's the newer one anyway.
Results 1 to 40 of 205
Page 1 of 6 1 2 3 4



Click Here to Expand Forum to Full Width