|
I solved. Fault of one of the hundreds of obfuscators that NEVER work !!
|
|
|
|
|
The fact that you've run your application through an obfuscator before trying to run it is probably something you should have mentioned previously.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
I could tell you that you are right, but the point is this: why shouldn't I trust an obfuscator especially those with paid license?
The obfuscators issue is a real dilemma. I've tried dozens of them, free and licensed, but none and again none have ever worked 100%. I thought I had found one for a fee but with the possibility of testing it. This is what it produced: A software that only works as a facade, but when it comes to handling large amounts of code, libraries and functions in general, IT SHALL FAILED! Gentlemen let's face it: obfuscators for .NET don't work. Or at least they don't work for large amounts of code to manage. End.
Thanks a lot to everyone.
|
|
|
|
|
Or you run the obfuscators on the assemblies that they don't break and don't run it on assemblies that do, like ones the use Reflection.
|
|
|
|
|
I did not understand what you are suggesting to me
|
|
|
|
|
You don't run the obfuscator on every .exe and .dll (assemblies) in your app. You only run it on the assemblies you want to protect, but only if those assemblies can even have the obfuscator run on them. If not, you have to consider moving the code that's making the obfuscated version fail to another assembly.
|
|
|
|
|
Obfuscators deliver; and make things more difficult. I never used them. Years ago, games would be cracked in assembly. You can read any .NET code.
No hiding anymore.
Bastard Programmer from Hell
"If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.
|
|
|
|
|
Please help me
I want after add dynamic button to form at runtime when click on button show new form to change its properties
Like text,color,font
Visual Basic. Net
Visual Basic. Net
Visual Basic. Net
|
|
|
|
|
I gave you a link to the Button class in your question below. That shows all the properties of the class and how you can change them.
|
|
|
|
|
Please help me I want while runtime add button, can drag it by mouse and resize it From edge when mousemove
In visual basic. Net
In visual Basic. Net
In visual Basic. Net
|
|
|
|
|
|
|
All of examples in Internet for c# only
I tried from searching
For example in vb.net
|
|
|
|
|
So? Convert the C# code to VB.NET. C# and VB.NET are not as different as you think they are.
|
|
|
|
|
Ahmedabdalla83 wrote: All of examples in Internet for c# only And now you know a reason why most of us use c#
Never underestimate the power of human stupidity -
RAH
I'm old. I know stuff - JSOP
|
|
|
|
|
Ahmedabdalla83 wrote: All of examples in Internet for c# only Not all of the tutorials on CP on Drag&Drop are C#; there was one that allowed a custom picture while dragging.
..but you can search for that too, I'm not going to do that today. Might tomorrow, but SDV has new content
Bastard Programmer from Hell
"If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.
|
|
|
|
|
I understand very good that you prefer VB instead of C# - for me it's the same - but I have learned how to make VB-Code from C#-Code. The easiest way is to use the (FREE) Telerik-Converter in the Internet. But Basicly : both languages are using the .Net-Framework and there is no real difference between the use of a Framework-method with C# or VB, If you once realize this you don't have much problems with the code-conversion ...
Give it a try ...
|
|
|
|
|
OK man thanks for your time
I will try 😍
|
|
|
|
|
|
Hello there, I couldn't find a way to take screenshot on dell laptop. Do a reply if anyone of you guys know how can I take screenshot on my dell's laptop.
Thanks.....
|
|
|
|
|
This is not a technical support site for brand-specific hardware: contact Dell support (or your manual) and ask them!
But if it's Windows, there is normally a key sequence to do that PrtScn does the whole thing, ALT+PrtScn does the active window, and WINKEY+S allows you to specify an area ... all of these copy the screenshot to the clipboard and you can do what you want with it from there ...
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
|
Droidtips wrote: Hello there, I couldn't find a way to take screenshot on dell laptop Is the "print screen" button missing?
Bastard Programmer from Hell
"If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.
|
|
|
|
|
I've done this before, but can't find it in the project. Been a year since I've worked on this.
I have a list of invoices, and a list of strings. I want to remove all the invoice items where the name that has a match in the list of strings. I did some digging around, and could not find the nomenclature to get a match result on Google.
Dim exemptPrintItems = New List(Of String) From {
"delivery",
"dhl",
"freight",
"shipping",
"ups"
}
'Filter out the excluded print items
invoiceItems = invoiceItems.FindAll(Function(x) Not excludePrintItems.Contains(x.FITEMNO)).ToList()
If it ain't broke don't fix it
Discover my world at jkirkerx.com
|
|
|
|
|
I didn't add toLower() on my previous attempts
invoiceItems = invoiceItems.Where(Function(x) Not excludePrintItems.Contains(x.FITEMNO.ToLower())).ToList()
If it ain't broke don't fix it
Discover my world at jkirkerx.com
|
|
|
|