Click here to Skip to main content
Page 1 of 1
Page Size: 10 · 25 · 50


Author filtered by: Vishal_K89 [x]
Question 14 May 2013   license: CPOL
Hi All,1. I am new to Managed C++, In my program, based on C++, In case I need to make a transition to Managed C++ and use the equivalent constructs.Eg., System::String ^ ptr = gcnew ("C:\Dir1\abc.txt"); // SomeClass ObjSomeClass should consume the...
Question 10 May 2013   license: CPOL
Hi All,Q 1. Does GacInstall(string assemblyname) & RegisterAssembly(string assemblyname) been implemented/does the source code exist for the same. ?ie., project having below binaries for subjecting to registration(Win32 dll's, COM dll's, .NET Dll's/assemblies with COM Interfaces, pure...
Question 8 May 2013   license: CPOL
Hi,I have some couple of .NET Dll's(assembly) with/without COM Interfaces,1. Is there a way/method to detect if a dll/assembly (.Net Dll) has a COM interface ?This is akin to searching for DllRegisterServer() API function in Unmanaged source Code (ATL-COM world)in VS IDE.I need...
Question 4 May 2013   license: CPOL
Hi ,On usage of GacInstall() programmatically,instead of Gacutils.exe but, on implementing the above method, I could not get the xyz.dll/assembly installed programmatically, (Verification is through Context menu (MyProject->Add References->.NET tab), though the assembly does not get...
Question 2 May 2013   license: CPOL
Hi All,My project is based on Registration/De-Registration of Dll's, oriented towards (COM Dll's and .NET Dll's/Assemblies with COM interfaces), here, I need to simulate the behavior of Dll's registration for .NET with COM interface (RegAsm.exe/Gacutils.exe).Steps:1. To create a...
Question 24 Apr 2013   license: CPOL
Hi All,Is there a simple and efficient way to program(in VC++, C#)to detect the presence/absence of Strong names,in files/folders ? by parsing each and all of the files contents by enumerating the entire sequence of directories/subdirectories and files, Although, using Sn -T...
Question 23 Apr 2013   license: CPOL
Hi All, My Application is been developed using multi-technology viz., C++ Win32 Dll, ATL-COM- Dll's & .Net Dll's(Assemblies), and my task is involved with Registration of Dll's, I had modified the COM-Dll's using adding Interface/method and used "RegSvr32.exe \\path of dll\xyz.dll...
Question 10 Apr 2013   license: CPOL
Hi All,In my Application, comprising many COM-Dll's, I had added new class/interface/method, obviously, since, IID-CLSID changes, we need to register the Dll "abc.dll" using RegSvr32.exe "abc.dll", by closing the instance of Application.(pre-requisite) and replacing the newly registered...
Question 31 Mar 2013   license: CPOL
Hi All,In current project consisting of about 600 binaries(dll's,exe's,ocx's etc.,) I need to identify .NetDll's which has COM component, As I can understand, in such scenario's Registration using Regasm is mandatory (if and only if the .NetDll's have COM components),But, my query...
Question 28 Mar 2013   license: CPOL
Hi All, In my current .Net Application, I need to resolve/clarify few aspects, on .Net Dll's1) Is .Net Dll's needs to be registered ? If yes, under what circumstances, and how would one effect the registration part of the .Net Dll.eg: using Regsvr32.exe "path name/xyzcomInproc.dll" @...
Question 27 Mar 2013   license: CPOL
Hi All, In my Application, I have about 600 binaries viz., COM DLL, Win32 Dll, OCX & .Net Dll's, but I need to identify the .NetDll's among them, In this context let me know, what is the distinguishing feature of .Net Dll's/Assemblies compared to other Dll's ?For Example we are able to...
Forum Message 27 Mar 2013  
Hi All, I am new to .Net,I have informed all forms of Dll's is used in project, viz., Win32.dll, COM'Dll, and .Net Dll's, I need to find how we can identify .Net Dll's, however though, I could
Forum Message 27 Mar 2013  
I am new to .Net,I have informed all forms of Dll's is used in project, viz., Win32.dll, COM'Dll, and .Net Dll's, I need to find how we can identify .Net Dll's, however though, I could identify CO
Question 26 Apr 2012   license: CPOL
Dear All,In WPF Application, I need to prevent the combo from displaying null values during initial launch of the application, here is the code snippet on how the combo is implemented, but it should only default to the first value > instead of displaying null, How one could implement the...
WPF
Question 5 Apr 2011   license: CPOL
Hi All,I have created a MDI App, using MFC Appwizard, On launch of the application, I need to disable the Divider which seperates File View to the left and other view to right, basically, mouse had to disabled for view size changes etc.,How could we accomplish such a behaviour,...
MFC
Question 28 Mar 2011   license: CPOL
I am using MFC MDI Application, where in I need to disable the divider which seperates, File View Pane in the left with the Editor and Output window to the right in my Mainframe., I tried to set the SW_NOSIZE and similar changes to onNCHTTest to HT_NOWHERE in my File View class, but of no...
MFC
Question 14 Mar 2011   license: CPOL
I am having issues, with toolbar buttons, in MFC(MDI) Application, after opening Toolbar editor, and open the folder from desktop, having list of bitmaps, All are converted to bitmaps and size to 15 * 16, but on launching application, the image is distorted, and subsequent a loss of color...
MFC
Question 12 Mar 2011   license: CPOL
I use Scintilla editor , and mapped the same into my MDI application,here, I have used the wrapper for MFC readily available from Codeproject.After mapping the scintilla editor, and setting the EOL etc., in ScintillaWnd.cppin ScintillaWnd.cpp @ Init()...//..notably. ...
MFC
Forum Message 7 Mar 2011  
In Multiline Edit control, a new line to be formed form after ALT+ENTER instead of Enter, this has similar behaviour has IM messengers etc., how can I enable the same, I learned the Keyboard virtual k
Question 6 Mar 2011   license: CPOL
Please let me know, the constructs I need to implement for enabling new line (Multiline Edit Control) when user selects >.in PreTranslateMessage()...... if((pMsg->message == WM_KEYDOWN) && (pMsg->wParam == VK_RETURN)) { //Enter key was hit -> do whatever...
Question 3 Mar 2011   license: CPOL
I am working in MFC Application(MDI), The Application is not saving the state even though ... EnableLoadWindowPlacement(TRUE);....and ........if (!ReloadWindowPlacement(pMainFrame)) { pMainFrame->ShowWindow(m_nCmdShow); pMainFrame->UpdateWindow(); ...
MFC
Question 2 Mar 2011   license: CPOL
I am using MFC Application, Editor provided for display, I have encountered the problem of When I type text and copy text from editor to Notepad, the text is illegible.As per Information. The End of Line is CRLF in windows and LF in Unix varaints, but, even though necessary EOL updations...
Forum Message 6 Oct 2010  
Can you help me with outlining/elaborate to configure Scintilla app(ie., scilexer.dll) into the MDI Application being developed, I was able to load the dll using my application(using loadlibrary an
VS 2008 IDE by Vishal_K89
Question 7 Sep 2010   license: CPOL
Need a favour , to develop/ Outline approach of creating UI similar to VS 2008 IDE (Interactive) :)As per Spec. mentions UI, but functionality wise similar to VS, I have presumed SDI through (MFC App) Appwiz/Using splitter wnd ?? Pls., clarify

Page 1 of 1


Advertise | Privacy | Mobile
Web03 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid