Hi,
I am trying to figure this brain-bender out...
How to split an ArrayList of > 2500 items into seperate ArrayLists of <= 2500 items.
The size of the initial ArrayList may be anywhere from 2501 to 40,000 items. But i need to dynamically loop through and separate the list into <=2500...
Hi,
I am at the point where I need to implement use of additional networked machines ("slaves") to perform processes that are called from one central "master" machine.
The current build running local provides arguments to a local "worker.exe" through process.startinfo.
How can I perform a...
Thanks!
However, I am experiencing some deadlocks now. I am trying to prevent these with READPAST, but I don't think this is helping?
Basically my query looks like this:
SET TRANSACTION ISOLATION LEVEL READ COMMITTED
Begin Transaction
SELECT TOP 60 [ID]
FROM Files with (readpast)...
Hi,
I am working on a file processor that relies on the db to feed file records to different machines for processing.
The problem I am having is the same file record (row) is being sent to 2 different machines simultaneously.
In the db I have a "processing" column that flags the file record...
Hi,
I have a SP that I am trying to achieve simultaneous select and update of the same (Top 30) IDs within a table.
SELECT TOP 30 [ID]
FROM Incoming
WHERE Processing = 'N'
UPDATE Incoming set Processing = 'Y'
where Incoming.[ID] in (SELECT TOP 30 [ID]
FROM Incoming
WHERE Processing...
Ok, thanks for both of your replies.
Could I point to a separate build/process (exe or bat) outside from within the pageload without triggering any kind of waitforexit event of that external process?
I am thinking I may be able to easily kick off another process that retrieves session and...
Thanks Mark!
I was afraid of that ;)
Delegates are a bit confusing to me.
So if I want to establish a delegate, can I pass it to another class and sub along with multiple parameters/values?
ie:
FileSetup.CopyFileRoutine(filepath, destination)
And the subsequent pageload routine will go on...
Hi -
I am having a sick time trying to spawn a separate process independent of pageLoad
Background:
I have a site where files are requested from. Upon hitting "submit" requested files are written to db and file.copied to the storage location where the user will return to download (at a later...
Thanks - I will have to check this out too...
I also found this cool FTPclient class - that is fairly usable as is...
http://www.developer.com/net/vb/article.php/10926_3424121_1
Now I just have to work on multi-stream logic...
-b
Hi -
I am attempting to upload files to ftp via the .NET FtpWebRequest.
I can upload the file to the ftp via a stream method, but cannot figure out how to specify the "target file name" on the ftp.
Dim Ftp As System.Net.FtpWebRequest = DirectCast(System.Net.WebRequest.Create(Host)...
I am stumped with trying to trigger a page load in a button click event. I would like to display a "processing" statement prior to a redirect using the code below.
If someone could let me know how to trigger the page load and make the processingtxt.Visible = true that would be super!
Here is...
Hi -
I am attempting a similar action using the KeyDown event within a ListBox. However if I attempt to use this syntax, It will not find the KeyDown event?
Is there something I need to declare or reference in order to get KeyDown functionality to work within a ListBox?
Any help would be...
Thanks Adam!
However, it appears it was a MS built-in bug all along!
I installed the latest MS-SP2 Hotfix patch for this bug and it works great.
Wow, that really was a head-to-wall banger there for a bit, but I am glad it was a bug from MS and not something I was doing wrong... :þ
-b
I am having a problem with exporting to CSV from sql report server 2003.
Each time I do this it will omit the first row of values returned...(works fine to excel). Instead of displaying the first row of values from the Group, it returns the names of the textboxes of the Details_Group ex...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.