 |
|
|
 |
|
 |
please guide me create new project with VS 2005 / VC++ to use WTL with button, edit box, check box,...
|
| Sign In·View Thread·PermaLink | 1.25/5 (7 votes) |
|
|
|
 |
|
|
 |
|
 |
Why was VC6 Support for appwiz dropped ? I would love to use WTL, but is it worth my time to try and use it without the appwiz ? I feel cheated.
Welcome to where time stands still, where no-one leaves, and no-one will.
|
| Sign In·View Thread·PermaLink | 2.00/5 (2 votes) |
|
|
|
 |
|
 |
hi,Beyogus pls read the readme.txt of WTL7.5/8.0 library. the appwiz has included in WTL 7.1, and still can be used with WTL 7.5/8.0
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
|
 |
|
 |
1. I copy wtl70\AppWiz70\files to Under "I:\Program Files\Visual Studio.net\Vc7\vcprojects " 2. i change open WTLApp70.vsz and modify the like that contains ABSOLUTE_PATH to contain %WTLDIR%\AppWiz70\Files. 3. i edit setup,change trVC7Key = "HKLM\\Software\\Microsoft\\VisualStudio\\7.0\\Setup\\VC\\ProductDir" to trVC7Key = "HKLM\\Software\\Microsoft\\VisualStudio\\7.1\\Setup\\VC\\ProductDir".(My msvc is version 7.1) i doubleclick setup. it succeed. but I new a ATL/WTL project from msvc7.1.it report erro: "object with program ID VsWizard. VsWizardEngine cannot be created ". Please tell me why? or tell me how install WTL7.0 Correctly. thanks.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
edit wtlapp70.vsz modify the second line: Wizard=VsWizard.VsWizardEngine to Wizard=vsWizard.VsWizardEngine.7.1
save OK good luck
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
 |
Well ... i am on dialup and dont intend to download the platform sdk again. and the wtl 3.1 link seems to be removed. now all i can find in msdn is wtl 7.0 and they say its compatible with Visual Studio 6.0. so ... whats this big jump from 3.1 to 7?
http://download.microsoft.com/download/VisualStudioNET/Install/7.0/WXP/EN-US/WTL70.exe
-Tareq
|
| Sign In·View Thread·PermaLink | 1.00/5 (1 vote) |
|
|
|
 |
|
 |
There are only two versions of WTL, 3.1 and 7. 3.1 was named because ATL was at v3.1 at the time. 7 is so named to match up with the Visual C++ version.
--Mike-- "I'm working really, really fast at the moment, so a 3 minute outage becomes, due to time dilation, a 5 minute outage." -- Chris Maunder, relativistic system administrator Ericahist | Homepage | RightClick-Encrypt | 1ClickPicGrabber
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
In the first paragraph we read:
In the beginning when ATL appeared, developers were happy.... Well the happiness ended soon after when we found that we had to write code wrappers for any of the window's controls we wanted to use.
Some explanation of this would be good???
aaaaaaaaaaaaaaa
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Search WTL on MSDN
WTL allows developers to avoid writing tedious WinAPI routines. It also provides a lightweight framework for UI programming, which leaves much smaller footprint than MFC.
However, WTL is not supported or documented by it's creators.
R.Bischoff | C++ .NET, Kommst du mit?
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Who can tell me how to install wtl31.exe on my VC++ ? I want to complier a sample but there is a error . The error message is "fatal error C1083: Cannot open include file: 'atlctrls.h': No such file or directory"
I have the wtl31.exe but I don't know how to use . please everyone send e-mail tell me how to do . my e-mail is "goldchicken2000@yahoo.com.tw"
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Get the WTL 7.0 version (search here in codeproject for a link). WTL7.0 contains some bug fixes and enhancements.
unpack the wtl70.exe somewhere. There are .js files for both VC++ 6.0 and .NET. Add the include directory to the ide/project options, and it should work.
R.
|
| Sign In·View Thread·PermaLink | 4.00/5 (1 vote) |
|
|
|
 |
