|
thank you for your valuable input
|
|
|
|
|
How do I select, drag and align the controls like Visual Studio at the running time ?
|
|
|
|
|
You should look into how Drag and Drop works. You would have a "canvas" of some sort to lay out your controls. This would be the drop target. Your controls would be the drag source.
|
|
|
|
|
You also posted the same question in QA C#. Please do not cross-post.
« I had therefore to remove knowledge, in order to make room for belief » Immanuel Kant
|
|
|
|
|
I want to develop the application which send million of messages using SMPP (like N number of message per second) with maximum scalability (Like some monitoring system for queue and count of messages getting send) with queue-bsed messaging, with minimum of resources usage at best performance.
Thanks in advance.
Mack
Mack Macwan
modified 28-Sep-18 14:04pm.
|
|
|
|
|
Nothing but buzzwords. Can you translate what you need into normal English?
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
This is best accomplished by syndicating dot-com portals and embracing real-time platforms in order to deploy turn-key e-commerce solutions. Assuming iterated e-business convergence, morphing enterprise solutions to generate clicks-and-mortar e-services will likely result in envisioneer B2C experiences. I recommend you innovate WAP Enabled e-markets in order to synthesize end-to-end content. Relevant B2C web-readiness models connected to disintermediate global infomediaries will allow you to exploit geo-processing services.
Further, if you mesh real-time monitoring niches and empower distributed partnerships, you will be in a position to seize B2C solutions. Growing out-of-the-box L-markets and enhanced scalable supply-chains are another way to reinvent value-added channels. I recommend streamlining asset tracking bandwidth and strategizing dynamic functionalities so that you can extend proactive mindshare. In my experience, transitioning next-generation infrastructures and maximizing integrated Related Interoperability are valuable endeavours.
IMHO, it's important to seek Bird-Dog visionary convergence and drive best-of-breed architectures to leverage frictionless methodologies. I also recommend you utilize killer channels, synergize e-business programs and reinvent impactful experiences. Scaling mobile programs and vision-oriented, well-modulated superstructures will enable an integrated heuristic application.
Hope you find this information helpful.
/ravi
|
|
|
|
|
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));
|
|
|
|