|
Great! I'll order 500000 copies of that!
You coped with translating Willem Elsschot's "Lijmen" to the present era. Welcome, Mr. Boormans 2.0!
|
|
|
|
|
Can I get some Creamy Romano dressing for that Buzzword Salad?
|
|
|
|
|
Dave Kreskowiak wrote: Can I get some Creamy Romano dressing for that Buzzword Salad? Of course you can! Help yourself[^]!
/ravi
|
|
|
|
|
Awsome! I have a few emails I need to send now.
|
|
|
|
|
Hii thanks for reply but i have already developed service who process this thing but i want to create multiple instance of the service to load balance the queue of messages but its takes too much memory size and dbo operation which slow down my server speed and work and affects other services and site some time it shutdown whole server if queue is high i mean in billions so what will be the best way to accomplish this things.
Thanks very much
Mack Macwan
|
|
|
|
|
Thar really depends on what you're using for your queuing, but you really should look at distributing the queue across multiple redundant balanced nodes. You might want to consider Azure or Service Bus Queues. This[^] should get you started.
|
|
|
|
|
Hay thanks again may be this what i am looking for but can you share me some code sample please thanks in advance
|
|
|
|
|
The code really depends on which route you go, but you're concentrating on the wrong part. The issue is how you lay out the architecture - you need to decide that long before you even touch the code. You need to be aware of such things as do you want to support polling? How is the redundancy going to be handled? Do you need transactional support on your messages? These, and many more things, are the things you have to sort out first.
|
|
|
|
|
Well I certainly found it helpful. I am going to be able to start up and sell several multi-billion dollar companies in just the next two months based on just that.
|
|
|
|
|
mackmacwan wrote: Can anyone tell me how do i best practices
You start with a design that takes into account that actual real and expected growth of the system.
AFTER you have that design then you implement it.
AFTER that it shouldn't be necessary to attempt to solve performance problems but tuning it to get the best performance out of the existing hardware might help.
|
|
|
|
|
Please provide the programming to send Bulk/Mass email fetching the email ids from database. Table Column is as follows. Name, Phone, Email
|
|
|
|
|
|
Please provide a purchase order, and a EFT to cover the proforma.
We do not do your work for you.
If you want someone to write your code, you have to pay - I suggest you go to Freelancer.com and ask there.
But be aware: you get what you pay for. Pay peanuts, get monkeys.
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...
|
|
|
|
|
|
|
Where are you stuck?
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
I have following code
private void rectangle2_Click(object sender, RoutedEventArgs e)
{
NavigationService nav = new NavigationService();
nav.Navigate(new Uri("/Jobsearch.xaml", UriKind.Relative));
}
i am getting error error is
system.windows.navigation.navigationservices has no constructor
vinay
|
|
|
|
|
That's because it's a static service. Try the following instead:
NavigationService.Navigate(new Uri("/Jobsearch.xaml", UriKind.Relative));
|
|
|
|
|
if i write your code still getting the error i.e
an object reference is required for the non-static field,method an d property
please give me a solution
a lot of time i have spent but untill now i did not get the solution
vinay
|
|
|
|
|
Show me what your code looks like at this moment in time.
|
|
|
|
|
Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again
I am running Net use * /delete /y also but still I am getting this error whenever I use a different user than previous user
background:- Actually I am trying to excute a command in remote computer and read the command output from a text file. for that I am using wsnet connection by establishing a connection and through unc path \\10.210.1.1\C$:\output.txt , I am reading the output back. and then disconnecting the connection ... even if the connection is not properly closed, I am making sure to execute Net use * /delete /y command in my local system to delete all the existing connection on , but even after doing this if I use a different user I get this exception while connecting using WSNET in C#
Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again
|
|
|
|
|
Please don't post the same thing in multiple places: it duplicates work and annoys people.
You have this in QA, leave it there.
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...
|
|
|
|
|
Hello. I have started an application using Process.Start() . Is it possible to hide all of it's menus and toolbars using c# or some win32 api function call ? Thanks for any pointer.
This world is going to explode due to international politics, SOON.
|
|
|
|
|
Not as a generic rule, no - you could try iterating though it's child windows looking for appropriately named items, and post a WM_CLOSE message, but there is no guarantee that: a) It'll work, b) It'll find them all, or c) The app won't crash or otherwise misbehave as a result.
Seriously? If you need to do this, you're probably better redesigning the application if you can.
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...
|
|
|
|
|
I am just learning if this could be done. I opened Windows Media Player using Process.Start(). I think there must be some kind of hack to do it.
This world is going to explode due to international politics, SOON.
|
|
|
|