Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. LovinIt

    Dynamically either Create or Copy XML in javascript

    I got it to work. But would appreciate opinion about how I did it and whether or not it might cause problems down the road? This is it: var oXMLAcct; oXMLAcct = document.createElement("<XML id='xmlAcctCodes" + iLineCount + "' src='getAcctCodes.asp' />"); oXMLAcct.async = false...
  2. LovinIt

    Dynamically either Create or Copy XML in javascript

    Hi all I need a little help here. I am using a third party control. And with that I am creating lines in my form dynamically through DOM. The third party ASP/Javascript control uses xml data islands persae(hope that is the right word) to reference the data. Such as what is seen below. <xml...
  3. LovinIt

    Hi All

    Thanks too ALL who responded, I figured out I was using the wrong Cursor Type. Once I set it to adOpenKeyset the recordset.Field(<ID>) began showing up... So basically I had to use the following to setup the recordset. DIfferent example but it does work. rstRemote1.Open "tOrders"...
  4. LovinIt

    Hi All

    Hi Roy! Thanks for the response. Actually my SELECT ID=@@Identity works. But what I am afraid of is using that in conjunction with an ADDNEW. Documentation I found has stated use it in conjunction with a INSERT sql statement hard coded. And I have 5 tables with 10-15 fields in each. I...
  5. LovinIt

    Hi All

    I am hoping someone can help me out... Maybe I am being stupid... Trying to get the autonumber on an ADO ADDNEW. And I been going around and around and I am starting to get phsyically ill from the dizziness :) So now I am working with a simple example meaning nothing else is in the ACCESS...
  6. LovinIt

    Combo box -maintaining different value than in list

    Hi, Never Mind I figured it out... Yours in deepest gratitude, Angela
  7. LovinIt

    DataSet/Dataview/Combobox

    Hi All, Hope everyone had a white christmas. Well we had a white day after christmas, it is currently snowing here. Anyway, I am trying to do a combobox that uses a dataview, Is it possible? It bombs my program and I get a really bizzare error. My code: ' Create a new DataTable and...
  8. LovinIt

    Combo box -maintaining different value than in list

    Hi, I have a question about combo boxes. In Access when you set up a combo box you could allow it to take values from the list or the user could type in a *different* value (one that might not be in the list). Is it possible to do that in VB.NET.. I look to the properties of the combobox...
  9. LovinIt

    DataSet query

    To any who took the time... I really appreciate it... Sometimes you have to release a bug and ask for help and then the Error hits you immediately..Which is what happened My select statement the table I was referencing was invalid. I was accessing "zipcode" which doesn't exist and it should...
  10. LovinIt

    DataSet query

    Hoping someone can help me and tell me what I am doing wrong... I have a dataset that has a table in it called zipcodes. Declared it this way... ' Create a new DataTable and set a DataColumn object as the primary key. dsInfoServices.Tables.Add("ZipCode") Dim keys(1) As...
  11. LovinIt

    Response.Write (usertag) probelm

    Hi, First thing is I do not beleive you can do it that way. That is put a tag in that is asking it to be running at server. Becuase inorder to analyze that code it is already running at the server level. IT would need to run the code twice..which as far as I know it can't do. My solution...
  12. LovinIt

    Bindingcontext.addnew

    Hi Christiaan, Yep it did work... Thanks so much! Angela
  13. LovinIt

    Bindingcontext.addnew

    Thanks so much Christiaan for helping me take off the dunce cap.... I really appreciate it! Angela
  14. LovinIt

    Saving File Name as a String from a Text Box

    Hi, Well just a quicky test... I am unfamilar with the way you are doing it parameterizing it.. But This works: Me.SaveFileDialog1.FileName = Me.TextBox1.Text Me.SaveFileDialog1.ShowDialog() Now notice the order... because if you try and set the filename after you call show...
  15. LovinIt

    Bindingcontext.addnew

    Hi All, I am hoping that someone is able to help me with something simple. I am working with a bound form. The binding works as far as loading and editing data and then saving to the database. However, when adding a new record it is not working... It has one text box where the record...
  16. LovinIt

    DataSet Changes - Show unchanged

    Hi RiverGuy, Thanks for the tip. The manual example works now. I am trying to get the typing into the form to work. Can I verify something with you. Whenever, a record is loaded up into the form fields from the dataset. I must tell the program to do a beginEdit on that record(dataset row)...
  17. LovinIt

    DataSet Changes - Show unchanged

    Hi, I am hoping someone could give me a clue... I am working with VB.NET and have done the following... ------------------For the form declarations----------------- Public sConnection = <<DECLARED PROPERLY>> Friend SqlConnection As System.Data.SqlClient.SqlConnection Friend...

Part and Inventory Search

Back
Top