Search results for query: *

  • Users: r3plica
  • Content: Threads
  • Order by date
  1. r3plica

    Download files from a website

    I have this website that stores my template files for Word, Excel, etc and I need to be able to download them through my .Net Application. I can easily download a file if I know the name, but I want it to parse all the files in the given web directory and download them, without me having to...
  2. r3plica

    Question The right way....

    I use collections. I have been for about 2 years and they have worked fine for me. I decided that I should read about design patterns and UML to improve my programming. When reading these books, I found that perhaps my collects were not as they were supposed to be. My classes all have one thing...
  3. r3plica

    Question Execute Reader or Fill is taking ages

    I have seen this question asked before, but I am struggling. I have created a stored procedure which is pretty complicated. Here it is for reference: ALTER PROC ChangeoverEffeciencyReport @DateFrom DATETIME , @DateTo DATETIME AS BEGIN CREATE TABLE #Temp ( DepartmentID INT NOT NULL ...
  4. r3plica

    BaseDataAccess.vb and effeciency

    Hi all, This isnt a problem, I am just trying to make my coding better. So a quick description. I have a base data access layer that all my data access classes inherit. It has some cool features that basically removes redundant code, because it's methods can be applied to all my data classes...
  5. r3plica

    Question SQL DateTime ....

    I hate the datetime datatype. I always seem to run into issues with it. Some times it works and other times I have to piss around with converting to strings and then formatting it manually into a format that my sql server will allow. Here is my issue, surely there is an easy way (in sql) to fix...
  6. r3plica

    Question Function to Return a Color

    Can anyone help me. I want to create a function that accepts a number as a parameter. That function should then look at a list of colors (system.drawing.color) and return the specified one. I would like to the list to have a max of 24 colors and the color to follow a color scheme (in this case...
  7. r3plica

    Question Question about HttpModule and Rewriting

    Good morning all, I have run into this problem a few times and it is quite frankly driving me nuts. First I will paste my source code and then I will talk about my issue a little. Imports Microsoft.VisualBasic Imports HoN.Common Imports HoN.Business.ItemBusiness Imports...
Back
Top