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 TouchToneTommy 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: VBRookie
  • Content: Threads
  • Order by date
  1. VBRookie

    Stop Table Cell Growth!

    Hi, I have a table cell that I'm putting data in via javascript. Anyway when the cell is empty it displays as the height that I've specified. But as soon as text is inserted into it that exceeds the height it expands. This is what I'd like to avoid. I've implemented overflow:auto; to...
  2. VBRookie

    DNS Error on Upload when Max filesize exceeded

    Hi, I'm sure that someone has run into this. I have a file upload control on my form and I've set the web.config to allow files to be uploaded that are up to a certain limit. If I try to upload a file larger than that instead of going to my custom error screen I get the DNS error screen...
  3. VBRookie

    file count limit and minimum available disk space

    Hi, I have two brief questions: 1. Is there a 'best practice' for folder file counts? For example is it best to have many small directories that only contain about 300 - 500 files each or is it perfectly ok to have directories containing 5000 or more files? 2. What do you recommend as the...
  4. VBRookie

    total files in a directory

    Hi, I'm creating a web app that will allow users to upload images to a directory on the server. What I'd like to do (to prevent having 5000 files in one directory) is to set a limit on how many files can go in one directory and once that limit is reached create a new directory and start...
  5. VBRookie

    multiple file uploads

    Hi, Is there a way to upload multiple files in asp.net? I thought that there was (just add two fileupload controls right?) Well my app was working when I just had one fileupload control. When I added a second one I now get the 'document contains no data' message whenever i try to upload...
  6. VBRookie

    image copyright information

    Hi, I know that I can read the EXIF information of an image but is there anyway to find out whether or not an image is copyrighted programmatically? Many Thanks, - VB Rookie
  7. VBRookie

    Call a DTS from a DTS then FTP it

    A merry morning to you all! I have 6 dts packages that I'd like to consolidate into one and then FTP the resulting text files to a remote server. Is it possible to call a DTS from a DTS? If so how? I've been googling without finding very many practical examples. Many Thanks, - VB Rookie
  8. VBRookie

    Website Translation Services

    Can anyone recommend a good translation service? I've been googling this but its hard to know who's good and who isn't. We have several websites that we'd like translation on. We also have many on the DNN Portal System. Can someone please point me in the right direction or recommend a...
  9. VBRookie

    Check an image for errors before upload

    Hello all, I have an image library on our intranet site that any employee can upload .JPG and .GIF files to. It auto-generates thumbnails on the fly when files are uploaded. There are a few .JPG files that won't display when they are resized. The thumbnails display ok but when the user...
  10. VBRookie

    Edit DTS Query

    Hi, I created a DTS package that runs a query to pull data from the database into an excel file. I want to edit the query but when I go to edit the package I can't find it! Where do I go to find my initial query as I don't have it saved anywhere else but in the DTS. Many Thanks, - VB Rookie
  11. VBRookie

    CHARINDEX infinite loop

    Can anyone tell me why I'm getting an infinite loop on this? IF CHARINDEX (',' , @Keywords) > 0 BEGIN WHILE CHARINDEX (',' , @Keywords) > 0 BEGIN -- sql statements here END END @Keywords is passed in and you can assume that it equals 'boy', 'dog' Please advise? What have I...
  12. VBRookie

    Retrieving image DPI

    Hi How do i retrieve the dpi of an image when i upload it? - VB Rookie
  13. VBRookie

    Need to autogenerate a site map

    Hey do any of you guys (or gals) know of a tool that will crawl my site and generate a site map for me? The site is 5 years old and has grown out of control. We don't know what's on it anymore. I could do it manually but it would take a while. I'm hoping that there is a resource out there...
  14. VBRookie

    Referencing outer repeater value from inner repeater

    Hi, I have nested repeaters which are working fine. The problem that I'm having is trying to display the value of the first (outer) repeater inside of the second (inner) repeater. Here is my code: <!-- FIRST REPEATER --> <asp:Repeater ID="rptSchools" runat="server">...
  15. VBRookie

    With Block Error when DataReader is null ...

    Hi I keep hitting this error when my sql statement doesn't return any data ... Object variable or With block variable not set. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and...
  16. VBRookie

    Dynamically populating a datatable in .NET 2.0

    Hello gurus, I'm having a little trouble here doing something that should be relatively simple. I'm trying to add rows to a datatable programmatically. Here are my declarations: Dim dTbl As New DataTable Dim dRow As New DataRow '... population code follows ... If I try to run this I...
  17. VBRookie

    Passing values from one page to another

    Hi, I'm trying to code a search page in VB.NET that will accept a bunch of values and then display the findings on a separate results page. I'm using server.transfer in the search page to navigate to the results page. On the results page in the .aspx I have this code under the page...
  18. VBRookie

    SqlDataSource control ... binding to a datareader

    Hi ... I'm using the sqldatasource control to retrieve data. I'd like to bind or dump that data into a datareader so that I can iterate through it and populate some labels on my form. I don't see anyway to do this programmatically ... is this possible? I have the datasourcemode set to...
  19. VBRookie

    SqlDataSource control ... joining on multiple databases

    Hi I'm using .NET 2.0 and am trying to utilize the sqldatasource control in my code. It works fine except for one particular query where I have to do a join on two tables on two different databases. The problem is that the sqldatasource control seems to only process one connection string and...
  20. VBRookie

    How to connect to MySQL when host is not on Port 80

    I have IIS and Apache installed on the same box. IIS is listening to port 80 and I have apache configured to listen to port 90. When I try to connect to the MySQL database using mysqli_connect I keep getting the error 'Unknown MySQL server host 127.0.0.1:90. This is what my connection string...

Part and Inventory Search

Back
Top