Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 2,804
» Latest member: msontop6722
» Forum threads: 856
» Forum posts: 3,643

Full Statistics

Online Users
There are currently 5 online users.
» 1 Member(s) | 1 Guest(s)
Applebot, Bing, Google, MorrissgoX

Latest Threads
Looking for Adventure? Fi...
Forum: Random Discussion
Last Post: iHOMEz
11-16-2024, 09:18 PM
» Replies: 0
» Views: 491
Prettys Womans in your to...
Forum: Random Discussion
Last Post: iHOMEz
10-30-2024, 07:45 AM
» Replies: 0
» Views: 778
Prettys Womans in your ci...
Forum: Random Discussion
Last Post: iHOMEz
10-26-2024, 10:50 AM
» Replies: 0
» Views: 808
Beautiful Womans from you...
Forum: Random Discussion
Last Post: iHOMEz
10-19-2024, 02:48 PM
» Replies: 0
» Views: 911
Prettys Womans in your ci...
Forum: Random Discussion
Last Post: iHOMEz
10-06-2024, 05:00 PM
» Replies: 0
» Views: 1,068
Womans from your city - V...
Forum: Random Discussion
Last Post: iHOMEz
07-28-2024, 10:26 AM
» Replies: 0
» Views: 1,441
Supreme Сasual Dating - A...
Forum: Random Discussion
Last Post: iHOMEz
06-14-2024, 11:28 AM
» Replies: 0
» Views: 1,862
Beautiful Womans in your ...
Forum: VB.NET
Last Post: iHOMEz
06-09-2024, 09:23 PM
» Replies: 0
» Views: 1,678
Hangman in Rust
Forum: Other
Last Post: brandonio21
02-04-2018, 11:14 AM
» Replies: 2
» Views: 20,675
How to: Search files from...
Forum: VB.NET
Last Post: brandonio21
11-25-2017, 12:55 PM
» Replies: 1
» Views: 15,987

 
  I have searched all over for this
Posted by: VicDesigns - 08-05-2011, 03:47 AM - Forum: Programming Help - Replies (15)

I have searched Googly Woogly everywhere over the past couple of days for this and can't find a definite solution anywhere.

What I need is some code or a component or something that will allow me to place a Horizontal Ruler and a Vertical Number List on a Rich Text Box in Visual Basic 2010.
The vertical numberlist would be automated where a new line creates a new number etc. You know what I am getting at.
Anyways, does anyone have that magical piece of code or know where one could get it?
<!-- sConfusedhock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt="Confusedhock:" title="Shocked" /><!-- sConfusedhock: -->

Print this item

  Retrieving the source of a tweet using TwitterVB
Posted by: brandonio21 - 08-04-2011, 09:35 PM - Forum: Code Snippets - Replies (4)

Someone asked me on one of my YouTube videos how to retrieve the source of a tweet. Well here is the code. This code is meant to be directly added into the source code found in this tutorial : <!-- m --><a class="postlink" href="http://www.youtube.com/watch?v=zd2gYBsCjqI&list=UUVwwElhbjWhU">http://www.youtube.com/watch?v=zd2gYBsC ... wwElhbjWhU</a><!-- m -->

Code:
Dim source As String = ""
If entry.Source.ToString.Contains("<") Then
'Source is link, get rid of link crap
source = entry.Source.ToString.Replace("</a>", "")
Dim int As Integer = source.LastIndexOf(">")
source = source.Remove(0, int + 1)
Else
source = entry.Source.ToString
End If
'Source variable is now ready to use
n.SubItems.Add(source)
In this code, the variable named 'Source' actually contains the information about where a tweet was posted from.

Hope this helps!

Print this item

  VicPad Coming Soon
Posted by: VicDesigns - 08-04-2011, 07:53 PM - Forum: VB.NET (Visual Basic 2010/2008) - Replies (10)

I am currently in the middle of building VicPad, which will be going out on Beta soon.
Only a few people will have access to beta the application.