|
 |
Ramon Casellas
Sorry , i don't know what is the meaning of "ide/project options".
I download the WTL 7.0 , unpack it , run the setup.js and make new directory(WTL\include) to the C:\~\Microsoft Visual Studio\VC98\include but run the demo program will find a error . I see the readme.htm but can't solve the problem . Please teach me detail .
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
1.Copy the .h files in WTL's include directory to VC's include directory. 2.Suppose your vc is under D:,copy the AtlApp60.Awx in WTL's appwiz directory to D:\Microsoft Visual Studio\Common\MSDev98\Bin\IDE, that is ok!then when u open vc Wizard,u will see an extral project to choose "WTL project". Hope u enjoy it!
xc
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
but I found that the WTL7.0 example programes couldn't be passed the compiling I don't know the reason the compiling result is shown below: atlframe.h(274) : error C2146: syntax error : missing ';' before identifier 'lpnm' the reason is the source code appears like this: LPNMREBARCHEVRON lpnm; my question is which head file include the defination of "LPNMREBARCHEVRON "?
I am interesting in programming with VC++. I hope to meet the net freinds with the same interesting. I am glad to know the better programmer on internet.
|
| Sign In·View Thread·PermaLink | 1.00/5 (2 votes) |
|
|
|
 |
|
 |
I had the same problem compiling MTPad in VC++6.0. I change the following line in stdatl.h
#define _WIN32_IE 0x0501
to
#define _WIN32_IE 0x0400
and the compile well ...
|
| Sign In·View Thread·PermaLink | 5.00/5 (1 vote) |
|
|
|
 |
|
 |
I had the same problem compiling MTPad in VC++6.0. I change the following line in stdatl.h
#define _WIN32_IE 0x0501
to
#define _WIN32_IE 0x0400
and the compile well ...
-------------------------------- I see...but I had other problem; Can you mail your code to me ? Thanks. my email "zhanghao@newlandcomputer.com"
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
sorry,When i create new project I have same error, I changed same way as you but it reported error
Ru ao phong suong tren gac tro...
|
| Sign In·View Thread·PermaLink | 2.00/5 (1 vote) |
|
|
|
 |
|
 |
Try removing (or modifying) the following lines in stdatl.h:
#define WINVER 0x0500 #define _WIN32_WINNT 0x0500 #define _WIN32_IE 0x0501
|
| Sign In·View Thread·PermaLink | 1.00/5 (1 vote) |
|
|
|
 |
|
 |
1.Copy the .h files in WTL's include directory to VC's include directory. 2.Suppose your vc is under D:,copy the AtlApp60.Awx in WTL's appwiz directory to D:\Microsoft Visual Studio\Common\MSDev98\Bin\IDE, that is ok!then when u open vc Wizard,u will see an extral project to choose "WTL project". Hope u enjoy it!
Sorry, I just downloaded the WTL 7.5. There is no longer available for "AtlApp60.Awx" anymore. Although I can go back to download the ver7.1, I just curios how to solve for installation on VC6 for ver 7.5.
-- modified at 23:46 Sunday 1st January, 2006
|
| Sign In·View Thread·PermaLink | 2.00/5 (2 votes) |
|
|
|
 |
|
 |
Hello, I am a new programmer (self learning) and am trying to access an agent with WTL. (actually if I can get the darn thing to load and say or do something would be great!!) However I am finding very little information about WTL. I do have the Microsoft SDK installed as well as the MsAgent docs and everything else I need for the agent. However the MS documentation (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msagent/paface_2lnp.asp) for programming the Agent appears to be very confusing. When I enter the first block of code (CoCreateInstance) I start getting errors. Basically I'm uncertain as to what goes where. As I understand I need the 'Enable ActiveX Control Hosting' checked. Any chance someone would be kind enough to create an SDI app and show where the code the MSAgent docs illustrate are suppose to go?
Thank You Mike
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |