|
Thanks for the link, at the end they explained how to make it work. Here's the code (following their advice):
if (uMsg == BFFM_SELCHANGED)
{
LPITEMIDLIST pidl = reinterpret_cast<LPITEMIDLIST> (lParam);
char UnusedBuffer[MAX_PATH];
BOOL ShouldEnableOkButton = SHGetPathFromIDList(pidl, UnusedBuffer);
::SendMessage(hwnd, BFFM_ENABLEOK, 0, ShouldEnableOkButton);
}
There is sufficient light for those who desire to see, and there is sufficient darkness for those of a contrary disposition.
Blaise Pascal
|
|
|
|
|
Hi,
In my application, i want to get one scrolling window by clicking in the view (CGraphView) class.
So i used this following code.From this i can get the window .But i cannot scroll the window,if i scrollign nothing will happen.
Pls help me.
Code:-
HINSTANCE hInst = AfxGetInstanceHandle();
HWND GlgControl;
GlgObject drawing;
drawing = GlgLoadWidgetFromFile(pFileName);
GlgSetDefaultViewport(drawing);
GlgControl = CreateWindow("GlgControl",sPopName,WS_VISIBLE|WS_SYSMENU|WS_VSCROLL|WS_HSCROLL ,xval+5,yval+5,CW_USEDEFAULT,CW_USEDEFAULT,(HWND)(((CGraphView *)(((CMainFrame *)AfxGetMainWnd())->pDisplayedViews[6]))->glg_animation[giSchPNo].m_hWnd),NULL,hInst,NULL);
GlgInitialDraw(drawing);
Anu
|
|
|
|
|
You have to manage the scroll yourself: you have to override the OnHScroll and OnVScroll members from CWnd and take the appropriate actions there. For instance store the new initial horizontal and vertical positions of your view and request a refresh of your window. In your drawing code, you then take those information in consideration to redraw properly your window.
|
|
|
|
|
MFC, STUDIO 2008, MDI-project
void CPage1::OnBnClickedButton1()
{
CRect rect(85, 110, 180, 210);
CEdit m_edit; // Embedded edit object
m_edit.Create(WS_CHILD | WS_VISIBLE | WS_TABSTOP |
ES_AUTOHSCROLL | WS_BORDER, rect, this,
ID_EXTRA_EDIT); // error C2065: 'ID_EXTRA_EDIT' : undeclared identifier
m_edit.SetFocus();
}
|
|
|
|
|
1/ What's your question
2/ Include resource.h? Your compiler is saying "ID_EXTRA_EDIT? Never heard of it"
3/ Check your spelling.
Iain.
In the process of moving to Sweden for love (awwww).
If you're in Scandinavia and want an MVP on the payroll (or happy with a remote worker), give me a job! http://cv.imcsoft.co.uk/[ ^]
|
|
|
|
|
Yes, and ? Just define ID_EXTRA_EDIT in your resource.h file.
|
|
|
|
|
First I am a Chinese boy. My English is not very good.
change
m_edit.Create(WS_CHILD | WS_VISIBLE | WS_TABSTOP |
ES_AUTOHSCROLL | WS_BORDER, rect, this,
ID_EXTRA_EDIT); // error C2065: 'ID_EXTRA_EDIT' : undeclared identifier
for
m_edit.Create(WS_CHILD | WS_VISIBLE | WS_TABSTOP |
ES_AUTOHSCROLL | WS_BORDER, rect, this,
1234); // error C2065: 'ID_EXTRA_EDIT' : undeclared identifier
the meaning is Specifies the edit control’s ID.(msdn)
then you will change m_edit as a class member,because, when the OnBnClickedButton1 is finished m_edit is lost.
sorry,my English is so poor...
|
|
|
|
|
blueapplezh wrote: then you will change m_edit as a class member,because, when the OnBnClickedButton1 is finished m_edit is lost.
Yes, that's correct, I didn't see that at all.
blueapplezh wrote: change
m_edit.Create(WS_CHILD | WS_VISIBLE | WS_TABSTOP |
ES_AUTOHSCROLL | WS_BORDER, rect, this,
ID_EXTRA_EDIT); // error C2065: 'ID_EXTRA_EDIT' : undeclared identifier
for
m_edit.Create(WS_CHILD | WS_VISIBLE | WS_TABSTOP |
ES_AUTOHSCROLL | WS_BORDER, rect, this,
1234); // error C2065: 'ID_EXTRA_EDIT' : undeclared identifier
the meaning is Specifies the edit control’s ID.(msdn)
I wouldn't advise that. The reason is that it is much safer to add a new Id in the resource.h file and use it. This way you have a central place where you define all your ID's and you can make sure you won't reuse the same Id twice.
|
|
|
|
|
I wouldn't advise that. The reason is that it is much safer to add a new Id in the resource.h file and use it. This way you have a central place where you define all your ID's and you can make sure you won't reuse the same Id twice.
You are clever,I have advise that,but my English is too poor to express my opinion.
If I am a USA boy ,HOHO~~~~~
|
|
|
|
|
blueapplezh wrote: You are clever,I have advise that,but my English is too poor to express my opinion.
I would advise you to use the 'Quote Selected Text ' button to report the words of the post you're replying to.
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
CPallini wrote: I would advise you to use the 'Quote Selected Text' button to report the words of the post you're replying to. Roll eyes
Smile
Thanks very mu ch!!!
|
|
|
|
|
#define ID_EXTRA_EDIT 3000 is your answer and also I saw one more thing in your code you must declare CEdit m_edit out of this function.
Of one Essence is the human race
thus has Creation put the base
One Limb impacted is sufficient
For all Others to feel the Mace
(Saadi )
|
|
|
|
|
i m using soap library for C++ client and hv searched alot almost all code are using same way but Its Giving exception on
Connector->EndMessage();
my Wcf service has One Method "GetMessage(string name)
URL is (Hellow is virtual directory for IIS)
<a href=""><a href="http://localhost/Hellow/HelloWorldService.svc">http://localhost/Hellow/HelloWorldService.svc</a>
and client code is
<pre>
#include <stdio.h>
#import "msxml3.dll"
using namespace MSXML2;
#import "C:\Program Files\Common Files\MSSoap\Binaries\MSSOAP1.dll" \
exclude("IStream", "ISequentialStream", "_LARGE_INTEGER", \
"_ULARGE_INTEGER", "tagSTATSTG", "_FILETIME")
using namespace MSSOAPLib;
void CallService()
{
ISoapSerializerPtr Serializer;
ISoapReaderPtr Reader;
ISoapConnectorPtr Connector;
// Connect to the service
Connector.CreateInstance(__uuidof(HttpConnector));
Connector->Property["EndPointURL"] = "http://localhost/Hellow/HelloWorldService.svc";
Connector->Connect();
// Begin message
Connector->Property["SoapAction"] = "uri:http://localhost/Hellow/HelloWorldService/GetMessage";
Connector->Property["UseSSL"] = "True";
Connector->BeginMessage();
// Create the SoapSerializer
Serializer.CreateInstance(__uuidof(SoapSerializer));
// Connect the serializer to the input stream of the connector
Serializer->Init(_variant_t((IUnknown*)Connector->InputStream));
// Build the SOAP Message
Serializer->startEnvelope("","","");
Serializer->startBody("");
Serializer->startElement("GetMessage","uri:http://localhost/Hellow/HelloWorldService/GetMessage","","m");
Serializer->startElement("name","","","");
Serializer->writeString("shaina");
Serializer->endElement();
Serializer->endElement();
Serializer->endBody();
Serializer->endEnvelope();
// Send the message to the web service
Connector->EndMessage();
// Let us read the response
Reader.CreateInstance(__uuidof(SoapReader));
// Connect the reader to the output stream of the connector
Reader->Load(_variant_t((IUnknown*)Connector->OutputStream), "");
// Display the result
printf("Answer: %s\n", (const char *)Reader->RPCResult->text);
}
void main()
{
CoInitialize(NULL);
CallService();
CoUninitialize();
}
</pre>
Any suggestions wil be appreicated.
PLZzzzzzzzz help
|
|
|
|
|
Hai!
I am doing my application in embedded VC++.
I have included the file WINSCARD.h, and add the library WINSCARD.lib in the Project Settings>>Link>> Category(INPUT)>> in library modules.
But when i use the function SCardEstablishContext () or SCardListReaders () i get the following error :
error LNK2019: unresolved external symbol _SCardEstablishContext referenced in function "public: void __thiscall CListRdrsDlg::OnDropdownComboRdrs(void)" (?OnDropdownComboRdrs@CListRdrsDlg@@QAEXXZ)
how to get rid of this?
Thanks!
|
|
|
|
|
kapardhi wrote: add the library WINSCARD.lib in the Project Settings>>Link>> Category(INPUT)>> in library modules.
In both Debug and Release modes?
Also - does the linker know what directory it'll find the library in?
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
I also inculded the path where the WINSCARD.lib is present and selected "All Configurations" option that includes ARM4 Debug, Arm4 Relese, Emulator Debug and emulator release.
still the problem persists !
|
|
|
|
|
The only thing I can think of is this: are you using the correct version of the library ? By this I mean that you cannot use the win32 version of the library, because you are developping for winCE. I don't know this library so I can't tell you if it exists for winCE or not.
|
|
|
|
|
Stuart Dootson wrote: Also - does the linker know what directory it'll find the library in?
Probably yes, otherwise it would tell that it cannot open the library file.
|
|
|
|
|
That's a good point
|
|
|
|
|
Hi all,
i m using PROCESS_INFORMATION for Create Process,i create one by one multiple process ,
but after some time PROCESS_INFORMATION have null values and process not created successfully.
is there every time we need no initialize the PROCESS_INFORMATION or anything else.
please tell me wat can do for this.
thanks in advance.
To accomplish great things, we must not only act, but also dream;
not only plan, but also believe.
|
|
|
|
|
You have to reinitialize the structure every time.
«_Superman_»
I love work. It gives me something to do between weekends.
|
|
|
|
|
Yes
To accomplish great things, we must not only act, but also dream;
not only plan, but also believe.
|
|
|
|
|
«_Superman_» wrote: You have to reinitialize the structure every time.
i.e. Win32 API is not for the lazy guy.
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
"_$h@nky_" wrote: but after some time PROCESS_INFORMATION have null values and process not created successfully.
The 'process not created successfully' bit bears examination. What did CreateProcess return (0, I presume) and, if it indicated failure, what does GetLastError return?
The PROCESS_INFORMATION struct is strictly an output of CreateProcess - you shouldn't have to re-initialize it every time, but it helps to do so, so you can more easily see (in the debugger) that the contents have changed.
|
|
|
|
|
with the using of GetLastError() error comes "The operation completed successfully."
now tell me wat can i do.
To accomplish great things, we must not only act, but also dream;
not only plan, but also believe.
|
|
|
|