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 strongm 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: dinger2121
  • Content: Threads
  • Order by date
  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

    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...
  3. 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...
  4. 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 =...
  5. 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...
  6. 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...
  7. 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...
  8. dinger2121

    textreader help

    Hello, I am building a web application (ASP.net) which is working with a textreader to get some data from a local text file. I run the application from ide (locally) and everything works fine. When I publish the file to my server (server 2008 64-bit running iis7) and then run the application...
  9. dinger2121

    working with a text file

    Hello, I have a requirement to allow a user to select a text file and then display the contents of the text file in the browser. I am able to do this with no trouble. I then have to allow the user the opportunity to edit the contents of the text file and ultimately save the data back to a text...
  10. dinger2121

    IEnumerable in class

    Hello, I have a class that I am creating and I would like to inherit from IEnumerable so that I can use the foreach functionality on it. Do I do the inheritance at the interface level, or at the implementation level? Thanks for any thoughts. carl MCSD, MCTS:MOSS
  11. dinger2121

    sorting and paging

    Hello, I am just looking for some thoughts on what other people are doing for sorting/paging. Are you using a client side or server paging solution? I have traditionally used a server side solution, but lately I've seen some effective jquery sorting/paging solutions. I was just wondering if...
  12. dinger2121

    test driven development

    Hello, I am trying to get up and running with tdd in c#, and have a question. I am planning to create a class for processing a text file. This class will take in a file name, process the data, add it to an List, and return the list. My question is this - what do I want to create tests for...
  13. dinger2121

    php and jquery with variables

    Hello, I am creating some sites using php with jquery. On each page, I have a php variable that determines what the site id is. I then have a jquery script defined which will load a section of the page at the load (contained within a div tag) and then refresh that same piece every few...
  14. dinger2121

    Log4Net with MVC

    Hello, I have an mvc application and I would like to use log4net for debugging. I am using NHibernate. My application has my main project which contains my controllers and views. I also have a DAL in which the NHibernate mappings are set up. When setting up log4net, do I have to add the dll...
  15. dinger2121

    problem with cascading dropdown boxes

    Hello, I am attempting to create a set of cascading dropdown boxes using a component. I have the following code in my component.cfc - <cfcomponent output="false"> <!--- Code for creating cascading drop down list for categories ---> <cfset THIS.dsn="inventory"> <!--- Get array of...
  16. dinger2121

    primary key question

    Hello, is it possible to run an append query on a table that has an autonumber primary key? I keep getting key violation errors b/c of the autonumber. Thanks carl MCSD, MCTS:MOSS
  17. dinger2121

    mvc actionlink with jquery

    Hello, I am trying to use the jquery ui datepicker in an mvc application. I am able to display everything just fine. The problem I am running into is getting the value from the datepicker control to use in an Actionlink. I would like to use the datepicker for filtering the data on the page...
  18. dinger2121

    nhibernate class question

    Hello, I am using nhibernate along with criterias to interact with my database (mySql). I have everything working just fine. I have created my mapping files and classes to relate back to my database. I have created a DAL which gets all of my data for me. I have been using IList to return...
  19. dinger2121

    nhibernate question

    Hello, I have been using nhibernate for mapping my persistent data using an hbm.xml file to create the mappings. I have recently read about using fluent nhibernate for automatically mapping entities without the use of xml files. Are other people using this feature? can anyone provide any...
  20. dinger2121

    fopen on windows

    Hello, I am attempting to use fopen to open a php file on windows in read mode, but it keeps failing. I am assuming that this is a permissions issue, but I don't know what user to give access to this directory. what user does apache use to access files? Thanks for any help. carl MCSD, MCTS:MOSS

Part and Inventory Search

Back
Top