Is there any support within Visual C++ to data structure Graph (not Graphics)? If not, does anyone know where I can find the resource related to it? Thanks!:)
Tony Li
Posts
-
Support to Graph -
Chang Dll VersionI know UpdateResource can be used to make the change. Do you know if there is an example showing how to change version information permanently using this function? In MSDN, there are some links about how to change dialog resource and string table resource using the function. But I didn't find anything about version. Thanks.
-
Chang Dll VersionThere is a WIN32 function GetFileVersionInfo to get file version information. Is there a "SetFileVersionInfo" or similiar WIN32 function to change the version information?
-
Chang Dll VersionThere is a WIN32 function GetFileVersionInfo to get file version information. Is there a "SetFileVersionInfo" or similiar WIN32 function to change the version information?
-
DCOM Server with UII have a DLL component with some User Interface sitting on my server machine. My test program is on the client machine. I want my test program to activate the DLL component on the server machine. But I want the UI to be visible on the client machine. Anyone knows how to do it? Thanks a lot!:)
-
Convert Date&Time string to DATE typeI want to convert a Date&Time string, for example, "08:30:25 Sep-25-00", to a DATE data type without the help of MFC. Could anyone tell me how to do that in COM way or Win32 API way? Thanks, Tony
-
ATL Object WizardThe New ATL Object menu item was disappeared from my Insert menu. Anyone knows what happened to the ATL Object Wizard and how can I get it back as normal? Thanks, Tony
-
Register a DLL serverThanks! I'm just curious how you find the root of the problem. Tony
-
Register a DLL serverI built an ATL COM DLL server. When I tried to register it after its build, some error happened to the registration process. The error says, Performing registration RegSvr32: DllRegisterServer in MyServer.dll failed. Return code was: 0x80070716 I've looked up the error code. It says, "The specified resource name can not be found in the image file." Does anyone know what happened to the registration? Thanks, Tony
-
Register a File TypeWhat should I do if I want to programatically register my application to handle one type of file? Thanks, Tony
-
How to Create Common File Dialog in ATL COM ComponentI want to create a Common File Dialog, like the one in MFC, in my ATL COM component. I turned off "MFC Support" option to minimize the COM component size. Is there any dialog class, like CFileDialog, in ATL to do that? Or is there any easy way to do that other than create my own file dialog? Thanks, Tony
-
Using STL in ATLIt does work with my "Release MinDependency" build! But it couldn't solve the problem within my "Release MinSize" build. What should I do? Thanks, Tony
-
Using STL in ATLIn my ATL DLL projects, I used one of the containers in STL. I also tured on the "Exception Handling" compiler option (-Gx) to suppress the warnings. It's just fine with my DEBUG built. But there is a link error "error LNK2001: unresolved external symbol _main" from my RELEASE build. Could anyone tell me what I should do to solve the problem? Thanks, Tony