Search:

Type: Posts; User: jalexander

Page 1 of 5 1 2 3 4

Search: Search took 0.04 seconds.

  1. VS 2010 [VB 2k10] I really need a teacher/friend... who helped you, when you first started?

    I started out a history major...and in history (no matter the country) people that achieved great things always had someone pointing out the way to them when they started out. I need that...
  2. Re: [vb2010] At what point did you finally "get it" & how did it come about?

    Now there is something that I agree with 150%!! On an even 'larger' scope....Our 'biggest' edge ('ours' being the American Continent) going into the future is creativity. Our culture's major...
  3. Re: [vb2010] At what point did you finally "get it" & how did it come about?

    Rut Roh...Dope! Thanks for the post Shaggy. I figure all of your combined experiences/suggestions can be combed through and maybe end up being a manual of sorts :)
  4. VS 2010 Populate txtbox values on App1.exe with Command Line Arguments (sent from app2.exe)

    Ok so my App1.exe..closes itself when it's finished...after roughly 12 hours of doing it's task. It has 4 text box's on it. Those are the only things that need to be changed when it is "re-started"...
  5. Re: [vb2010] At what point did you finally "get it" & how did it come about?

    Thanks for your input, very thoughtful & full of information. If everyone's replies are like that then I'll be super happy because I'll be learning a lot!
    I thought of interning somewhere... the...
  6. Replies
    5
    Views
    957

    VS 2012 Re: WebBowser scrolling

    This brings up a great feature that should be added to firefox/chrome etc. You know how when you refresh a page...while reading an article... it will take you back to your last position?
    That seems...
  7. [vb2010] At what point did you finally "get it" & how did it come about?

    I seem to do my coding / research in 'spurts'...like for a week at a time. I'll fix an issue with a personal program of mine / upgrade it / add new features etc. Do a whole lot of reading on the...
  8. VS 2010 Re: [VB] A quicky pic display program. Friday night newb coder help! :)

    Awesome thank you for pointing me in the right direction. I'll post back when I've got something & leave the code I make for anyone that finds this post via a search/google result
  9. VS 2010 Re: HowTo: Running a vb project on a timed 'schedule'

    Thank you so much... I took a little time off programming & when i came back (several months later now) what you said here...makes perfect sense!! THANKS!! A++
  10. VS 2010 Re: Emailing (SMTP) and including a reply link (?)

    Hi,
    I can't help with your question but I just wanted to point out...
    That if this is for a commercial application... a lot of people have no default "mailto:" program installed on their computer....
  11. VS 2010 [VB] A quicky pic display program. Friday night newb coder help! :)

    I'd really appreciate if you guys could help me out with some code for this super fast image changing thingy I'm doing. I want to use it to do my own animated cartoon stuff with V.B. as the player....
  12. VS 2010 Re: [vb.net] making an app to control another app (change variables etc.) lil help? :

    Ok i actually just came up with another idea....for the variables anyways. Utilizing the properties function (to save the current txt data at close) and simply ticking a integer up at each...
  13. VS 2010 Re: [vb.net] making an app to control another app (change variables etc.) lil help? :

    Ok i checked that out....but from other posts in that thread....do you think AutoIt would be a simple solution to my problem?
    I.E. Can autoit be scheduled to run an .exe at a specified time every...
  14. VS 2010 Re: [vb.net] making an app to control another app (change variables etc.) lil help? :

    Ok well, basically i just want to make a secondary .exe that will reload exe #1....& change 3 txtbox variables upon re-starting it
    What's going to be the easiest way to go about that?
  15. VS 2010 [vb.net] making an app to control another app (change variables etc.) lil help? :)

    Ok way back when in vb6, i remember using api to do stuff like set username/passwords on other applications like AIM, ICQ etc. My big brother gave me a program where i could just drag a + sign icon...
  16. VS 2010 Re: VB.NET: appending a text file of url's (at specific lines)

    @danniel64 huh?? are you talking about seo stuff or something?

    .paul. figured it out...as for how... I'll never know, maybe he is pyschic, considering it could have been links to literally...
  17. VS 2010 Re: VB.NET: appending a text file of url's (at specific lines)

    Actually this is the easiest way to do it.....is.....

    Dim ss() As String
    ss = File.ReadAllLines("urls.txt")
    ss(3) = "http://finance.yahoo.com"
    ss(55) =...
  18. VS 2010 [resolved] VB.NET: appending a text file of url's (at specific lines)

    Ok lets say I have a text file called "google.txt", which contains 500 google links (going to different keywords or new stories etc.)
    What i want to do...is at line #50, #75, #100, #150...simply...
  19. VS 2010 Simple Question, combine a string + int. Seperate with a ; ...& then write to LstBox

    Ok so in one of my programs functions, I collect a STRING & an Integer (in two seperate variables), one after the other. Then do something with both of those.

    What I want to do is.....after...
  20. Re: urgent help needed: mysql/sql database, checking for duplicates/adding line

    It has Mysql databases available for sure.
  21. dupe

    dupe
  22. urgent help needed: mysql/sql database, checking for duplicates/adding line

    Let's call my program FortuneSender.exe, it's made to send Fortune cookie messages to my forum members. Currently it sends 1 fortune to each member per month via forum PM function. They have to...
  23. VS 2010 httpwebrequest/response - view the response in text on form

    i am looking to add what amounts to a debug window on my form (vb2010)...so i can see incoming html/server status/re-direct replies etc. in real time between requests....how would i go about adding a...
  24. VS 2010 Re: httpwebrequest - sending 'get's' to urls that would auto-load in a normal FF sess

    Yea ok that's not true, I built a pretty awesome project with it.....but it's definitely limited, requires a ton of maitenance, uses a lot of ram & is HELLA slow. But it does the job!
    And I have to...
  25. VS 2010 Re: Problem with HTTPWebRequest VS2010 Ultimate

    If your problem is an action happening too quickly add the functions as part of a Case Select inside a timer.

    Here is an example......it's sloppy cuz i got dyslexia ...but should give you the idea...
  26. VS 2010 Re: HowTo: Running a vb project on a timed 'schedule'

    Ok so are you saying that I should make AppScheduler.exe as a Command Line program? Because my Program1.exe is a windows form program. Sorry I'm just slightly confused, trying to figure out your...
  27. VS 2010 Re: httpwebrequest - sending 'get's' to urls that would auto-load in a normal FF sess

    Ok so pretty much I have to write it to a document (virtual or otherwise) to get the same effects as a browser....got it. Or write my own requests..ok well that covers that question then.

    Now...
  28. VS 2010 httpwebrequest - sending 'get's' to urls that would auto-load in a normal FF session

    Started playing with httpwebrequest as my projects have gotten far too complex for the VB 2010 WebBrowser control to handle. And lets face it....it's so out of date it's just not worth developing web...
  29. VS 2010 [resolved] vb project on a timed 'schedule'

    Ok so my current VB project has been complete for some time now. When I start it up, it performs its desired functions over the course of between a 12 & 24 hour period. When It's finished I have to...
  30. VS 2010 Re: okie..i logged in! (webreq) yeehaw! now how do I nav to other neato ish?

    Ok awhile back Jdeezy on here was helping me out/tutoring me....he told me that there was a method....where as.....you could download a webpage using kinda like webrequest...& it would download the...
  31. VS 2010 [closed] okie..im in! now how do I nav to other neato ish?

    Ok so after a few hours on google, I figured out how to login my forum website. And even search the page (after login) for "Welcome, JennVBnet" to know I logged in successfully. Now my cookies are...
  32. VS 2010 Help with checking Strings that contain a " in them. VB thinks its an end statement?

    So I'm using httpwebreq's to perform a simple check on a page. Using....

    If strSource.Contains("Welcome, <a href="http://myforum.n3t/userid=2804">JennVBnet") Then

    Of course VB think's the...
  33. VS 2010 Re: need help clicking a trickly lil image on a html doc

    You're awesome, thanks for stopping in my post today Inferrd! & YES I tried classname, but i had it as "className" ! OMFrikkinG! My parents used to blast Rod Stewart on our way to church every...
  34. Replies
    1
    Views
    3,584

    Re: Mouse Lock Demo v1.0

    This will really come in handy as a simple tool to use in correlation with Photoshop. +1 Thank you!
  35. VS 2010 Re: need help clicking a trickly lil image on a html doc

    Yup this one is definitely a tough one. Usually I'll just go through every single possible keyword until i find the one that lets it get clicked. This time i did that & nothing ever happened. What's...
  36. VS 2010 Re: need help clicking a trickly lil image on a html doc

    Now when you click it with your mouse pointer....it shows this little "spinning animated circle", but you never actually leave the page. Your comment just shows up a second or so later. Here is a...
  37. VS 2010 Re: need help clicking a trickly lil image on a html doc

    Ok I really spent some time collecting & preparing this data for you. It's a screenshot of the page/button in question. Along with the relevant page html + the code I am currently using. I'm hoping...
  38. VS 2010 Re: need help clicking a trickly lil image on a html doc

    Bump for anyone that saw the coder.org viral video this month & isn't doing their job right now to help young ppl learn how to code! And to keep more programming jobs in America, instead of being...
  39. VS 2010 [resolved] need help clicking a trickly lil image on a html doc

    wrote a little program to comment when my friends post a new instagram picture....so im using statigram a.t.m.
    got everything else working so far ...i load my friends pics from my update page...& i...
  40. VS 2010 Q? - scanning a String Variable for a keyword/'s -> Using IF AndAlso Then

    Based on the following information please help me figure out how to scan a variable for multiple keywords!

    Ok so...lets say we populate a string called "Sentence1" with the following text.. (Hi i...
Results 1 to 40 of 163
Page 1 of 5 1 2 3 4



Click Here to Expand Forum to Full Width