Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~565 People Reached
Favorite Tags
Member Avatar for ashar5

Hi, I am running embedded mongoose webserver in server side (Linux centos). In the client (Windows) I am using c++ with libcurl to post request to webserver. It works successfully all the time. But now, I am facing ssl connectivity issue in client side. Without ssl, it works fine. If …

Member Avatar for jmichae3
0
244
Member Avatar for ashar5

hi, I have change registry settings to list a drive like folder in MyComputer by following the steps in [url]http://www.virtualplastic.net/html/ui_shell.html#attributes[/url] I have added a shell command in registry under HKEY_CLASS_ROOT using innoscript (inno setup) to open the 'D:\Test' folder. RegWriteStringValue(HKEY_CLASSES_ROOT, 'CLSID\{My ID}\Shell\Open\Command', '', 'explorer /n, D:\Test') I have added my …

0
54
Member Avatar for ashar5

Hi, I am using ReadDirectoryChangesW to get file added/modified/deleted notifications. In the dwNotifyFilter argument, I gave the following filters. FILE_NOTIFY_CHANGE_CREATION|FILE_NOTIFY_CHANGE_LAST_WRITE|FILE_NOTIFY_CHANGE_SIZE|FILE_NOTIFY_CHANGE_ATTRIBUTES|FILE_NOTIFY_CHANGE_DIR_NAME|FILE_NOTIFY_CHANGE_FILE_NAME Normally the process has been waited in GetQueuedCompletionStatus function and return notifications whenever a file is added/modified/deleted. The issue I am facing is, when a file is added/modified one time …

0
32
Member Avatar for ashar5

Hi, Assume, I have a following table whose schema is, create table testing (test1 integer not null, test2 integer not null, test3 integer not null, test4 integer not null); And assume the following details are inserted: insert into testing values (1,1,0,0); insert into testing values (1,1,1,0); insert into testing values …

Member Avatar for Ancient Dragon
0
125
Member Avatar for ashar5

Hi, Assume, I have table which consists of 5 values, say C:/Testing/test1/ C:/Testing/test1/test2/ C:/Testing/1/ C:/Testing/ C:/1/ I want to query the database table to get the values starts from 'C:/Testing/' and '/' as a escape character. ie, I want to get only two things, C:/Testing/test1/ C:/Testing/1/ Both starts with 'C:/Testing/' …

Member Avatar for ashar5
0
109