Search:

Type: Posts; User: Neato

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Replies
    28
    Views
    2,726

    Re: Visual Basic 6.0 - Time to move on ?

    The demand for vb6 support is greater now. A lot of businesses refuse to have a piece of software converted over at a cost, when the old one still works just fine. Conversion itself (depending on how...
  2. Replies
    1
    Views
    914

    Re: Help with htaccess modrewrite

    This post should be under XML, HTML, Javascript, Web and CSS.

    None-the-less, I just had a similar question, which was answered here, hope it helps.
  3. Replies
    4
    Views
    685

    Re: mod_rewrite

    Awesome. Thanks, Sambo! I was looking at some tutorials for Regex, and didn't see that anywhere. Any recommendations for a good tut for this by chance?
  4. Replies
    4
    Views
    685

    [RESOLVED] mod_rewrite

    Heyas, so I'm attempting to teach myself mod_rewrite in htaccess. I've been attempting to create a url rewrite like WP uses, but with just Parent/Child. So far I have:


    RewriteRule...
  5. [RESOLVED] Implementing a cronjob without actually using a cronjob

    I was wondering if there was a way to create a sort of cronjob without actually having to add a new cronjob? I'm not sure if it would be possible in PHP/MySQL or if it would be better created in a...
  6. Replies
    5
    Views
    3,912

    Re: ForEach / Fetch Array

    Thank you both. I actually went with kows' suggestion/example, with alterations. I'll worry about the SEO setting changes when/if I decide to distribute the script. For now it works, so I'm happy ._....
  7. Replies
    5
    Views
    3,912

    Re: ForEach / Fetch Array

    The separate holders are so that after the set number of rows are called, it closes the table or divider and starts the next.

    New Divider -> Category -> Number Of Rows -> Repeat



    I have the...
  8. Replies
    5
    Views
    3,912

    [RESOLVED] ForEach / Fetch Array

    Alright, so I've been trying to get this damn thing to work all night =/ It doesn't like me, or I'm just extremely tired from staring at the screen for so long.

    I have an array I need to create,...
  9. Replies
    24
    Views
    17,887

    Re: [VB6] Sim-Chat - Advance Avatar Instant Messenger

    You can't until he puts up a news site.
  10. Re: Set charset in email through contact form

    I found the actual function, which is pretty much the same as what I had posted before. This helps a little, maybe? Hopefully ._.


    function...
  11. Re: Set charset in email through contact form

    It's using the FormXP send mail function, if you're familiar with it.


    function send_result_to_admin_email($de_email_admin,$de_email_format,$de_email_subject,$email_msg,$replyto=""){
    global...
  12. Re: Set charset in email through contact form

    So, say I'm using the following string:


    send_email($cf_site_title,$cf_webmaster_email,$email,"[Form Result] $de_email_subject",$sender_info.$email_msg,$de_email_format,$replyto);

    I would then...
  13. [RESOLVED] Set charset in email through contact form

    Hey, I've run into a bump in a project. I'm curently working with German characters, and I use UTF-8 on the main page, but the latin char's don't show up correctly in the emails that get sent. Now if...
  14. Replies
    6
    Views
    622

    Re: Checkbox in each Column

    In the properties of the ListView control, just change the Checkboxes setting to True, or when you load the ListView, add the code ListView1.Checkboxes = True
  15. Replies
    5
    Views
    740

    Re: RichTextBox divide line

    If you mean you're trying to find a certain keyword to start with, then you can try using the InStr() function. Below is a reply I made a bit ago with examples....
  16. Thread: Extract strings

    by Neato
    Replies
    3
    Views
    565

    Re: Extract strings

    You'll have to parse out the strings you want out of the strings in the source, so if you're looking for what type it is, you'd parse out

    <th class="tap">Anything between this is grabbed</th>
    Or...
  17. Thread: cryp32.dll

    by Neato
    Replies
    4
    Views
    1,316

    Re: cryp32.dll

    So you're trying to encrypt strings for two separate items?

    It seems to me that you're passing strings through the encryption function one by one, which is why it's creating two different outputs....
  18. Replies
    2
    Views
    452

    Re: Help with code please

    Here's a start: http://www.vbforums.com/showthread.php?t=402083
    You could also try doing a search on the forums for the various keywords you need.
  19. Thread: cryp32.dll

    by Neato
    Replies
    4
    Views
    1,316

    Re: cryp32.dll

    What exactly is the issue. All I can gather from the post, is that you created an application that calls the 'cryp32.dll' file on two computers using xp sp3. I'm assuming the statement 'return non...
  20. Thread: error logging

    by Neato
    Replies
    4
    Views
    474

    Re: error logging

    Wouldn't that defeat the purpose? If you're checking for an error, it needs to be in that particular routine, otherwise you'll have no idea where it occurred at.
  21. Replies
    2
    Views
    527

    Re: Function for Overflow in runtime in vb6

    Error handling for the debug process, will spit out a messagebox with a full description. And instead of ending it, why not 'Debug' and look for the line and/or procedure that's causing it.
    On Error...
  22. Replies
    6
    Views
    661

    Re: Question in .00

    So, you want to add it to the end of whatever the (I'm assuming) total is?

    If so, it's better to just add it onto the end of your total when it's calculated, example:

    string1 + string2 =...
  23. Replies
    6
    Views
    661

    Re: Question in .00

    Is there a number prior to the period? If not, there shouldn't be a need for it to be called? The program can simply skip it, since it will return the same value as it was before.
  24. Replies
    2
    Views
    561

    Re: limit the text??

    In the TextBox properties menu, scroll down until you find 'MaxLength'.. 0 = No limit; You can set it there
  25. Replies
    4
    Views
    574

    Re: [Question] I cant figure out

    cInt() rounds to the nearest number.
  26. Re: How to clear a datafile and How to do a subtotal.

    So, you want to add all the listbox strings together to create the end total, or....? If so, you just have to go through the index's of the listbox one by one, and add the total of each index's text.
  27. Replies
    4
    Views
    664

    Re: Remove text label's click "value"

    Shouldn't it be...

    Private Sub Label1_Click()
    Call PictureBox1_OnMouseDown
    End Sub

    I might be mistaken, I'll work on it real quick and check back in.
  28. Replies
    2
    Views
    945

    Re: Grab iTunes Now Playing Info

    You can do this in vb6, however it wouldn't be a 'script', you'd have to use an API call to grab the windows info (You said the 'Now Playing' is on the title bar?), and then parse out what you don't...
  29. Re: Call webpages title from web browser control?

    No problem =) Good luck, and remember to click the Resolved option for this thread.
  30. Re: Call webpages title from web browser control?

    It grabs the Web Titles, you have to allow the web age to load.

    Here, this one should do you good.

    If WebBrowser1.Busy = False Then
    Label1.Caption = WebBrowser1.LocationName
    End If
  31. Re: Call webpages title from web browser control?

    Erm.. I had a typo, lol..

    Label1.Caption = WebBrowser1.LocationName

    That should work.
  32. Replies
    7
    Views
    1,315

    Re: Toolbar and imagelist !....

    When you add a new image, you only Insert it into the ImageList, and click OK. then you add a new Button into the ToolBar, you set the new Button with a key (this is used for when it's clicked). The...
  33. Re: Call webpages title from web browser control?

    You don't need to make it into a string, you can simply add it like so:

    Label1.Caption = WebBrowser1.Caption

    Just switch out the first string (Label1.Caption) with whatever you need it to go...
  34. Re: Searching Textboxes and Listboxes and dropdown lists

    The following examples are using InStr (In String), which will go through the designated string and look for the provided data.
    Syntax:
    InStr(Start At Character, String One(your input data), String...
  35. Re: Call webpages title from web browser control?

    Dim imastring As String
    imastring = WebBrowser1.LocationName
  36. Replies
    214
    Views
    165,326

    Re: [VB6] - Multi-User Chat Example (Winsock)

    Sata cables + Another box = Recovery of data files :D
  37. Replies
    4
    Views
    649

    Re: Hidden Error - Please Help

    OS version, OCX dependencies not being registered correctly, runtime files not installed. All these are things that could cause it to error prior to main app. execution.

    Check that all these are...
  38. Replies
    2
    Views
    523

    Re: Form Transparency

    Or just have a 'Settings' form available, with frames and a slider calling each forms transparency.
  39. Re: Anyone there to color this control

    Here's a solution already done up.
  40. Thread: Uninstaller

    by Neato
    Replies
    2
    Views
    423

    Re: Uninstaller

    If you do a search, you'll find quite a few posts on this subject, including this one.
Results 1 to 40 of 111
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width