|
I just did an assignment for a specific course I am doing at the Uni.This was just meant as a simulation so there really is no further goal behind this. Sensors were suppose to simulate signals from field instruments I guess.
Thanks for the help Ralf Maier.
|
|
|
|
|
Into the deep...
double[] values = new double[] { 1.0, 1.0, 1.0, 2.0, 2.0, 2.0, 2.0, 2.0 };
double avg = ( values.Length > 0 ) ? values.Reverse().Take( 5 ).Average() : 0;
Console.WriteLine( $"Avg: {avg}" );
"(I) am amazed to see myself here rather than there ... now rather than then".
― Blaise Pascal
|
|
|
|
|
I need a simple Service which will do the next:
1. Use an SDK to convert some files;
2. Call Windows processes;
3. Work synchronous (only one active thread);
4. Call from a WCF service in another Server;
I want to select this service (Web API2, WCF, WebSocket, etc.) which will be easy to support and will use fewer resources. What will you choose?
Thank you!
|
|
|
|
|
Pick the one with the "best" examples. Test it.
If it performs satisfactorily (which it usually does), you're done.
Nothing to do with "fewest" or "easiest"; it's not that "big".
"(I) am amazed to see myself here rather than there ... now rather than then".
― Blaise Pascal
|
|
|
|
|
i am looking for some suggestion. suppose i will install a winform apps in a pc which will stop after when reach expiry date. so what i need to do....when i will install the apps then i will store installation date and expiry date in db. so every try when software will start then check the system date <= expiry date if yes then process else show a message trial period over.
but the problem is if user is cleaver enough then he every day change his system date to software installation date. so my checking for expiry date will never reach and he will use my software.
suppose user may not have internet connection. so give me suggestion how can i design trial version independent of system date. looking for good discussion. thanks
|
|
|
|
|
You are looking for license management. There are numerous articles that can help you with this; a quick google will find you many examples.
This space for rent
|
|
|
|
|
Morning sir,
i will search google but from your side please share some good resource and links to have good knowledge for license management.
i am not sure my intention is clear or not. i will install a winform apps in client pc. client pc may have no internet connection. so how could i expiry the apps depend on expiry date because client may change his pc system date every day before running my winform apps. so please share some logic to develop apps which will not depend on client pc system's date and time.
thanks & have good weekend.
|
|
|
|
|
Mou_kol wrote: looking for good discussion. thanks You're not the first one to ask; so I'd assume you looked for it by Googeling.
To repeat the answer; there are larger companies that spend a lot of money on copy-protections and they have given up on winning that war. I need not muck with the systems' time, just to install your software in a VM, and disallow writing.
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
|
|
|
|
|
You can't.
Unless there is a connection to an external, trusted, reliable time source - and without an internet connection there isn't - the only time and /or date source you have is the system clock. And that is so easily spoofed or played with that you are wasting your time trying work round that.
What I would suggest is: trust your users. Think about how much of your time you will invest on coding unbreakable security, how much your time is worth, and how many users you will manage to convert to paying customers as a result. Do not forget to figure in all the customers you annoy by having an overly-rigid security system that penalizes legitimate users and the number of sales you will lose as a result of that. Then look at the cost of your software. If it's cheap, you are probably wasting your time. If it's seriously expensive, then you are probably wasting your time - as that attracts hacked versions; Adobe Photoshop has had man-years spent on security in the past, only for a cracked version to be released the same day as the official product!
Remember that it's easy to lose a good reputation, and very hard to get it back - and penalizing a single legitimate user by mistake can really harm your standing.
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
"Turning back" the system clock doesn't work too well if the app itself depends on a "current" clock in order to function properly.
One has to be pretty desperate to live with "bad" output dates in a "crack".
If "device clocks" aren't synched, you can create wonderful messes.
"(I) am amazed to see myself here rather than there ... now rather than then".
― Blaise Pascal
|
|
|
|
|
suppose in a pc dotnet and java runtime both install but when we run dotnet application then how CLR understand that he need to take control of the apps?
when and who associate dotnet application and CLR? i guess OS windows. if it is true then how windows os does it?
i search google but found no relevant link. so my request is please some one discuss the same here in details or redirect me to right article.
|
|
|
|
|
|
thanks a lot Sir for sharing such valuable links.
i have one small question that when we click on dotnet exe or vb6 exe file then how controls goes to windows OS?
for dotnet exe file there is CLR Header, which tells windows that it should use the CLR Loader to read the CLR Header's metadata. but what happen for vb6 exe file when we click on that to run?
please share some knowledge. thanks
|
|
|
|
|
VB6 is an old language which has nothing to do with .NET (i.e., a VB6 executable has a PE Header but no CLR header). What happens when you click an executable compiled from VB6 is that the assembler code produced by the compilation process is simply executed.
Inside the executable: a VB programmer's guide to the portable executable format[^]
I would not spend too much time on VB6, though, as it is quite outdated nowadays.
"I'm neither for nor against, on the contrary." John Middle
|
|
|
|
|
thanks for your another reply sir.
hence my knowledge is low so i am curious to know the inner story of various tool and technology like how they run. java application has any PE header ?
thanks for your time sir. good day
|
|
|
|
|
ALL .EXE's have the PE header that tells the Windows Loader how to load the executable. It doesn't matter what runtimes the .EXE runs under.
|
|
|
|
|
Morning, thanks a lot for reply.
i am not java guy but i heard java do not come with exe file....so what happen in case of java apps when it run on windows OS?
i heard java has .jar file which is self executable....so jar has PE header?
C and C++ generate exe file when compile....so C and C++ generated exe file has PE header?
please share the knowledge. thanks
|
|
|
|
|
JAR files are not executable. They are just a bunch of data that Java interprets as code, referred to as "bytecode". Java is a virtual machine environment with its own instruction set. This bytecode isn't run natively by your CPU like .EXE executables.
You apparently don't know how file associations work. Ever double-click a .TXT file or a Word file? You're actually launching the executable associated with that file extension.
For .txt files, the command line launched is
%SystemRoot%\system32\notepad.exe %1
where the %1 is replaced by the full path to the .txt file you double-clicked.
For .jar files, it's no different. The command line launched is something like this:
"C:\Program Files (x86)\Java\jre1.8.0_102\bin\javaw.exe" -jar "%1" %*
Again, the %1 is replaced by the full path to the .jar file.
|
|
|
|
|
Hi,
I have a view which has two list boxes, one on left contains all the selection, two buttons to "add or remove" selection and one more listbox on right which contains selected values.
I am able to get the list of selected values, but what I would like is the list of unselected values on posting. The object in the model is null for the list of unselected values.
How can pass the list of unselected values?
Thank you!
|
|
|
|
|
VK19 wrote: I am able to get the list of selected values
VK19 wrote: How can pass the list of unselected values?
You provide the values? So, "all values" minus "selected values" equals?
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
|
|
|
|
|
List<Value> UnSelectedValues = ListOfAllValues.Except(ListOfSelectedValues).ToList(); But, keep in mind: [^].
«... thank the gods that they have made you superior to those events which they have not placed within your own control, rendered you accountable for that only which is within you own control For what, then, have they made you responsible? For that which is alone in your own power—a right use of things as they appear.» Discourses of Epictetus Book I:12
|
|
|
|
|
Hi
In an ASP.NET page I am generating buttons dynamically in a table, like this:
Button lmButCls = new Button();
lmButCls.Click += new EventHandler(EditUser);
lmButCls.ID = dbDataReader["LOGONNAME"].ToString();
lmButCls.Text = dbDataReader["LOGONNAME"].ToString();
newCell.Controls.Add(lmButCls);
My eventhandler:
public void EditUser(object sender, EventArgs e)
{
to do code
}
The buttons shows up, but when clicking the "EditUser" nothing happens.
Anybody with an idea to solve this problem?
Best regards, Brian
|
|
|
|
|
Dynamically Created Controls in ASP.NET[^]
You're probably not recreating the controls when the page posts back; or you're not recreating them early enough.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
public void ResetPassword(UserModel model, string Name)
{
using (var db = new sortit_internEntities())
{
string emailAddress = (from info in db.users
where info.name.Equals(model.Name)
select info.email).Single();
if (!string.IsNullOrEmpty(emailAddress))
{
string confirmationToken =
WebSecurity.GeneratePasswordResetToken(model.Name);
dynamic email = new Email("ChngPasswordEmail");
email.To = emailAddress;
email.UserName = model.Name;
email.ConfirmationToken = confirmationToken;
email.Send();
}
}
}
for resetting password for login and yes I am new to MVC, this code is in business layer of MVC for kind Information
|
|
|
|
|
Put the appropriate Using statement at the top of the class module and make sure you have included a reference to the appropriate assembly
|
|
|
|