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 SkipVought 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. russellbcopeland

    Bonus Scheme for Software Developers

    Really, I'd prefer a dual bonus system. One that insures that big profits equate to bigger bonuses but one that also gives a bonus based on individual effort. Effectively a bonus plus profit sharing. The bonus should be based on individual effort and should effectively be part of the salary -...
  2. russellbcopeland

    email report is diffent than when viewed

    looks like I found the problem... programmers wrote separate routines to call them and are doing it different. rrrr! sorry to wast the space.
  3. russellbcopeland

    email report is diffent than when viewed

    I'm having what seems to be a really odd situation going on with soem sql reports. Going through the same data the results that make it onto the reports are different depending on wether the user views the report or gets it emailed to them. Clearly something is not right but I'm pretty new to...
  4. russellbcopeland

    data updating/deleting/inserting question/issue

    thanks but no that is not the problem. I'm not inserting the identity values... they are generated by sql. the inserts all specify their column lists. the problem only happens when the insert violates a unique index when the delete should have cleared out the violating record.
  5. russellbcopeland

    data updating/deleting/inserting question/issue

    it could be looked at as a replacement for the deleted row though it is being done in a generic way so that I would have no way of knowing which row it was that needed updating without adding extra overhead to my system. I am trying to avoid that overhead. yes, there is an identity column in...
  6. russellbcopeland

    data updating/deleting/inserting question/issue

    I am using a cconnection to an SQL 2005 database from C# and am running my operatins within a transaction. Within the transaction I delete a record in one ExecuteNonQuery then I Perform an Insert via ExecuteScalar. If the record I insert has values that conflict with the deleted records values...
  7. russellbcopeland

    iFrame display issue in IE

    Ok, here is the setup: site A: http site hosts page A with iframe on it that points to a page on Site B that is an https page. accessing page A on Site A from IE on a browser that has Site A and Site B as trusted pulls everything up just fine without any questions as long as the browser is not...
  8. russellbcopeland

    printing

    Does anyone know of a control that works with ASP.NET that allows a web form to be resized and generated as a pdf or some such for printing purposes? I've seen numerous IE add-ons that do this kind of thing but no controls that I can embed in my webpage or run as server controls to return this...
  9. russellbcopeland

    .net Event via COM issue

    figured it out.. I didn't wasn't using the <ComClass()> attribute. If you do not use this your properties and methods can be seen via COM (if registered for com) but your events will not.
  10. russellbcopeland

    using events

    I found the problem.. it was on the .net side of the equation, not the VB6 side. FYI- in case you run ito this, if a .net class is registered for COM but the class is not marked as a ComClass() withevents will not work correctly.
  11. russellbcopeland

    using events

    Is there anything special I should have to do in VB6 to handle events raised from a .net COM object? Withevents does not seem to be working.
  12. russellbcopeland

    .net Event via COM issue

    I have created a vb.net com object and my methods and properties are visible from other languages that can access objects via COM. The problem is that my events are not available. Is there some further definition I need to implement to make events defined in .net visible via COM?
  13. russellbcopeland

    web service/shared variable question

    turns out that I am incredibly wrong.. we did this as a test: a simple web service that contains a shared variable web method that increments this value and returns its value called the method from two different locations (one in ATL and one in VA so not same session etc) and the values...
  14. russellbcopeland

    web service/shared variable question

    I have a web service. It has a class that has a shared property that is set when a user calls the service That value may be different for different users There are two different users making two separate calls to the web service going to see the same shared variable? I am working on the...
  15. russellbcopeland

    error displays on some boxes, not others

    good thought.. I'll check that out.
  16. russellbcopeland

    error displays on some boxes, not others

    I am doing some error trapping and amongst other things my error trap displays a messagebox to the user... In this particular instance the error is being generated by a call to SQL server... (could be any sql error, timeout, network problem or even a sql proc issue that triggers the error) If...
  17. russellbcopeland

    Why can't the estimated time be changed

    ok.. we figured it out. Aparently we were just being trapped in our atempt to change the value. We were attempting to change an upper level value (computed from lower level tasks). OF course that cannot be changed. You have to change the lower level task estimates and the upper level estimate...
  18. russellbcopeland

    Why can't the estimated time be changed

    A project that is in project server. The user is setup as an administrator, he has access to all of the admin functions and is owner of the project. For some reason he can't change the estimated time on tasks. What controls access to that field?
  19. russellbcopeland

    Fish! Philosophy

    It amazes me that some managers/companies seem to think that these moral boosting programs can work in the long term. If done right they can make people feel a little better for a short time but if the workload is too high, expected time put in is too high, salaries too low, bonuses lacking, and...
  20. russellbcopeland

    Convert textbox input to integer

    If the textbox should only accept numerics my position is that it should not allow any non-numeric to be entered. For this I like to make a simple control inherited from textbox with a property that allows the developer to select what type of input to allow such as integer, decimal, etc. You can...

Part and Inventory Search

Back
Top