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
V

vbdotnetcoder2005

@vbdotnetcoder2005
About
Posts
6
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Issue/Bug tracking
    V vbdotnetcoder2005

    I've used both trac and bugzilla. They will both do a great job of tracking issues/bugs of your software projects. Trac however adds some important features like project management, Subversion integration and a built-in wiki. I would recommend taking a strong look at both Trac & Bugzilla.

    The Lounge help sales question

  • MS Ships IronPython 1.0
    V vbdotnetcoder2005

    In our case it will allow us to use Python code that has already been written in-house in our .Net applications, this gives us the flexibility of using either .Net or python in developing new code.

    The Lounge com question

  • How to send email using vb?
    V vbdotnetcoder2005

    This is for VS 2003 and it looks like it has changed for VS2005. Here is some code to get you started. Look on MSDN for more class documentation. Dim email As New System.Web.Mail.MailMessage Dim EmailSrv As System.Web.Mail.SmtpMail email.To = "youremail@yourcompany.com" email.From = "youremail@yourcompany.com" email.BodyFormat = Web.Mail.MailFormat.Html email.Body = "Testing" email.Subject = "Test Email" EmailSrv.SmtpServer = "email.yourcompany.com" EmailSrv.Send(email)

    Visual Basic help tutorial question

  • Ghostscript pdf converter
    V vbdotnetcoder2005

    Check out http://sourceforge.net there appears to be quite a few projects going that should meet your needs.

    Visual Basic help csharp json

  • datagrid
    V vbdotnetcoder2005

    vengaqua wrote:

    what is dgresults in this dgResults.Item(dgResults.CurrentRowIndex, 4). can u explain this a lillte bit...

    Sorry, I should have mentioned that. dgresults is the name of the datagrid. The item will return a datagrid item which requires you to pass it a rowindex and a column index. So I used the currentrowindex of my datagrid and then passed it the column I wanted in this case it was column index of 4. You can also see an example here on MSDN: http://msdn2.microsoft.com/en-us/library/wdze7s55.aspx

    Visual Basic csharp tutorial question

  • datagrid
    V vbdotnetcoder2005

    As far as deleting from a data grid it depends on how you are populating the data grid and how you normally delete rows from you database. I usually use straight SQL statements with a OleDbCommand, so it that case you would execute the command and then refresh the datagrid to redisplay your results. I'm just guessing but it sounds like you might be trying to delete the row in the data grid that user selected? You can get the selected value of a column in a row based on a double click like this: dgResults.Item(dgResults.CurrentRowIndex, 4) I do this on a double click, and this should give you the selected value you need. Good Luck, Curtis

    Visual Basic csharp 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