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 Mike Lewis 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. dinger2121

    picture as background image in word

    Hello, I am trying to use a jpg image as a background in a word 2010 document. I have tried various methods for doing this - 1. Page Layout > Page Color > Fill Effects > Picture and insert the image that way. When I do this, the picture is way too large for the page - it spills off and...
  2. dinger2121

    LINQ aggregate function max()

    what error is it displaying? carl MCSD, MCTS:MOSS
  3. dinger2121

    Rhino ETL Question

    Thanks - and I will use that forum going forward. carl MCSD, MCTS:MOSS
  4. dinger2121

    Stick with what I know or go Drupal/Joomla WPress?

    I am also a .net developer with limited php experience. I have recently created a new site in drupal and have really found it to be a flexible, full featured solution. there are many modules that can do just about anything you may need and the support base is huge. their forums are very...
  5. dinger2121

    Rhino ETL Question

    Hello, I have been using rhino etl to move some data between 2 databases and it has been working perfectly. recently, the requirement has come up that I must insert the data if it does not exist, but update other records if they do already exist. Is there an easy (built-in) way to do this using...
  6. dinger2121

    delete using rhino etl

    I found my problem - I had it set up to inherit from ConventionOutputCommandOperation when I should have used ConventionInputCommandOperation. Thanks carl MCSD, MCTS:MOSS
  7. dinger2121

    delete using rhino etl

    Hello, I am working on an app to transfer some data using rhino etl. For the most part, it is working perfectly. the only part I am having trouble with is deleting from data from my db table. Is it possible to do a delete from a table using rhino etl, or is it not intended to do this? I...
  8. dinger2121

    what should I test for

    Great - thanks for the help. carl MCSD, MCTS:MOSS
  9. dinger2121

    what should I test for

    So it is not necessarily beneficial to test a simple app like this? That's what I was thinking from the beginning - that it might be overkill to try to test such a simple - but I didn't know how to justify it. carl MCSD, MCTS:MOSS
  10. dinger2121

    what should I test for

    Hello, I am building a small application that is going to be used to move a file from one folder to another in a filesystem. I know that I can accomplish by using something similar to the following - class Test { public static void Main() { string path =...
  11. dinger2121

    Unit testing Custom htmlhelpers

    Hello, I have a few custom htmlhelpers that I have created. I have not yet created unit test for these, but would like to have them going forward. I have seen some good posts elsewhere (http://stackoverflow.com/questions/271699/testing-htmlhelpers-in-asp-net-mvc) regarding using rhino mocks...
  12. dinger2121

    Too much abstraction?

    Thanks - I've heard about that book but haven't had an opportunity to pick it up yet - I will add it to my reading list. carl MCSD, MCTS:MOSS
  13. dinger2121

    Too much abstraction?

    Thanks for the tip. I think I have been going a little overboard with what I am doing. I will scale it back a bit. carl MCSD, MCTS:MOSS
  14. dinger2121

    Too much abstraction?

    Hello, I am trying to get my hands around true oop development, and am wondering if I am abstracting too much. I am a lone developer working on multiple projects. I currently have to do some work acquiring different dates given a particular date, ie, next saturday or sunday 2 weeks ago. Since...
  15. dinger2121

    Data Access Layer architecture

    That makes sense - mapping your domain for each specific project ensures that you are only bringing the information that you need into each project, instead of having an entire domain mapped and included for every single project that it is used in. That especially makes sense, especially when...
  16. dinger2121

    Data Access Layer architecture

    I'm not sure why there is no benefit to having my sessionmanager in a separate project. I am using fluent nhibernate, and this sessionmanager holds all of my connection info. I will be using this in multiple applications, so wouldn't it be beneficial to have it in a separate project so I can...
  17. dinger2121

    Data Access Layer architecture

    As always, thanks for the info. carl MCSD, MCTS:MOSS
  18. dinger2121

    Data Access Layer architecture

    Thanks for the response Jason. I hope I understand your comments correctly.... My thinking was that if I need to use the same query in multiple places, I would be better off having that in a DAL, so that I can change it in one place if the need arises. Are you saying that you just create your...
  19. dinger2121

    Data Access Layer architecture

    Hello, I am stepping back and taking a look at my data access layer and I was hoping someone could give me some guidance in regards to it. Currently I am using nhibernate to get all of my data mapped to objects. my dal has 2 projects, one called data access layer and one called data transfer...
  20. dinger2121

    textreader help

    I was able to solve this by saving the file back to the server so that it could access it - savedFileName = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, Path.GetFileName(file.FileName)); file.SaveAs(savedFileName); carl MCSD, MCTS:MOSS

Part and Inventory Search

Back
Top