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 strongm 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. Fubear

    bluescreen during boot and reboot.

    I had the same thing - i got a BSOD&Reboot loop. The error had soemthing to do with a core area of the registry being missing if i remember correctly. My only recourse was to reinstall - I lost all email over 10 days old, which was my most important info on the drive.
  2. Fubear

    Using an ASP.Net page as a presentation

    A great bunch of responses - I will start looking into things tomorrow. The page will have to change the layout once in a while to prevent screen burn (the old presentation was running for 1 year solid before i started, and has left some nasty burn). My main problem is making sure the screen...
  3. Fubear

    Using an ASP.Net page as a presentation

    We run a plasma screen in the office here, that shows a variety of information for the internal staff. currently we run a powerpoint presentation, which being run 24/7 has a habit of freezing requiring me to close the presentation and running at again once a day. We are thinking of replaceing...
  4. Fubear

    Page_Load Not Executing

    Oops, was looking int the wrong window. Worked Fine Thanks
  5. Fubear

    Page_Load Not Executing

    Didnt work :-( I changed the one line and my test code is still not executing.
  6. Fubear

    Page_Load Not Executing

    ok, I dont know what i have done to cause this - but somehow I managed to 'unlink' my events from my objects. say I have a button which executes Button_Click event, the code is still there, but I had to go bac to the button in VS.NET and select that method for the event from the designer again...
  7. Fubear

    Problem with SelectedItemTemplate

    Ok, I have a datalist with a bunch of databound linkbuttons. I want the linkbutton for the selected item in the list to be bols when clicked on. My problem is that although this DOES work, it seems to be a page refresh behind. EG: The page will load, and the list displays fine. I click on the...
  8. Fubear

    Binding DataGrid to Arraylist

    Ok... I have tried to move over to using a datalist, as that has the functionality i am looking for, I have modified my code slightly as well. --- My Error: DataBinder.Eval: 'FH.oMyObj' does not contain a property with the name ID. --- My Code: <asp:DataList ID=&quot;MyDataList&quot...
  9. Fubear

    Binding DataGrid to Arraylist

    Ok, I have an Arraylist of custom objects, and I want to display these in a dataGrid. I keep getting an error when running the code I have developed. --- A field or property with the name 'ID' was not found on the selected datasource. --- My code: if (myList.Count > 0) { lblDebug.Text =...
  10. Fubear

    Question on Session Varibles

    Damn. Ok thanks a lot for that - I will play around and see what I can come up with.
  11. Fubear

    Question on Session Varibles

    Thats great thanks. Will the session variables remain in memory after the user has left the page until the timeout period is reached - I may have to set the timeout to something high, as I expect users will spend a lot of time on a single page (>20 mins)
  12. Fubear

    Question on Session Varibles

    I am trying to build a custom login form, and I have managed to get it working so far. When the user logs in, the databse is queried, and the relevant data is pulled out and inserted into two custom objects I created. The first contains all the user data,and the second contains other site wide...
  13. Fubear

    Word Automation

    Bugger! Ok, scratch that idea... it wasnt too important anyway.
  14. Fubear

    Word Automation

    Additionally, I have seen referances to the code: App.Application.Quit(ref missing, ref missing, ref missing); compiling this code gives me: The name 'missing' does not exist in the class or namespace 'MyProject.WebForm1' Help?
  15. Fubear

    Word Automation

    I am trying to write an ASP.NET page that takes the values submit from one form, inserts them into a Word .DOT template, and then emails the template to an email address. My first problem is I cant seem to get the webserver to load word: --- Line 20: private void Page_Load(object sender...
  16. Fubear

    Binding a Dropdown List

    I have a dropdown list that lists all the records in a table. I can bind the datasource so that it puls out the right data and displays the list items correctly. What I am trying to do is set it so that the selected value is set to the value in the currently selected record. I can only see...
  17. Fubear

    How do I update a database?

    So I can update teh data with the dataview? I have been trying through the dataset. I got it working in the end: String catVal = lstCategories.SelectedItem.Value.ToString (); DataRow drUpdateRow = dsCats1.Tables[&quot;tblCats&quot;].Rows.Find (catVal); drUpdateRow.BeginEdit ()...
  18. Fubear

    Document Conversion in ASP.Net

    I have a page where a user can upload a document, which will then become avaliable on another page as a download. What I want to do is to convert that document (ie. MS-Word) into HTML, so the user can click on a link to view it online. I know that not all document types can be converted (like...
  19. Fubear

    How do I update a database?

    What would I do if I dont know which row of the data source I am updating? I have a DataView filtered down to one particular record, which could be any record in the set, I only now the ID number not the row number.
  20. Fubear

    How do I update a database?

    I am assuming that to update I would do soemthing like: oleDbDataAdapter1.Update (dsCats1); This does not seem to work at present. Do I need to update the dataSource manually? Also Adapter1 takes data from one table, if I wanted to update the other table would Ihave to call the Update command...

Part and Inventory Search

Back
Top