Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
M

mahesh_134_s

@mahesh_134_s
About
Posts
2
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • auto scroll in text box
    M mahesh_134_s

    Hi, call the following in the event where u want auto scroll... textBox1.SelectionStart = textBox1.TextLength; textBox1.ScrollToCaret(); For example create one textbox n one button in a form and call the above in the button_click event which adds sum text as well as scrolls the textbox.. private void button1_Click(object sender, EventArgs e) { textBox1.Text = textBox1.Text + " Hi this is a test message"; textBox1.SelectionStart = textBox1.TextLength; textBox1.ScrollToCaret(); ////textBox1.Refresh(); } I think u got the answer for ur question... Regards Mahesh

    modified on Tuesday, March 3, 2009 2:23 AM

    C#

  • Outlook Add-in to Forward new arrived mails to other computer's Outlook via LAN
    M mahesh_134_s

    Hi all, I m developing an add-in for outlook using C# (VS 2005). The requirement is when i click the addin button it should forward all the newly arrived mails to all other systems through LAN. It should not use internet connection, the reason is our internet connection is not able to serve all the PCs. So mails will be sent to one id, and the add-in should forward it to other systems... Is it possible to send a mail from outlook of one system to outlook of another system through LAN? If possible how to do that? Thanks in Advance, Mahesh S

    C# csharp visual-studio tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups