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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by tbubbs

  1. tbubbs

    Reloading a calling page

    Thanks I tried this, however this loads the page without a postback and therefore everything that the user selected on the calling page before opening the pop up window gets reset. Is there a way to do a postback of the calling page through the pop up form? Thanks!
  2. tbubbs

    Reloading a calling page

    How do I trigger this to happen? Closing down the popup window doesn't trigger an autopostback on the calling page. The calling page doesn't know that the popup window has been closed. I need to be able to know when the popup window has been closed so I can reload the calling page...
  3. tbubbs

    Reloading a calling page

    I have a popup window and after selecting a value from this window I need to be able to close it and reload the page that called it. I used this code in my aspx.vb file: Response.Write(&quot;<SCRIPT language='javascript'>&quot;)...
  4. tbubbs

    Build an update statement dynamically from just a Dataset

    Well, apparently you can, though it is some work (but not much, once you get one method working well...). You have to loop through the dataset with datatable and datarow objects, and then just build your strings. You also have to have in place some rules (I suppose they would be different for...
  5. tbubbs

    Build an update statement dynamically from just a Dataset

    Hello all, I was wondering - I have a dastaset that has been modified, is it possible to build an update/insert/delete combination of statements and NOT use a dataadapter? And then update the database using these statements that were just created, once again not using a dataadapter? I would...
  6. tbubbs

    Frames and redirect

    The treeview is being built dynamically from the code behind page. I get the proper id's for each node, I've also filled in the target property under the tree view, but that does not seem to be read. So, I am trying to figure out a way to populate the right frame from the selected node of the...
  7. tbubbs

    Frames and redirect

    Hi, I have a treeview on my left hand frame that allows me to select a node. Depending upon which node is selected I would like to reload the frame on the right hand side. Currently, I am using the vb code behind page to capture my ID and response.redirecting. The problem is that using...
  8. tbubbs

    Tree View web control

    We are attempting to use a treeview control in a framed environment. The multilevel treeview is populated from the code behind vb page coming from a sql database. The treeview exists in the left frame and we wish to populate our body (right) frame with information based on which node is...
  9. tbubbs

    OLEDB and Foxpro

    Actually, let me check, because I'm fairly certain that we did not, that it is using the original method of .select... As I thought, oDA.Update(oTable.Select(Nothing, Nothing, DataViewRowState.Deleted)) oDA.Update(oTable.Select(Nothing, Nothing, DataViewRowState.ModifiedCurrent))...
  10. tbubbs

    OLEDB and Foxpro

    Well, out project manager just came by. It turns out that FoxPro is not very compatible with .NET. What has to be done is something along the lines of a FoxPro DLL has to be created that takes in an XML string (likely in the form of an UpdateGram) that will be used to update the database, and...
  11. tbubbs

    OLEDB and Foxpro

    Well, passing in a dataset [oDA.Update(oDS)] as an argument produces this for an error: An unhandled exception of type 'System.InvalidOperationException' occurred in system.data.dll Additional information: Update unable to find TableMapping['Table'] or DataTable 'Table'. If we change the name...
  12. tbubbs

    OLEDB and Foxpro

    Our team is having problems updating a FoxPro database through OLEDB. Getting and displaying data has not been an issue. We have a data adapter that has insert, update, delete and select statements. The parameter collection satisfies the requirements for our statements. All the logic sits in a...
  13. tbubbs

    Source Control and the Page Language statement

    The pages are all named the same for each machine. Basically one person on the team created her project first and then entered all the pages into source safe and everyone else created their project from the files in source safe.
  14. tbubbs

    Source Control and the Page Language statement

    I have a question about the inherits statement on the aspx page. On our team we have each created a project on our local machine and we have all of our pages under source safe control. We are finding that when one user works on a page and checks it in, that the next user to check that page out...
  15. tbubbs

    Asp Pages and the Mac

    HI, Here are some questions I have regarding the Macintosh and asp/html pages. I have some links that are used to take a user to another webpage, these are not working on the mac/ie5, the same goes for my menu which is created using links. I know that this seems very vague, but I'm not sure...

Part and Inventory Search

Back
Top