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

    fieldset legend css ff

    This looks ok in IE but FF lengthens out the field set and legend. Also the Case County label seems to be a bit of a hack. I am in a new shop where all input forms are tables, tr, td and would like to use css. Any help or are most comments welcome. Marty <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML...
  2. cappmgr

    making a living

    Hello, I am at present working in a .NET shop. I have been teaching myself Ruby, I like it! Is anyone making a living writing Ruby? Marty
  3. cappmgr

    MVC .NET codebehind a controller?

    I was a talking to a co worker about the MVC pattern and I stated we should we should not have BL in the vew I include the codebehind as being part of the view. He disagreed. Here is the email and response that took place the next day. Just looking for opinions. Thank you, Marty
  4. cappmgr

    tuning sql removed CASE Statement

    I have been given an assignment to make a procedure run faster. It's select statement to fill the cursor is ugly with some correlated sub queries. I set autotrace on for the Execution Plan and Statistics. It has 6 Full Table Scans and some are in a loop. This I believe has to be the problem, but...
  5. cappmgr

    string in an WHERE IN predicate

    I have a procedure that now has to take more than one PackageId so I thought I could use an IN in the WHERE perdicate. It dies with an invalid number. If I pass one PackageId it works if I pass more than one it does not. It is being passed from Crystal Reports which puts single ticks around the...
  6. cappmgr

    get and set functions are evil ?

    Interesting. http://www.javaworld.com/jw-07-1999/jw-07-toolbox.html Marty
  7. cappmgr

    set autotrace on

    hello, I can set autotrace on and then run a sql statement and have the execution plan and statistics display. Is there a way to do the same with a stored procedure? I have tried executing a stored and I do not get any information. Thank you very much, Marty
  8. cappmgr

    Cross Post Http Pipline Threading and Pooling

    thread732-1176051
  9. cappmgr

    Http Pipeline Threading and Pooling

    Hello, Here is a piece from an article I am trying to get a better understanding of from http://msdn.microsoft.com/msdnmag/issues/03/06/Threading/default.aspx is this saying that when a user hits your site he gets a new page for every request but stays on the same thread? The way the quote is...
  10. cappmgr

    .NET Page derives the IHttphandler

    I am unclear why the System.Web.UI.Page class derives the IHttpHandler. There are two members in the Interface and they are not used not used by the Page Class (ProcessRequest and IsReusable). The IHttpHandler (Defines the contract that ASP.NET implements to synchronously process HTTP Web...
  11. cappmgr

    Get a Labeled version from VSS through VS.NET2003

    Hello, I know you can get individual files, click on a file in the Solution Explorer File --> Source Control --> History --> History Options --> Get My question, is there a way to get the complete solution from VSS through VS.NET 2003 Thank you, Marty
  12. cappmgr

    version control

    Our version control does not seem correct to me. We are contractors that build applications for a company. The company has their own dbas and they run the dml scripts that we ask them to. We keep our scripts in VSS and when we do a migration from dev to qa and also from qa to prod, the dba on...
  13. cappmgr

    pass parameter to Thread C# to VB

    This works passing iSleepdelay in the constructor to make a new thread sleep. I have not been able to get a VB version working. public class Sleep { private Int32 _iSleepDelay; public Sleep(Int32 iSleepDelay) { this._iSleepDelay = iSleepDelay; } public void Start() { new...
  14. cappmgr

    Refresh Page After After Delegates EndInvoke

    I am doing a POC for an async process. I'd like the Parent Page to get refreshed with data from the method that is invoked by a delegate but I can't figure out how. private string LongProcess(Int32 SleepTime) { Thread.Sleep(SleepTime); Global.ProcessingResults.Add(g.ToString()); return...
  15. cappmgr

    SATA drive and IDE drive

    If I have a SATA drive and a old IDE HD how do I want to set them up. I have an IDE to SATA converter that came with the mobo. Which drive do I want my OS on. I have been googleing and there seems to be no clear answer. When I read PATA is that refering to an IDE HD? Thank you, Marty MB...
  16. cappmgr

    zip a solution

    I have a solution with two projects. I have googled and have not found a good answer. How do I zip a solution and have it so after being unzipped the solution will open. Thank you Marty
  17. cappmgr

    Edit Word 2002

    I have to automate the editing of a Word 2002 document. This link http://techrepublic.com.com/5208-6239-0.html?forumID=44&threadID=170176 gives the instructions for Word 2003. It states to have a doc saved as XML then use the XML as a template and make your changes and save as doc. Word 2002...
  18. cappmgr

    abit nf7s v2 fried flashed with wrong bios

    I tried and tried to get the sata drive to work as the boot drive work with no joy. So I unknowingly falshed the BIOS with the wrong version. My bad. I reset the BIOS with the jumpers and it will not POST just a black screen. So I put the awdflash and the correct bin into an auoexec.bat file on...
  19. cappmgr

    graphics DrawRectangle Bar Graph format problem

    I am building a proof of concept to make a bar graph. I built in a yConversion factor to bring the bars closer to the top of the garph so it looks nicer. The following value of arrValues(0) = 375 makes the graph look as I would expect, if I chnage it to arrValues(0) = 175 the graph does not...
  20. cappmgr

    VB and C# gernerate random number array

    I am trying to generate an array of numbers randomly. The numbers are either 0,1 or 2. Works fine for my C# test stub but for the life of me I can not figure out how to make it work in VB. The array returned in VB is 1 longer than the C# and the VB generats 0,1,2 or 3. aRandom Length: 300...

Part and Inventory Search

Back
Top