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 Wanet Telecoms Ltd 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: JohnBeton
  • Content: Threads
  • Order by date
  1. JohnBeton

    OleDbDataAdapter & Primary keys

    Hi, I have the following problem when saving data from an XML-file to a database using the OleDbDataAdapter: I'm using a typed dataset, derived from the xml-schema. I load the xml-file into the dataset and try to save the data to the database. (the dataAdapter has all the commands (select...
  2. JohnBeton

    navigating through Arraylist

    Hello all, I have an arraylist with objects of type Product (self defined type). This arraylist is a member of a windows form (compact framework). Now i want to navigate through this arraylist, using buttons (next, previous) on the form. I can go to the next item without problems (using...
  3. JohnBeton

    saving merged dataset to database

    Hello, I have the following problem: I have 2 access databases: 1 for administration, 1 for production. This 2 databases have the exact same table: 'orderDetail'. When new orders arrive, the new orderDetails from the administrationDB and existing orderDetails from the productionDB are merged in...
  4. JohnBeton

    forms authentication + IIS

    Hi, I'm trying to set up forms authentication on my webproject but i can't get it to work and that's really driving me crazy... I read like every tutorial on this matter and did everything like they say, but still no succes... Could it be that it is some kind of setting in IIS that blocks it...
  5. JohnBeton

    forms authentication

    Hi everyone, I have a problem with forms authentication. It seems to be a problem that occurs a lot (found a lot of people on forums with the same problem) but i can't find a descent solution. The thing is that when an unauthenticated user wants to access a secured page, he gets transferred to...
  6. JohnBeton

    deserializing xml

    Hi, I have a problem deserializing xml into objects. my class structure: orderHeader order orderDetail orderHeader has an arraylist of [order] order has an arraylist of [orderDetail] orderHeader and the arraylist of [order] is filled, but the arraylist of [orderDetail] remains empty...
  7. JohnBeton

    javascript function call from asp-code

    Hi everyone, I have a stupid problem, but i can't get it to work: i have this function to format a date: <script type="text/javascript" language="JavaScript"> <!-- function convertDate(DT){ parts = DT.split('-'); if (parts[0] < 13){ datum = parts[1] + "/" + parts[0] + "/" + parts[2]...
  8. JohnBeton

    strange date format problem

    Hi everyone, I have a problem with date formats: I have a date-field in a table with a short-date format (according to our regional settings (belgium) it is dd/mm/yyyy). I use vba to insert data in the table, for the date-field i use the following code: #" & Format(Date, "dd/mm/yyyy") & "#...
  9. JohnBeton

    mapPath problem

    hello i'm building a website that has a database bel.mdb in: www.mydomain.com/database/bel.mdb now i'm working on an asp-file that has to access bel.mdb, this asp-file is located at: www.mydomain.com/tracking/belgium/file.asp what should the correct Server.mapPath-statement be ? i thought...

Part and Inventory Search

Back
Top