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

    Mutiple Databases & one set of Stored Procs

    All, I have 15+ databases that are all the same as far as table structures. I was thinking it would be nice to have one set of stored procs that could execute against any one of these databases instead of having 15+ copies of each and every SP or function. Is this even possible? Can someone...
  2. Meleagant

    Managing Multiple Threads

    All, I've been looking all day and I haven't been able to find an answer (at least one that I can understand). The problem is simply that in a business process I have to execute the same Exe say 12 times with different parameters. The number of times will vary depending on circumstances...
  3. Meleagant

    Changing ColGroup Class

    All, I have an HTML table where I implemented an excel like column locking feature. I was trying to improve performance by using the ColGroup/Col tags. Web services return data which is then parsed by JavaScript where basically <TR/> tags are added to a table. The problem I am running into...
  4. Meleagant

    Attempted to Access an Unloaded AppDomain

    All, Does anyone know what could cause "Attempted to Access an Unloaded AppDomain" errors? I'm beginning to see these in the windows event log. Basically I have some long running executables which are started in new threads. But they seems to just die and looking into things I'm seeing these...
  5. Meleagant

    Variation on String.Split()

    All, Is there an easy way where I can split a string and actually get the delimiter as part of the array? For example: Dim myString as String = "Charges + Allowances - Bad Debt" Dim parts as String() = myString.Split("/*-+".ToCharArray) Parts would then yield: parts(0) = "Charges"...
  6. Meleagant

    Can't find DLL when debugging

    Hope this is the right place. VB 2010 building a cmd line app which references a couple of external DLLs. My solution is on the file server not on my local machine. I used to get that "Location is not trusted" message when opening the solution, but I must have hit the Ignore button b/c I...
  7. Meleagant

    Email Zip Archive Corrupts File

    All, My web app sends many many emails. Usually PDF, Excel, Word, etc. This is the first time I need to send a Zip file. Every time I send I zip file through code, when I get the zip in my email, then try to unzip it, I get a message saying that the CRC is bad and the file is corrupt...
  8. Meleagant

    Read Data From Excel... Not finding Sheet Name

    All, Not sure if this is the right forumn, but as this is an Asp.Net application, figured good place to start. I have users who upload excel files and then I read the data from them no problem. The problem is when the actual sheet name is really really long. When that workbook with the...
  9. Meleagant

    Bit to Boolean Grouping Function

    All, I have a table that holds a RuleId, Priority & Status. Status is a bit field. [tab] -- If the priorities are the same for each RuleId then the RetStatus comparison should be an AND. [tab] -- If the priorities are different the RetStats comparison should be an OR. In the below table...
  10. Meleagant

    Why Large Pages have Slow JS

    All, I've been searching the interwebs and haven't found a "scientific" answer. I built a rather nice business application, with a fatal drawback. I rely heavily on tables, not because I want to but because I need to display 3 - 5K of detail records. Basically each screen is a table with...
  11. Meleagant

    Exe Runs Slow on Web Site

    All, I have to call an exe (C program written by another developer) from my web site. When run from a command prompt the exe flies, processes in half an hour. When run from the web site it is slow as all get out, processes in 5 hours). WHY!?!?!?! I don't think I am starting my new thread...
  12. Meleagant

    Overlap Table Cells with Select Tag

    All, Don't know why I am having so much trouble with this. I have an HTML table. When you click a row that row becomes 'Editable'. For example all of the tables cells have an INPUT tag created dynamically and added to the TD object. Problem is that one table cell is converted to a SELECT...
  13. Meleagant

    RegisterHiddenField and then Update Hidden Value

    All, I'm trying to save the ViewState in a Session variable. Kind of like in this article: http://forums.asp.net/t/762189.aspx One problem that I am having is with using RegisterHiddenField to set my HiddenInput "__ViewStateGuid". It seems that when using RegisterHiddenField, once the field...
  14. Meleagant

    ObjectDataSource Causes Double PostBack

    All, Don't know if this is by design or a bug of mine. I have an ObjectDataSource on a page that loads an asp:gridview. Actually it is a grid with a frozen header that I found on CodePlex, but for all purposed it is an asp:gridview. Debugging the page and putting a break point in the...
  15. Meleagant

    Dataset and System Out of Memory Exception

    All, I'm trying to figure out why on occasion my production web site throws a System.OutofMemory Exception. It seems to happen when my users are returning a dataset with over 40,000 rows by 14 columns. Just a little background. Users can search for records and those records are returned in...
  16. Meleagant

    Downloading Excel 2007 Files on SSL Site

    All, Not sure if this is the right forum but I have an SSL site where users can download reports. My Excel 2007 users will be popped 10 - 15 times with a "Choose a Digital Certificate" box when they are trying to save their reports. The only options are to click OK and Cancel. I have spent...
  17. Meleagant

    Excel 2007 Pops Open Choose Digital Certificate Box over SSL Site

    All, Not sure if this is the right forum but I have an SSL site where users can download reports. My Excel 2007 users will be popped 10 - 15 times with a "Choose a Digital Certificate" box when they are trying to save their reports. The only options are to click OK and Cancel. I have spent...
  18. Meleagant

    Running WinZip Process on WebServer

    All, Having a little trouble zipping files together on the server in preparation for download. The user is presented with a web tree containing items for download. The user selects the reports they want and then I get to zip then up on the server and download the file. This all started when...
  19. Meleagant

    Creating Dynamic Controls.

    All, I am running into some trouble creating dynamic controls on a web page, well not really in CREATING them... but in accessing them after a post back. In simple terms I dynamically create a list of reports. The user can drag and drop each report (Child Div tag) and re-order the report list...
  20. Meleagant

    Download Multiple Files at One Time

    All, Frustrating problem where I need to be able to send multiple files down to the a client PC at one time. My user's have their reports folder, containing...well their reports. Its just a web tree with each node being a folder on the server and each leaf is a report. When the user checks...

Part and Inventory Search

Back
Top