Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
1 answer
150 views

using (var pbkdf2 = new Rfc2898DeriveBytes( m_Password, l_saltBytes, Convert.ToInt32(ConstantFatcorString), HashAlgorithmName.SHA256)) {...
Nishant Sharma's user avatar
3 votes
0 answers
169 views

I used the same code given in [Microsoft documentation] (https://learn.microsoft.com/en-us/windows/win32/wes/subscribing-to-events#pull-subscriptions) to collect logs in real-time by subscribing to ...
Ajay Adithya's user avatar
0 votes
0 answers
101 views

For context I have a HC-05 module connected to my Arduino Mega. The Arduino sends some data to the HC-05 module which gets transferred via bluetooth to my computer (after it's paired). When pairing HC-...
Vagabond4761's user avatar
2 votes
2 answers
109 views

I am reading the .NET documentation, and encountered the IdentityReference class, which states: Represents an identity and is the base class for the NTAccount and SecurityIdentifier classes. This ...
E. Johnson's user avatar
0 votes
2 answers
866 views

I work on a PE file and I try to interpret this line in IDA : v4 = *(_DWORD *)((char *)LibraryA + *((_DWORD *)LibraryA + 15) + 120); LibraryA is the base address of the PE file *((_DWORD *)LibraryA + ...
Nerios's user avatar
  • 43
1 vote
1 answer
2k views

Where can download Microsoft Application Request Routing Version 2 for IIS 7? Please help me on this to downalod. I tried to search microsoft websites and found the link to download but when I click ...
user1684987's user avatar
0 votes
1 answer
76 views

ALL, The error codes listed here: https://learn.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/platform-apis/ms775145(v=vs.85) are for IE which is outdated. Is there a ...
Igor's user avatar
  • 6,473
0 votes
0 answers
51 views

I am trying to build VS-2012(msvc-110) solution in VS-2019(msvc-142). It also used Boost library v1.51. I simply started by opening solution file in VS-2019 where it asked to change Windows SDK and ...
Rakesh Mehta's user avatar
0 votes
1 answer
57 views

I am using the Winldap API ldap_modify_ext_s to write data to the Active Directory. It writes successfully when the data is not too large. But when the data is really huge it fails with error 11. ...
RituV's user avatar
  • 65
1 vote
0 answers
237 views

I have encountered strange behavior. I have created windows event forwarding subscription and ForwardedEvent.evtx file is capturing subscribed events. When trying to convert ForwardedEvent.evtx file ...
Deepak Ramesh's user avatar
0 votes
0 answers
132 views

I am trying to distinguish one trackpad scroll user action (which translates into multiple mouse wheel events on windows) from the next user action? Is there a way to achieve it like in case of MacOS? ...
window_handle's user avatar
0 votes
1 answer
235 views

I am new to win32 programming and have a very naive question. Say there is my application window of size 1920x1280 and I create a child window over it of size 1920x2560 (double of vertical screen size)...
window_handle's user avatar
1 vote
1 answer
989 views

Im developing an application using Xamarin forms for my android and iOS application. Currently when the application is being launched , a white screen is shown before my SplashScreen. How can we ...
I'm Coder's user avatar
  • 135
0 votes
0 answers
359 views

I have a 32bit application running as a service in windows (OS : Microsoft Windows Server 2012 R2 Standard). Its a client server based application which Maps a view of a file using the MapViewOfFile() ...
saim's user avatar
  • 1
0 votes
0 answers
178 views

I implemented an udp client that sends non-stop 8 kB packets to a server in order to observe the maximum data rate that I can reach, and I'm trying to find out why I can't reach the expected data rate ...
R27J02's user avatar
  • 15
1 vote
1 answer
1k views

We use Visual Studio in a machine with limited internet access. I use the "Device Code" option to login to my Visual Studio / MSDN subscription from that machine. In my Tools -> Options -&...
FMFF's user avatar
  • 1,716
1 vote
0 answers
288 views

I'm using Visual Studio 6 for updating an old MFC4.2 project and I'd like to get the MSDN SDK/MFC help to work again under windows 10. Right now when I press F1 it reports "Unable to display Help:...
Al Ro's user avatar
  • 520
1 vote
0 answers
675 views

Ultimately I'm trying to get the process id of the program which created a new file. For example: if I install a application through an installer and when new files are created I want to know the ...
Im trt's user avatar
  • 11
1 vote
0 answers
157 views

Does anyone of you have an idea how to get access to a specific version of a dotnet dll (or the complete .net framework that contains the specific dll)? We're trying to look into a dmp file, but the ...
Johann Studanski's user avatar
0 votes
1 answer
590 views

I am trying to perform select operation on a datatable to extract some values from a column. The column that I am targeting has some special characters in it. so the error message is saying, An ...
Kuldeep J's user avatar
  • 572
0 votes
1 answer
477 views

I am trying to read system keyboard events in my c++ application using SetWindowsHookExA. Application is able to get the system keyboard events as long as the hooking is done in a dll. If I try to ...
DBR404's user avatar
  • 1
0 votes
0 answers
381 views

I'm trying to write a program that should be able to create files that can be sent to a selected printer. At this moment, the code is as follow Canvas c = GetMyCanvas(); PrintDialog p = new ...
frankborty's user avatar
0 votes
2 answers
140 views

I have a function that converts a list of strings to a vector of const wchar_t *. void convertListtoVector(std::vector<const wchar_t *>& messageInserts) { std::list<std::wstring> ...
RituV's user avatar
  • 65
0 votes
1 answer
619 views

We've a requirement to upload 100MB document in to Sharepoint. I've found an article where they are uploading using chunks with startUpload, continueUpload and finishUpload methods. I've tried using ...
prathyusha magam's user avatar
0 votes
1 answer
744 views

This is my code to check if the password entered by user is correct. My user is an AzureAD user logged in to a windows 10 Azure AD joined machine. if (LogonUser(upn., NULL, pwd, LOGON32_LOGON_NETWORK,...
RituV's user avatar
  • 65

1
2 3 4 5
22