Jump to content
Xtreme .Net Talk

JRichmond

Avatar/Signature
  • Posts

    40
  • Joined

  • Last visited

About JRichmond

  • Birthday 11/08/1977

Personal Information

  • Occupation
    Systems Analyst
  • Visual Studio .NET Version
    Visual Studio .NET Professional 2003
  • .NET Preferred Language
    VB.Net

JRichmond's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. JRichmond

    Xml-rpc

    I'm in the process of writing my own blog, and I'm trying to figure out how to automatically send a ping to sites such as Technorati using XML-RPC every time I add or edit a post. I've tried searching Google with very few results. The Technorati site gives some vague directions, but I have no idea where to go from there. Can anyone get me pointed in the right direction?
  2. What are you trying to accomplish?
  3. me.checkboxlist.CheckedItems.Items(i) me.checkboxlist.CheckedItems.Count
  4. No, as far as I know, the CheckedListBox control doesn't have the ability to display grid lines. The only thing I could think of to suggest would be to use a datagrid with a checkbox control in each row.
  5. I'm using an old dll for verifying addresses, and I'm having major problems trying to call any of it's functions from my vb.net code. The documentation is almost all C and C++ code. They did include a very small VB6 example, and I've been able to get that part working in VB.Net. There are other functions that I haven't been able to figure out yet, though. Does anyone know about a C++ to VB.net translator or porting tutorial that I could use? Or, has anyone done this before? One of the main problems I'm having is translating from char or char * or char ** to VB.net code. I'm not sure how to convert pointers. Any help would be much appreciated. Thanks!
  6. I haven't used version 2, but I have had a little bit of exposure to the full version of the original NetAdvantage Suite.
  7. I finally got this working using a session variable to store my dataset between page loads, but that seems like a kinda hokey way to do it. Does anyone know of a better way to update a datagrid or datalist without using a database? Thanks!
  8. Thanks! :cool:
  9. True. This would get rid of the spaces before counting the characters. Although, it would still count any tabs or other whitespace... TextBox2.Text = TextBox1.Text.Trim(" ").Length
  10. It seems that pretty soon you'll be able to use "Continue": http://blogs.vbcity.com/mcintyre/archive/2004/08/03/151.aspx
  11. TextBox2.Text = TextBox1.Text.Length
  12. I'm not sure why it's not working for you. I just tried it out, and it worked just fine for me. I had a datagrid aligned on the right, and when I click on a button, it moves to the left. Can you post the html and maybe some of the code for this?
  13. Are the checkboxes in a DataGrid? You should be able to use the FindControl function to get access to each of the checkboxes. CType(dgDataGrid.FindControl("chkCheckBox"), CheckBox).Checked I think there's a FindControl for the Page object too. I hope this at least get's you pointed in the right direction. :) Good Luck!
  14. Nevermind... Obviously it's working now. :p Apparently it just takes a while for the forums to realize that I've reached the "Freshman" level.
  15. Ok, I have over 25 posts now, but I'm still not allowed to edit my avatar.
×
×
  • Create New...