Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

cc2-dev-l · CC2 Developers list

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 212
  • Founded: Feb 6, 2000
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 814 - 844 of 961   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
814 Peter Olsson
peter@... Send Email
Jul 3, 2007
5:59 pm
... If the files are compressed it will be tricky to modify them from the outside. If they are in uncompressed mode it is possible. Are you using sheets? If...
815 L. Lee Saunders
saul012000 Send Email
Jul 3, 2007
10:01 pm
At one time Mike Riddle had a DLL (or was it a LIB) that was the core database. You could read files, append files in the code and then save the changed...
816 Peter Olsson
peter@... Send Email
Jul 4, 2007
7:23 am
... It should. Do you still have that external toolkit? I remember that tool, but I can't find a copy of it anymore. Peter...
817 markt_1964 Send Email Feb 25, 2008
6:55 pm
In trying to parse the contents of a CC3 symbol file, it seems that all the symbols are composed of type #4 entries, which is a custom entry. Is there any...
818 Peter Olsson
peter@... Send Email
Feb 25, 2008
7:24 pm
Do you mean bitmap entities? They should be inside symbol definitions... Here is the header: #define XT_PICTR 1 typedef struct _tag_resinfo { BOOL Present; ...
819 eric.johannsen Send Email Jan 17, 2010
9:06 pm
Hi all, I would like to find a way to list (e.g. in a text file) each structure, the name of the CD3 house/symbol it was created from, and it's position,...
820 Ralf Schemmann
uthoroc Send Email
Jan 18, 2010
8:12 am
Hello Eric, do a LIST command on all the structures in the map. Click on the little T in the top left of the window that comes up. You can save the LIST info...
821 eric.johannsen Send Email Jan 21, 2010
4:04 am
Ralf, Thanks, that will do in a pinch. I did not see a way to cut and paste the text from the LIST command and this should work. Anyone: I would like to...
822 L. Lee Saunders
saul012000 Send Email
Jan 21, 2010
4:13 am
Eric, Hmmm ... I've been coding with Visual Studio 2008 sp1 since it was released and I've been able to compile for both CC2 & CC3. If you want to, you can...
824 Larry
saul012000 Send Email
Mar 15, 2010
2:21 pm
Everyone, Sorry about the spam - I've now changed my hotmail password, so I hope that it will not happen again. L. Lee...
825 Larry
saul012000 Send Email
Jul 10, 2010
10:15 pm
On the wikiNotes project I've got: Error 0000036B1 - Not sure if that is an internal error number to the application, or a windows error. I've got multiple...
826 Mike Riddle
mriddle9 Send Email
Jul 11, 2010
7:00 pm
A clean Win/7 install does not have the VC runtime dll's installed. You need to provide vcredist_x86.exe and run it on the clean install box to put these in...
827 L. Lee Saunders
saul012000 Send Email
Jul 11, 2010
10:59 pm
Hi Mike, Sorry I was not completely truthfull. I guess it is not a completely clean install. It has CC3 and CC3-Update 8. Update 8 installed the VC++ 2008...
828 L. Lee Saunders
saul012000 Send Email
Jul 12, 2010
12:45 am
OK, I built the install package on a simple little C++/cli dll and told it to include dependancies. It pulled in 2 files: c:\program files\common files\merge...
829 L. Lee Saunders
saul012000 Send Email
Jul 14, 2010
3:39 am
OK, sometimes I'm an idiot but who knew that compiling in debug mode was the issue. Thanks for pointing out the licensing issue Peter. That got me to...
830 Simon Rogers
simonjrogers Send Email
Jul 14, 2010
3:23 pm
As you know, I'd like to see new features for your existing commands - ATTC and ESC spring to mind. Simon _____ From: cc2-dev-l@yahoogroups.com...
831 L. Lee Saunders
saul012000 Send Email
Jul 14, 2010
3:51 pm
Really? I saw on one forum post on the problems with CMB and another with the REDN, but I cannot remember any with ATTC or ESC. So, what's up? Whacha need...
832 Larry
saul012000 Send Email
Jul 15, 2010
7:51 pm
Peter, My memory is telling me that awhile back you wrote some code to simplify adding popup context menus. Is that true, of is age just gettting to me. Lee...
833 Peter Olsson
peter@... Send Email
Jul 16, 2010
1:30 pm
I looked through the archive and the best post i is probably this one http://groups.yahoo.com/group/cc2-dev-l/message/455 Before you click on it, make a guess...
834 L. Lee Saunders
saul012000 Send Email
Jul 16, 2010
2:03 pm
Eight years ago? (Thu Apr 25, 2002 7:19 pm) Wow, have we been doing this THAT long? (And I still don’t know a pointer from a hole in the ground – sad) Lee...
835 Larry
saul012000 Send Email
Jul 19, 2010
7:10 pm
Everyone, Say you wanted to write a command that would work in a macro as a branching command - similar to IFDEF or IFERR. Say you want a IFNUM where if the...
836 Mike Riddle
mriddle9 Send Email
Jul 20, 2010
4:41 am
Here is the code that ends the IFERR command, showing taking the branch or not: WasErr: test IfErrFlag,1 ;was an error flagged? jz abort ; ...
837 L. Lee Saunders
saul012000 Send Email
Jul 20, 2010
10:42 am
Thanks Mike. You wouldn't happen to have an example in C, would you? I have not written assembly in 15+ years, and that was risc assembly at that. L. Lee...
838 L. Lee Saunders
saul012000 Send Email
Jul 20, 2010
3:15 pm
Mike, In walking through your code - in an attempt to understand it - I noticed you are making an API Service call (SVC) to the API command GoToLabel. Yet in...
839 Peter Olsson
peter@... Send Email
Jul 20, 2010
5:50 pm
I dont think GoToLabel is exported. The easiest workaround is to write a TESTNUM command and then use IFERR to do the jump in the macro. (The code below is...
840 L. Lee Saunders
saul012000 Send Email
Jul 20, 2010
7:38 pm
Thanks Peter, I was beginning to think this may not be possible. So, it boils down to: Calling my command first, then if I’ve set an error, the Macro IFERR...
841 L. Lee Saunders
saul012000 Send Email
Jul 20, 2010
8:45 pm
Am I missing a reference? unresolved external symbol "unsigned long * __stdcall GetErrFlagAdr(void)" L. Lee Saunders "It was only a partial solution, of...
842 Peter Olsson
peter@... Send Email
Jul 21, 2010
7:21 am
You need to provide the prototype (which I think you have): DWORD * XPCALL GetErrFlagAdr(void); Are you using a .cpp-file? In that case you need to add extern...
843 L. Lee Saunders
saul012000 Send Email
Jul 21, 2010
2:04 pm
Extern “C”. I thought about that. I also thought that I may have to write a glue routine so I got sidetracked on that …. So, thanks Peter, I can now...
844 Joachim
jmbravo2 Send Email
Aug 10, 2010
1:51 pm
Hi, I'm trying to create a command that breaks a line to insert some drawing and I need the coordinates of the selection point. I wrote a dynamic cursor that...
Messages 814 - 844 of 961   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help