15,793,921 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Javascript questions
View Python questions
View PHP questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by xXxRevolutionxXx (Top 21 by date)
xXxRevolutionxXx
13-Sep-18 17:56pm
View
This actually finally solved my problem. Thank you!
xXxRevolutionxXx
12-Sep-18 14:55pm
View
It seems that you are right, but the "exception" is not an actual exception. It's very weird actually, and for that reason I added the CreateRoles method in my topic as well. So, I added a breakpoint to the first line of the method (the one that I initialize the RoleManager) and the debugger goes there, but if I click next, it does not go to the next line in order for me to see what happened. Instead, it just steps out completely and loads the application.
xXxRevolutionxXx
12-Sep-18 13:25pm
View
I have updated the question accordingly. Feel free to tell me if you need any other part of my code.
xXxRevolutionxXx
11-Sep-18 16:52pm
View
Hello! I chose to follow the second way, but I have an issue. I am calling two asynchronous methods in the "hook" using the Wait method, but only the first one seems to get executed. Any idea why ? I could edit my answer to put the code in there if it is more convenient.
xXxRevolutionxXx
29-Aug-17 2:03am
View
Accepted your answer.
xXxRevolutionxXx
29-Aug-17 2:02am
View
Ok, i didn't knew that. I didn't even thought that when i 'accept' my solution, i get reputation. Thanks for the warning.
xXxRevolutionxXx
28-Aug-17 5:43am
View
First of all, thank you very much that you gave quite some time to write this text for me. Back to the work.
I am programming for about 2 years now, so i have a pretty good idea what debugging is. The think is that everything here is instantiated. It should work, but it doesn't(yes, this is another common phrase on the programming world). The thing is that here breakpoints and e.t.c cannot help me, since the problem is setting up the lists. I did everything by the book(at least i think i did), but i still get this exception.
xXxRevolutionxXx
21-Aug-17 16:19pm
View
Very nice answer. I haven't thought possible to use the web api from the backend.I accept your solution !
xXxRevolutionxXx
30-Jul-17 18:11pm
View
I want to persist some variables including a list of strings(as i said in my original post). The only requirement for the job to finish is the computer to be ON :P
xXxRevolutionxXx
30-Jul-17 17:43pm
View
Yep i know. I don't wont to mess up with windows services though. I have something else in my mind about that ... as long as i find a way to save the progress of my app.
xXxRevolutionxXx
28-May-17 0:28am
View
It's a clipboard logger. All it does, is to copy text from the clipboard... when the text on the cliboard has changed. I used WPF for the UI, and MVVM as an architectural pattern. Do you need another info ??
xXxRevolutionxXx
15-May-17 2:42am
View
@Rob Philpott i did something like that. My encrypt function asks for a (string)password. Then it gets the bytes for the password, and then it uses the bytes of the password to encrypt the message. The good about my solution is that there isn't a need to have a key with the same length as the data. The key can be whatever you want, and it doesn't change the size of the file. I'll accept your answer because it's almost what i did, and it's the only solution to this problem.
xXxRevolutionxXx
12-May-17 7:23am
View
It's two way encryption. Is it then possible to calculate exact output length based on the amount of the unencrypted data ?
xXxRevolutionxXx
12-May-17 7:19am
View
Well... since it's not a big project.. and it's only for me... i want to write as little code as possible... and if there is a way to have the same length... then it will save me from some trouble.
xXxRevolutionxXx
14-Feb-17 11:22am
View
One correction to your code. The "var link" in the foreach loop needs to be type of: GeckoHtmlElement or else... using the var data type, it becomes type of GeckoNode, and doesn't include a "GetAttribute" method. Now the thing with your code, is that it returns me an "Object reference not set to an instance of an object." error... because the 'links' variable is null, and it doesn't contain any "elements". Here is my code:
http://prntscr.com/e8oo33
This is the "crash" error: http://prntscr.com/e8oq15
P.S I use the method invoker thing, because Gecko Browser is in another thread.
xXxRevolutionxXx
14-Feb-17 7:29am
View
I updated the question.
xXxRevolutionxXx
16-Oct-16 11:03am
View
??? This is my old post. I didn't find a solution, so i decided to open a new one to ask for other solutions.
xXxRevolutionxXx
9-Sep-16 11:05am
View
I want to get all files from all directories.... the SearchOption.AllDirectories is the only way to achieve this.. so SearchOption.TopDirectoryOnly is not an option for me :(
xXxRevolutionxXx
7-Sep-16 5:38am
View
Man, are you kidding me ? Put an effort on your own. Anyway, i edited the answer. No one can write you something more clearly than that. I cannot write all the other parts of the code. But i just showed you how to check if an app is open or closed.
xXxRevolutionxXx
5-Sep-16 13:39pm
View
On which string you want to change line ?
xXxRevolutionxXx
5-Sep-16 11:52am
View
Read not only the "Disable UAC" code, but all the rest i said. I am not quite sure why this is happening... and the "UAC Disable" doesn't work for all programs... but even if it works, it's bad logic to try to close UAC. Everything about programming is logic... and trying to close UAC just because it popups when someone is opening your program... is just bad logic. Check the other "solution" i gave you.
Show More