Search

You searched for the word(s): userid:755500

Matching Posts

  • changing databindings of a textbox at runtime

    I have an application the has textboxes that are hardcoded to a tabel at runtime, then during the execution of the program, I change the table using this, Dim fid = Me .subsubcatlist.SelectedValue Dim dt As DataTable = Me .SubSubCategoriesTableAdapter.GetDataByssid(fid) Me .txtkeycat.Text = dt.Rows(0).Item(6) Me .txtksearch.Text = dt.Rows(0).Item(4) Me .txtkeyexact.Text = dt.Rows(0).Item(9) Me .txtkeyexclude.Text = dt.Rows(0).Item(8) Then when the update button is pressed this is the code that saves
    Posted to Free For All (Forum) by jeffiec on 7/16/2009
  • str.split() help

    I need to split up a string to get some string data, string like "images/test/89lddmen.jpg". there will always be number at the beginning, anywhere between 1 and 5000, the first two characters after the number will always begin with"ld", so i can always look for those two chars to split, only thing is i can get it to work. dim mystr as string dim strar() as string mystr="images/test/89lddmen.jpg" strar.split(mystr,'ld') expected results would be: strar(0)="89"
    Posted to Visual Basic .NET (Forum) by jeffiec on 6/29/2009
  • Re: str.split() help

    works great! thank you, now i need to strip the 89 off of "images/featured/89" this could be 1, 2, 3 or even 4 numbers, so the qualifier would be the 2nd "/" ? also need to strip ".jpg" off the 2nd string, "." as the qualifier? imagename = imagename.Substring(imagename.TrimEnd(".jpg")) doesnt seem to work thanks again for help so far. :)
    Posted to Visual Basic .NET (Forum) by jeffiec on 6/29/2009
  • Re: str.split() help

    Dim trmst As Char () = { "."c , "j"c , "p"c , "g"c } imagename = imagename.TrimEnd(trmst) that got the first part working, tryed remove to remove the dir path and got this error. id = id.Remove(0, 20) Index and count must refer to a location within the string. Parameter name: count After searching, it apears that it reads it as empty? how can it be empty?
    Posted to Visual Basic .NET (Forum) by jeffiec on 6/29/2009
  • Login failed for user 'SURFMAIN\user'

    I have installed SQL Sever 2k8 to acconadat a new client and fix their application, in the web.comfig, i changed the connectionstring to my local username and password, however, i keep getting the above error, i have searched and nothing seems relative to my situation. Here is the connectionsting: < add name = " test_myConnectionString " connectionString = " Data Source=SURFMAIN\SURFSQLSERVER;Initial Catalog=test_teststore;User ID=SURFMAIN\user;Password=XXXXXX; " providerName
  • visual studios nightmare :(

    ok, my partner created a few pages in VS 2k8, i try to open them in any thing other than his machine, i get this : <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">਍ 㰀栀琀洀氀 砀洀氀渀猀㴀∀栀琀琀瀀㨀⼀⼀眀眀眀⸀眀㌀⸀漀爀最⼀㄀㤀㤀㤀⼀砀栀琀洀氀∀㸀ഀ <head>਍㰀洀攀琀愀 栀琀琀瀀ⴀ攀焀甀椀瘀㴀∀䌀漀渀琀攀渀琀ⴀ吀礀瀀攀∀ 挀漀渀琀攀渀琀㴀∀琀攀砀琀⼀栀琀洀氀㬀 挀栀愀爀猀攀琀㴀椀猀漀ⴀ㠀㠀㔀㤀ⴀ㄀∀ ⼀㸀ഀ <meta name="description" content="for all your workshop needs" />਍㰀洀攀琀愀 渀愀洀攀㴀
    Posted to Getting Started (Forum) by jeffiec on 6/24/2009
  • Re: Deleteing a row with gridview delete command

    DOH..... Sometimes I think part of my thought process is going out the window, thanks a bunch..
    Posted to Data Presentation Controls (Forum) by jeffiec on 6/8/2009
  • Deleteing a row with gridview delete command

    I have looked this up for sometime and cant find an answer specific to my problem, simple gridview; <asp:GridView ID="GridView1" runat="server" DataSourceID="sqldatasource1" AutoGenerateDeleteButton="true" > <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="< %$ ConnectionStrings:SurfSQLServer %>" SelectCommand= "SELECT * FROM tbl_fighter" Deletecommand= "DELETE FROM tbl_fighter
    Posted to Data Presentation Controls (Forum) by jeffiec on 6/8/2009
Page 1 of 4 (31 items) 1 2 3 4 Next >