Search:

Type: Posts; User: EJ12N

Page 1 of 11 1 2 3 4

Search: Search took 0.87 seconds.

  1. Replies
    39
    Views
    1,830

    Re: Mod Rewrite Blank Pages

    with that said..., .htaccess contents should be

    RewriteEngine on
    RewriteRule ^pages/([0-9]+)$ entry.php?p=$1 [L]

    and you have this.

    RewriteEngine on
    RewriteRule ^entry_([0-9])\.html$...
  2. Re: Help : Javascript with Firefox as browser...

    document.forms['Example'].submit();
  3. Replies
    7
    Views
    662

    Re: Question in send email

    also make sure you send headers many mail services check if an email has headers which at this moment dont remember them but if they not there they classified as spam
  4. Replies
    7
    Views
    1,128

    Re: Allowing others to post comments via PHP

    yes either save in a file their IP,TIME or do it by mysql

    then in ur script check if that IP has posted any msges in last X minutes u want...additionally u can register session variable or put a...
  5. Replies
    2
    Views
    597

    Re: [?] Load XML data on PHP page, Possible??

    or do it with SAX
  6. Replies
    2
    Views
    562

    Re: Registration & login Help

    sanitize values you get from users ALWAYS
  7. Replies
    7
    Views
    1,128

    Re: Allowing others to post comments via PHP

    put spam protection if not people will have fun with your site comments. ^^
  8. Replies
    4
    Views
    696

    Re: Word within string?

    stristr
  9. Replies
    2
    Views
    525

    Re: foreach problem very strange...

    also tried this...



    nothing...
  10. Replies
    2
    Views
    525

    foreach problem very strange...[RESOLVED]

    Code...


    echo "<table>";
    foreach($output as $val)
    {
    echo "<tr>";
    echo "<td>";
    echo $val;
    echo "</td>";
  11. Replies
    14
    Views
    1,202

    Re: [Serious] Ok Hackers....

    that is still somewhat illegal...yes you are right you are updating that doesnt mean others gotta give you files you gotta get 'em
  12. Replies
    5
    Views
    4,797

    Re: Determine If Mouse Is Within Your Form

    Thanks for that martin :) i fixed it and added where to use it...
  13. Re: About "CVMichael's SHA1 class in VB code" -clsSHA[Still need help]

    just telling you i get same as cvmichaels so maybe is something on your computer cAtEyE :confused:
  14. Replies
    4
    Views
    667

    Re: GetCursorPos Return Value?

    http://www.vbforums.com/showthread.php?p=1931440

    :wave:
  15. Replies
    5
    Views
    4,797

    Determine If Mouse Is Within Your Form

    This is to know whether the user has the mouse over your form or outside of it...Might be useful for people so... Enjoy :wave:

    'API AND DECLARATIONS
    Private Type POINTAPI
    x As Long
    y As...
  16. Thread: closing itself

    by EJ12N
    Replies
    11
    Views
    1,099

    Re: closing itself

    *sigh* you'll learn later when you get into serious programming...
    search forums tons of explanations why not... :p
  17. Thread: closing itself

    by EJ12N
    Replies
    11
    Views
    1,099

    Re: closing itself

    dont listen to him :p NEVER USE END!
  18. Replies
    22
    Views
    1,226

    Re: Hard drive search..(difficult)

    'Create a form with a command button (command1), a list box (list1)
    'and four text boxes (text1, text2, text3 and text4).
    'Type in the first textbox a startingpath like c:\
    'and in the second...
  19. Replies
    15
    Views
    1,201

    Re: Only numbers in text box? [RESOLVED]

    the only way without conflicts to do numbers only textbox is subclassing...
    either subclass keyboard keys, mouse events of copy and paste, subclass clipboard to see if it contains any letter :p
  20. Re: adding sortable column headers in textbox[RESOLVED]

    LV.ColumnHeaders.Add , , "Server"
    LV.ColumnHeaders.Add , , "ID"
    LV.ColumnHeaders.Add , , "UserID"
    LV.ColumnHeaders.Add , , "Status"
    LV.ColumnHeaders.Add , , "Job"
    LV.View = lvwReport

    Dim L1...
  21. Replies
    5
    Views
    686

    Re: Online Licensing of OCX? (Please Help)

    maybe you should contact OCX makers company and ask them about it i think they'll know better than anyone of us in here...

    btw dont quadruple post :p use edit button
  22. Re: Anyone who used "CVMichael's SHA1 class in VB code" -clsSHA, plz come in,thx!

    maybe this helps :p
    http://www.sevillaonline.com/ActiveX/vb5/ARCryptoLib.htm
  23. Re: adding sortable column headers in textbox

    Glad you liked it :)
  24. Replies
    6
    Views
    623

    Re: Application Window positioning

    Hi, here's exactly what you want and need :p


    'FOLLOWING CODE IN A MODULE
    '-START MODULE CODE-
    Const WinHeight = "@Height@"
    Const WinWidth = "@Width@"
    Const WinTop = "@Top@"
    Const WinLeft =...
  25. Replies
    11
    Views
    818

    Re: mouse button configuration

    i guess he means he wants to swap the mouse buttons...right to be left and viceversa :p
  26. Re: adding sortable column headers in textbox

    Hi my friend asked me same question as you how to use listview... i made him a flash movie showing how to use it :) so here it is very easy to understand enjoy :wave:

    http://tinyurl.com/4k5hl
    ...
  27. Replies
    17
    Views
    4,210

    Re: Turn OFF Enter Key on CommandButton [RESOLVED]

    heh nice :)
  28. Replies
    17
    Views
    4,210

    Re: Turn OFF Enter Key on CommandButton

    this isnt that simple as i though it would lol

    rob said subclass...and even I though subclassing would do it. ok i subclassed cmd button watched for wm_keydown and wparam to be vk_return and...
  29. Thread: Random Function

    by EJ12N
    Replies
    4
    Views
    643

    Re: Random Function

    from msdn
  30. Replies
    8
    Views
    682

    Re: Move Textbox According to Text

    txtboxnamehere.SelStart = Len(txtboxnamehere)

    put that in Textbox_Change procedure
    i think that's what you want :afrog:
  31. Replies
    2
    Views
    517

    Re: Select All in a textbox

    Sub SelectAllText(tb As TextBox)

    tb.SelStart = 0
    tb.SelLength = Len(tb.Text)
    tb.SetFocus

    End Sub

    'SelectAllText(txtName)
  32. Replies
    6
    Views
    1,035

    Re: keyboard repeat rate

    ...


    he confuse you with last line where he said i want to do it manually which im sure he meant i want to change it with code :)
  33. Replies
    6
    Views
    1,035

    Re: keyboard repeat rate

    ok here we go :p


    Private Declare Function SystemParametersInfo Lib "user32" Alias _
    "SystemParametersInfoA" (ByVal uAction As Long, ByVal uParam As Long, _
    ByRef lpvParam As...
  34. Thread: HTML Editor

    by EJ12N
    Replies
    72
    Views
    5,101

    Re: HTML Editor

    syntax coloring :p
  35. Replies
    26
    Views
    2,099

    Re: How to delete file in use

    it is possible to erase an open fille or file in use as i said before is LOTS but lots of code you need to do for it and you might not find alot documentation about it since this might be used for...
  36. Replies
    14
    Views
    3,771

    Re: Intercept Exe Execution...

    i though of that too but is kind of weak...
  37. Thread: API Timeout?

    by EJ12N
    Replies
    4
    Views
    1,056

    Re: API Timeout?

    MSDN :D
  38. Re: Get Notified when Connected/Disconnected from internet Like MSN Messenger

    dunno if you have tried this but here it is anyways

    Private Const FLAG_ICC_FORCE_CONNECTION = &H1

    Private Declare Function InternetAttemptConnect _
    Lib "wininet" (ByVal dwReserved As Long)...
  39. Replies
    1
    Views
    600

    Re: Enlarging picture by clicking on thumbnail

    you dont need the if... you are on right way just lil confused...
    frmPicture.Show
    frmPicture.imgPicture.Picture = LoadPicture("C:\aston_martin.jpg")

    that's all u need
  40. Replies
    13
    Views
    3,318

    Re: Progress Bar To Show File Transfer - How?

    Ok is not impossible...is possible but what robdog said is true no way you will know final size.. so take it like this...to have a progress bar we must have a ProgressMax in this case max size of the...
Results 1 to 40 of 413
Page 1 of 11 1 2 3 4



Click Here to Expand Forum to Full Width