The app comes with an advanced WYSIWYG Editor. However, the application has yet to be coded.
If you would like to be on the Beta Team, contact me by registering and sending me a Private Message. If you are accepted as a Beta Tester, you will be given access to the secret Beta Testers forum.

{URL REMOVED}

If anyone has any questions or would like to get involved, post below or send me a PM.
Thanks. <!-- sSmile --><img src="{SMILIES_PATH}/icon_e_smile.gif" alt="Smile" title="Smile" /><!-- sSmile -->

Print this item

  Plurk API for VB.NET
Posted by: b_ongzhenyu - 08-02-2011, 05:39 AM - Forum: VB.NET (Visual Basic 2010/2008) - Replies (2)

May I know how to create a API for Plurk using Vb.Net which is something like the Twitter API. Thanks!

Print this item

  Update Data Tabel From Edit
Posted by: mfbf - 07-30-2011, 05:10 AM - Forum: Programming Help - Replies (1)

I am trying to update the database when I make changes to the data but this code won't work. Thanks for the help in advanced!!

me.validate()
me.customersbindingsource.endedit()
me.tableadaptermanager.updateall()
msgbox("Successfully Updated")

I get the message box but when I re load the application the changes are gone.

Print this item

  Learning VB2010
Posted by: andavies - 07-29-2011, 06:09 PM - Forum: VB.NET (Visual Basic 2010/2008) - Replies (4)

Does anyone know a good tutorial website to learn coding at all????

Print this item

  Help! I need you!
Posted by: TheT3chie - 07-28-2011, 11:32 AM - Forum: VB.NET (Visual Basic 2010/2008) - Replies (2)

so hey guys, I have just started work with visual basic so am a little clueless. I am creating a program witch will run other.exe files when you press the button. How would I go about doing this? Please help! <!-- sBig Grin --><img src="{SMILIES_PATH}/icon_e_biggrin.gif" alt="Big Grin" title="Very Happy" /><!-- sBig Grin -->

Print this item

  I'am back, ps3 help
Posted by: LearningVB2010 - 07-28-2011, 08:07 AM - Forum: Computing - Replies (3)

Hey guys, You may remember me from a few posts a year ago , but I picked up programming after my dad was too proud on his backup.bat program. For anyone not knowing: .bat is a stupid language that can almost only remove/make/copy folders/files (don't learn it).He used robocopy/xcopy for it and you had too fill in your folders manualy. So I started making a program with listboxes adding and writing the codes needed in a .bat file and made him less proud <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> But now do I have this next problem: I have a ps3 <!-- sConfusedhock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt="Confusedhock:" title="Shocked" /><!-- sConfusedhock: --> but the hdmi port is broken, I switched tv's hdmi cables and mixed them all, but it just doesn't work. I opened my ps3, cause I have it already for 3 years and saw that the hdmi port was connected with 2 wires to the mainbord. So now is my question: Where can I buy a fittable/working hdmi port?

Print this item

  Help with Crystal Reporting
Posted by: mfbf - 07-28-2011, 05:04 AM - Forum: Programming Help - Replies (1)

I am generating a invoicing system for my bms software. I am trying to get a crystal report to load from the data typed in on my form. Does anyone know how to code that in vb.
Thanks,

Print this item

  VicPassGen 1.0.0.0
Posted by: VicDesigns - 07-27-2011, 06:38 PM - Forum: Share your programs! - Replies (4)

This is my very first program so please be gentle.

VicPassGen allows you to generate complex passwords of between 5 and 99 Characters within seconds to help you secure your private data on your computer and online.
The program will tell you if your password is Poor, Good, Excellent or Outstanding.
You can also save your password to an rtf, HTML or txt file.

Download: <!-- m --><a class="postlink" href="http://www.vicdesigns.com.au/forums/showthread.php?tid=6">http://www.vicdesigns.com.au/forums/sho ... .php?tid=6</a><!-- m -->



Attached Files Thumbnail(s)
   
Print this item