[Solved] Big data using Microsoft SQL Server [closed]

SQL Server benchmarks and performance TPC-E – Top Ten Performance Results Lenovo System x3950 X6/Microsoft SQL Server 2014 Enterprise Edition : 9,145.01 tpsE (The Performance Metric reported by TPC-E is a “business throughput” measure of the number of completed Trade-Result transactions processed per second) solved Big data using Microsoft SQL Server [closed]

[Solved] How to do validation for text box in JavaScript [closed]

Use the following code in your “keyup blur” event handler $(function() { $(‘input.alpha[$id=tb1]’.bind(‘keyup blur’, function() { if (this.value.search(/^[a-zA-Z]*$/) === -1) { alert(“Only valid characters present”); } }); }); Use + instead of * if you don’t want to allow empty matches for regex. solved How to do validation for text box in JavaScript [closed]

[Solved] how can i get string between two commas? [closed]

To take your question literally, you could do write a method to split the string by comma and just take the element at the 5th index: string ParseData(string data) { return data.Split(‘,’)[5]; } So you’ll be able to do something like: string data = “43965.96000,16933.986,404689.986,5814892.171,77.464,52.47585589,13.59670032,77.464,0.675,-0.223”; string result = ParseData(data); // Result = “52.47585589” solved how … Read more

[Solved] How to communicate two classes? [closed]

use a base class instead of an interface: abstract class MyBaseClass { public Dictionary<int,string> dic { get; set; } public MyBaseClass() { dic = new Dictionary<int, string>(5); } public void Add(int key, string value) { dic.Add(key, value); } } public class MyClass1 : MyBaseClass { public MyClass1():base() { } } public class MyClass2 : MyBaseClass … Read more

[Solved] How do I preserve ASCII value in string?

You can use string.Concat var result = string.Concat(byteValues); You can also re-write your loop using the same method: string stringValue = string.Concat(Enumerable.Range(1, 31)); 5 solved How do I preserve ASCII value in string?

[Solved] How to correctly initialize the Windows desktop (explorer.exe) of Windows 8

This is from memory, but try this: myProcess = New Process() myProcess.StartInfo.FileName = “C:\Windows\explorer.exe” myProcess.StartInfo.UseShellExecute = True myProcess.StartInfo.WorkingDirectory = Application.StartupPath myProcess.StartInfo.CreateNoWindow = True myProcess.Start() I have to say, I think this is probably something the author should know about/deal with. Get your $3 worth in support 😉 4 solved How to correctly initialize the Windows … Read more

[Solved] Is a = b == c possible to write in c#?

Yes, but why didn’t you just try it? And not only is it possible to write it, but it’s actually legal C#. It will assign the value of the boolean expression b == c to the variable a, which I’m assuming you declared, implicitly or explicitly, as bool. Stylistically, I prefer to see a = … Read more