Search results for query: *

  1. ArizonaRedneck

    Serialize arraylist

    I decided to just go from the database until I find out more about xml and serialization. Thank you for your help though
  2. ArizonaRedneck

    Serialize arraylist

    I'm new to the whole xml thing... I know how to do it just straight out of the database, but not using xml. basically I would have 2 tables. one called Feeds, and one called FeedDetails. Basically, I have a program that will dynamically create a flat file from a database. The user can pick...
  3. ArizonaRedneck

    Serialize arraylist

    I was just wondering how to serialize an arraylist to xml. After that, I would like to store the generated xml into a sql server database. Any help would be appreciated. Thanks in advance
  4. ArizonaRedneck

    debug error

    when I try to start the project, it gives the error that "could not start asp.net or atl server debugging" I am running VS 2002 on windows 2003 server. Please Help!
  5. ArizonaRedneck

    collaberation

    I was the only developer at my work since I started. I have always worked as the only .net developer in my previous jobs as well. My work just hired another developer. I have visual studio on both machines so we each work on web sites locally. The problem that I'm faced with is that we both work...
  6. ArizonaRedneck

    datagrid problems

    never mind it was an "I D 10 T" error. I forgot to check for postback.:o thanks for getting back to me though.
  7. ArizonaRedneck

    datagrid problems

    hello, I have a datagrid that I need to be able to update directly from the datagrid. I have done this before and it worked fine. I am trying to do it again and it's doing some very strange things! First of all the "_EditCommand" only works if the edit/update/cancel column is set for linkbutton...
  8. ArizonaRedneck

    StreamWriter error

    I'll see what I can do. Thanks again for the help.
  9. ArizonaRedneck

    StreamWriter error

    TPM, thanks man. Now it's trying to connect, but the permissions don't exist for it (as you predicted). My new question is how would I add permissions for ASPNET on the remote drive? .NET is NOT installed on the machine. Since there is only the users of the remote machine listed in the file...
  10. ArizonaRedneck

    StreamWriter error

    hey ya'll, having a little trouble here. I want to save a text file to a mapped network drive (Y) in asp.net. This works fine and dandy in regular vb.net but when I try the same path in asp.net it says the vb and the asp are running on the same server objWriter = New IO.StreamWriter(New...
  11. ArizonaRedneck

    SQL Query

    your problem is in: or Item_Desc LIKE '%" & txtItemDesc.Text & "%' with the wild cards on either side, if txtItemDesc.Text is a null string then it is basically saying that it wants any records that have any text in Item_Desc I would perform an If statement of the line before to make sure there...
  12. ArizonaRedneck

    DataGrid Again n Again

    my fault, you need to refresh the grid again at the end. Sorry about that.:o also, if you're using mapping ( if you specified the "TableStyles" for the grid), you would do the following: dgPOrderItems.DataSource =nothing dgPOrderItems.DataSource.refresh dgPOrderItems.DataSource =...
  13. ArizonaRedneck

    To know Table name in Join Query

    you need to use my second example. when you do a SQL join, it creates a virtual table. The Result set of the query thinks that all of the fields are from the same table. If you need to keep track of what field is from what original table, rename them to something unique using the AS statement.
  14. ArizonaRedneck

    To know Table name in Join Query

    in the join you can find it here: SELECT A.BusinessName, B.GrandTotal FROM tblAccount A INNER JOIN tblBilling B ON A.ID = B.MainID if you need it after the join, name them differently: SELECT A.BusinessName AS tblAccountBusinessName, B.GrandTotal AS tblBillingGrandTotal FROM tblAccount A...
  15. ArizonaRedneck

    SQL Query

    I assumed that he had the ">" or "<" listed in the combo box
  16. ArizonaRedneck

    A picture at run time

    you will need to use getchunk and appendchunk. Unfortunatly, I have not done much work with these so I can't be very helpful. If you search yahoo I'm sure you can find something useful.
  17. ArizonaRedneck

    DataGrid Again n Again

    as far as the duplicate records... change dgPOrderItems.DataSource = objDS.Tables(0).DefaultView to dgPOrderItems.DataSource =nothing dgPOrderItems.DataSource.refresh dgPOrderItems.DataSource = objDS.Tables(0).DefaultView for the current row values... dgPOrderItems.CurrentRowIndex...
  18. ArizonaRedneck

    A picture at run time

    Assuming that the "picture of the customer" field value is a file name, use Dim aPicture As System.Drawing.Image PictureBox1.BackgroundImage = aPicture.FromFile(<Folder Location> \ <Image name from database>)
  19. ArizonaRedneck

    Dynamically generating content in a dropdown

    all you need is DropDownList1.Items.Add(*whatever goes here*) I usually put it under form_load
  20. ArizonaRedneck

    SQL Query

    take out the "=" so it would look like the following... select * from table1 where Item_Amount "& cboitemAmount.Text & "
Back
Top