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 TouchToneTommy 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: *

  • Users: Fubear
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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 =...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. Fubear

    How do I update a database?

    Ok, I'm playing with my first ASP.NET page, it is just a test page so I can familiarise myself with building Web Applications in VB.Net. I have the page linked to an Access Databse, and I can get the data out fine. I have a listbox bound to a table, and then a Dataview selecting the currently...
  10. Fubear

    Is this possible - Child Pages

    I am converting an HTML site template to ASP.Net. One of hte pages will have a dropdown list of records, the user selects a record and either clicks on either Edit or New. When this happesm some Javascript fires off and opens a new window with the details. Is it possible in ASP.NET to have the...
  11. Fubear

    VS/ASP.Net Newbie needs kickstart

    Hi, I have been tasked with building and deploying a dynamic site using ASP.Net (with tight deadline). The company has set me up with VS.Net, and I have today to familiraise myself with the package before I hit the ground running tomorrow. I am experianced in VB and Java, and will be...
  12. Fubear

    Control Parent Window

    I have a web page with several HTML links to open new windows. I know I can use 'var x = window.open (...)' to be able to control the window that has been opened. I have a select box for the user to select a record, and a link to open that records details in a new window. When the details are...
  13. Fubear

    Problem Updateing Table from SQL Server

    I am trying to export some data from SQL Server to a table in MS-Access. I have setup a DTS object that pulls the data out in a query, drops and rebuilds the table in access, then copies the data over. Running the DTS package manually, everything works. When I schedual the package, the...
  14. Fubear

    Add additional Item to comboBox

    I have a form which contains a combobox and a listbox. The listbox contains a number of items based on the ID number of the parent form. I want the combobox to filter the listbox based on the category of the listbox items. The listbox and combobox display their data correctly, and the...
  15. Fubear

    Alternating Datasheet BGColour

    Not really a question relevant to any of my current projects, but is it possible to alternate the background colour in datasheet view. Taking this forum as an example, the background colour for threads/replies alternates between light blue and white. I think it would be nice if I could do this...
  16. Fubear

    Problem adding/filtering in query

    I have a query which is being used as a recordsource on a form. What I want to be able to to is to have the user enter two integer values into two text boxes and have the resultset of the next for only display the values between what the user entered. My WHERE criteria is set to: Between...
  17. Fubear

    DTS and MS-Access

    I am trying to export some data from SQL Server to a table in MS-Access. I have setup a DTS object that pulls the data out in a query, drops and rebuilds the table in access, then copies the data over. Running the DTS package manually, everything works. When I schedual the package, the...
  18. Fubear

    Read in HTML Query Headers

    Ok, We sent out an HTML email questionaire throughout the office, and our IIS server is currently 'broken' so writing some kind of script to recieve the responses wasn't feasable. I currently have 15 reposnses in my inbox (I only sent it out about 20 mins ago), with a .ATT file in them. The...
  19. Fubear

    ASP Pages cannot be found

    I have an ASP script that needs to be run on our IIS server, but when I try to browse to it through IE, I get a rather simple yet uninformative message. (it doesnt say 404 anywhere). --- The page cannot be found The page you are looking for might have been removed, had its name changed, or is...
  20. Fubear

    ServerFilter Automatically Saving

    I have a form with a button that opens a second form that shows data relating to the record in the first form. The button to do this uses the criteria argument of the openForm command to select the correct subset of data. My problem is that this criteria is automatically entered into the...

Part and Inventory Search

Back
Top