Search:

Type: Posts; User: tarponkeith

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Help with VB 2005 - Reading from an external app's textbox

    I've got an application that continuously feeds information into a textbox from the internet.

    I would like to create an application that can run in the background and "grab" the information in...
  2. Replies
    11
    Views
    565

    Re: Help using If statements

    IF (StrQuestionPopup <> "1") OR (StrQuestionPopup <> "2") THEN
    ...
    END IF
  3. Replies
    9
    Views
    894

    Re: MSAD 70-306 Exam / VB.NET

    RobDog88: Thanks for the info! I'm going to look into getting a few books, and hopefully knock out the exam before it's no longer given...
  4. Replies
    9
    Views
    894

    Re: MSAD 70-306 Exam / VB.NET

    Thanks for the info and link!
    And yes, I did mean MCAD... I think I do that because "MS", as in MicroSoft, sticks in my head... I used to do it at work when I was studying for the MCSD exams; I...
  5. Replies
    1
    Views
    451

    Re: New to vb script need help

    For including ASP code into another file, use SSI...

    <!--#include file="my_other_file.asp"-->

    As for your form, why not have an ACTION="file.asp" and pass the input to the second file, and read...
  6. Replies
    9
    Views
    894

    Re: MSAD 70-306 Exam / VB.NET

    Thanks hack; I'd never heard that.

    I've got 1 year of VB.NET, but 6+ with VB6...

    I guess I'll wait a little longer...
  7. Replies
    9
    Views
    894

    MSAD 70-306 Exam / VB.NET

    Has anyone taken this exam? If so, mind sharing what books you used to get ready, and how helpful they were? Thanks!
  8. Re: How to check if a user has logged in using ASP

    Agreed, cookies is the best (and easiest) way, but make sure you encrypt them...
  9. Thread: need help

    by tarponkeith
    Replies
    2
    Views
    1,051

    Re: need help

    What language, and version, are you using?
  10. Replies
    5
    Views
    612

    Re: [2005] Language "Power"?

    Hey,
    Sorry, I should have elaborated more... I've already done a lot of reading into it and this is what I've found...

    VB.NET is now a more efficient code, meaning an increase in it's ability...
  11. Replies
    5
    Views
    612

    [2005] Language "Power"?

    I am a VB6 guy trying to make the switch to .NET (2005 Express)... I had heard that .NET is more "powerful", is this true? If so, can someone elaborate a little, or point me to a resource? Thanks!
  12. Replies
    4
    Views
    625

    Re: [2005] VB6 style grid?

    Thanks guys, I tried that a million times, didn't realize you had to restart vb...
  13. Replies
    4
    Views
    625

    [2005] VB6 style grid?

    Is there an option somewhere to turn on the VB6 style grid dots on the form designer using VB.NET 2005 Express?
  14. [2005] Deployment differences, VB6 to VB.net 2005 Express

    Hi,
    I'm used to using VB6, and deploying applications with all required runtime's and dependencies... Can anyone tell me how different it is to deploy an application created with the free VB.net...
  15. Replies
    0
    Views
    413

    [2005] First Application, haha

    WooHoo...

    me.Close()


    My first vb.net program...
    I wish VB6 never got old!
    Learning new stuff sucks...
  16. Replies
    4
    Views
    1,284

    Re: Members section of new website

    Thanks for the help!
    I'm working on overhauling the entire site right now, and will definitely work those tips into the new design...

    Much appreciated!
  17. Re: Scrolling through an entire folder of pictures?

    try a filelistbox, set the pattern to *.jpg or *.gif or something
  18. Replies
    5
    Views
    622

    Re: Creating website alerts

    That would be an efficient answer. But I'm wondering, if the site is using ASP or another server side scripting language to dynamically alter the page's contents, would the header reflect that? I...
  19. Replies
    5
    Views
    622

    Re: Creating website alerts

    Could try this:

    Use iNet to download the sites source
    Save source to a file (file1)
    begin loop
    X minutes later download the source again
    Save source as file2
    Compare file1 to...
  20. Replies
    4
    Views
    1,284

    Re: Members section of new website

    Sorry, its http://www.yourcode.info
  21. Replies
    4
    Views
    1,284

    Members section of new website

    Hi,
    Does anyone want to help me test out the members area of a new site I'm working on... If anyone is bored, please let me know... Thanks
  22. Replies
    2
    Views
    469

    Re: Saving!!!???

    Hmm...

    search for SaveSetting & GetSetting

    or

    Save to a text file:


    to Save info:
  23. Replies
    5
    Views
    778

    Re: Send Data To Internet Explorer

    http://www.tampaprojects.com/myspace.asp

    This uses the iNet control... Maybe a good start though...

    Try searching planetsourcecode.com for webbrowser info...
  24. Replies
    7
    Views
    602

    Re: String Problem

    This will get rid of the dashes in the string:

    myString = replace(myString, "-", " ")
  25. Replies
    1
    Views
    513

    Re: Web Browser events

    If it's your webpage that you're viewing through the WebBrowser component, change the HTML tag to disable the right mouse button (easiest way):

    <html oncontextmenu="return false;">
  26. Replies
    0
    Views
    1,046

    Traffic Exchange

    I'm looking for a couple more testers to try out a new type of traffic exchange, the URL is http://www.silverlineweb.com ... If you test it out, use the "contact" tab and let me know you're from...
  27. [RESOLVED] Traffic exchange - tester wanted

    delete
  28. Replies
    3
    Views
    476

    Re: Dynamic Arrays - How to set up

    Dim TmpARR() As String
    'init the arr


    ReDim TmpARR(0) As String
    'now it is TmpARR(0-0)


    ReDim TmpARR(2) As String
    'now it is TmpARR(0-2)
  29. Replies
    8
    Views
    1,167

    Re: VB And Myspace?

    ' Use the "POST" method to this URL with the following data [ email={email}&password={password}] where {email} is your email, and {password} is your password...
  30. Re: string problem: split count

    whoa, I completely misread that post...
  31. Re: string problem: split count

    I'm not sure which of these you are looking for:


    if text1.text = "item1" then
    call command1_click()
    elseif text1.text = "item2" then
    call command2_click()
    call command2_click()
    end if
  32. Replies
    2
    Views
    441

    Re: Generating Words Using Two Lists

    This will make list3 like your FIRST example, and list4 like your SECOND example..


    Dim I As Integer
    Dim J As Integer

    For I = 0 To List1.ListCount - 1
    If (List2.ListCount > I)...
  33. Replies
    4
    Views
    566

    Re: Graphs withing VB

    Try searching PSC... I remember seeing a component on there not to long ago that should make pie charts easy... As for line graph, could try "lines" in a picturebox....
  34. Re: File List Box Help... Simple Problem!

    file1.pattern = "*.txt"
  35. Replies
    11
    Views
    1,100

    Re: How can i do these 2 things...

    If you just want a small bit uploaded to a website... Try making an ASP page with a querystring input that reads pages with ? headers:

    mysite.com/myasp.asp?usersInput=something+new

    then make...
  36. Re: Getting Information from a website and login

    There's plenty of options, but no matter how you do it, make sure it's encrypted... INI file, registry setting, simple registry setting (using the savesetting/getsetting commands), hide it inside an...
  37. Re: Getting Information from a website and login

    In the following, all variables and subroutines are made up, just an example of how you COULD do it...

    dim myBigString as string ' holds all contents from iNet

    myBigString =...
  38. Re: Getting Information from a website and login

    The easy way would be viewing the source by hand, seeing a string that says "you are logged in" or something, and hard coding that into the program. Lets say you want to log into hotmail, maybe you...
  39. Replies
    8
    Views
    1,167

    Re: VB And Myspace?

    Thanks for the heads up DigiRev... RjPasquale: check out THIS
  40. Re: how prevent user writing letters into a textbox

    RhinoBull's way is better
Results 1 to 40 of 55
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width