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
Ranked #4K
~3K People Reached
Favorite Forums
Favorite Tags
c++ x 22
Member Avatar for zzmgd6

help. I do everything in C++ with STL but I have to utilitize legacy C functions within my member functions (methods). The legacy C function signature is... extern int UF_DRF_create_label( int num_lines_text, [B]char text_string[ ][132+1][/B] , double origin_3d[3], UF_DRF_leader_attach_type_t leader_attach_type, UF_DRF_object_p_t object, double model_pos_3d[ 3 ], tag_t * label_tag); My …

Member Avatar for zzmgd6
0
178
Member Avatar for zzmgd6

Try to access the environment variables of a current running proces? The following is close but no cigar. Any help to go further. I know it has to do with the PROCES_PARAMETERS contained within the Process Environment Block PEB. But I am completely lost at this point. the following returns …

Member Avatar for vijayan121
0
2K
Member Avatar for zzmgd6

Having problems with the following... [code] // this is contained within "UF_styler.h" and can not be alternate ... [B]typedef int (*UF_STYLER_cb_f_t)(int dialog_id, void *client_data, UF_STYLER_item_value_type_p_t call_data);[/B] struct UF_STYLER_callback_info_s { char *object_id; int cb_type; int is_dialog_launching_cb; [B]UF_STYLER_cb_f_t callback_proc;[/B] }; typedef struct UF_STYLER_callback_info_s UF_STYLER_callback_info_t, *UF_STYLER_callback_info_p_t; .... [/code] [code] // my dialog.hxx file …

Member Avatar for vijayan121
0
252
Member Avatar for brk235

From the given code below everytime i need to print the name as rama+value of the integer variable. if i=10; then the output:rama10 should be printed... i have probelm to add string to the integer variable..please help anyone...thanks in advacne... class abc { private: int a,i; string name; public: void …

Member Avatar for brk235
0
193
Member Avatar for barnes138

Please help, I can't get more than 5 decimal places in my answers and I don't know how to tweak the code to allow for this. Any help would be greatly appreciated. DB #include <iostream> using namespace std; int main() { system("title You can Convert Miles to Kilometers or Convert …

Member Avatar for barnes138
0
91
Member Avatar for zzmgd6

I understand how to use CreateProcess, ShellExecute(Ex), _spawn, exec methods to start a child process from a parent process. Question: Is there a way I can return values back to the parent process from the child process? For example, the child process sets an integer value and I want the …

Member Avatar for zzmgd6
0
188