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: threeo
  • Content: Threads
  • Order by date
  1. threeo

    Error message is an "access denied"

    does anyone have any clue about this..... i downloaded a third-party popup window control and added it to my .net app. it was working ok and i moved on to another area of code and suddenly when i try to run my app i get an error generated out of the machine.config file referencing a line in the...
  2. threeo

    unable to access some grid data

    anyone know why..... i have a grid on a page which has 3 colums and looks like this: EDIT | 25067 | 78655 EDIT | 19876 | 23478 EDIT | 78545 | 87554 when i attempt to access the data from the grid like: ogrid.Items(0).Cells(1).Text i get "25067" which is what i would expect...
  3. threeo

    sql insert statement with guid column

    anyone know how..... i have a sql server table i am trying to do an insert to... the table's last column is a unique identifier guid column so.... when i build my insert statement....what do i put for that column? since it's generated by sql server....i don't know what to put and it won't...
  4. threeo

    forgive me for asking this question......

    i have forgotten how to do this and i've been scouring the internet and can't believe i can't find the correct syntax.... all i want to do is save the value for Now() to my database. the original value is like: 8/23/2005 9:26:45:18 PM this is how the dates appear in the table i'm trying to...
  5. threeo

    ok....i give up......

    can anyone out there explain this...... i have a datagrid which has an "edit", "update" and "cancel" set up like this: <asp:datagrid id=dgNormTypes runat="server" DataSource="<%# DataSet61 %>" AutoGenerateColumns="False" DataKeyField="NORM_TYPE" Width="60%" OnUpdateCommand="DoItemUpdate"...
  6. threeo

    datagrid DoItemUpdate and DoItemCancel won't work

    this is driving me cuckoo...... i have a datagrid which has an "edit", "update" and "cancel" set up like this: <asp:datagrid id=dgNormTypes runat="server" DataSource="<%# DataSet61 %>" AutoGenerateColumns="False" DataKeyField="NORM_TYPE" Width="60%" OnUpdateCommand="DoItemUpdate"...
  7. threeo

    yet another replication question

    i've noticed when i have more than one merge agent running at one time, the rows/sec performance drops enormously. does anyone know if there is a way to queue the merge agent requests when they come into sql server so that they will run one at a time at very high rows/sec rates and...
  8. threeo

    reading replication monitor data

    can anyone explain to me how to read the replication monitor data? for example....here's a typical entry: merged: 136239 data changes (23008 inserts, 0 updates 113231 deletes 0 resolve the table i'm replicating has a total of 28907 rows so....what's with the 136239 data changes? is that...
  9. threeo

    replication performance discrepencies

    i have several merge agents which are used to perform replication between hand held scanners (all running the same software and performing similar data gathering tasks) and my sql database. when i review the replication monitor, i notice huge discrepencies in the rows/sec column. it's not...
  10. threeo

    processing time degradation when using Err.Clear()

    why does Err.Clear() add so much processing time? i've tested this in a loop. if i include the line Err.Clear() within my loop to clear out any errors from the previous record's processing....the processing time goes WAY WAY up. if i comment out the Err.Clear() my times are very fast...
  11. threeo

    variable filename in the xmldocument.load() method???

    anyone know why...... i can't seem to use a variable for the filename when calling the xmldocument.load method. if i explicitly type in the file like so: xmldocument.load("d:/xmlfiles/december.xml") it works fine and i can parse the xml nodes. but....if i try assigning a variable for the...

Part and Inventory Search

Back
Top