Hi all
New upload at the top.
- Added donkey's exception handler (FlipCase addin).
- Fixed dual monitor / context-menu problems.
- Fixed bugs.
KetilO
New upload at the top.
- Added donkey's exception handler (FlipCase addin).
- Fixed dual monitor / context-menu problems.
- Fixed bugs.
KetilO
hi,
In DLL template I have seen;
#include "Res/DLLStr.rc"
#include "Res/DLLVer.rc"
being inserted into top of the main .asm file. Should be in main .rc file.
Is this something todo with really rad?
After creating template I must modify DLG form to create the Dlg.rc file (write out Dlg.rc after template create?), then goto string table dialog to create DLLStr.rc file + version info (click OK).
Appears two types of #include <Res/file.rc> and #include "Res\file2.rc" exist.
Is there some way to use the ,7 variable in the /OUT:"..\filename.dll" command line option?
Really like the automatic property update :)
Would it be possible to have a global debug path $D variable?
bye
X05
In DLL template I have seen;
#include "Res/DLLStr.rc"
#include "Res/DLLVer.rc"
being inserted into top of the main .asm file. Should be in main .rc file.
Is this something todo with really rad?
After creating template I must modify DLG form to create the Dlg.rc file (write out Dlg.rc after template create?), then goto string table dialog to create DLLStr.rc file + version info (click OK).
Appears two types of #include <Res/file.rc> and #include "Res\file2.rc" exist.
Is there some way to use the ,7 variable in the /OUT:"..\filename.dll" command line option?
Really like the automatic property update :)
Would it be possible to have a global debug path $D variable?
bye
X05
Hi Ketil,
I am getting the same problem as X05, the #include for the RC file is being inserted into the main ASM file.
I am getting the same problem as X05, the #include for the RC file is being inserted into the main ASM file.
Hi X05 / Donkey
When does this happend? When you use a template or when you create one?
ReallyRad updates main rc file.
As a general rule, add everything in the res folder to the template. <Res\OldFormat.rc> "Res/NewFormat.rc"
/OUT: "" and set 7 to 7=..\filename.dll
$D is taken (Addin), but finding another char should not be a problen.
KetilO
In DLL template I have seen;
#include "Res/DLLStr.rc"
#include "Res/DLLVer.rc"
being inserted into top of the main .asm file. Should be in main .rc file.
Is this something todo with really rad?
#include "Res/DLLStr.rc"
#include "Res/DLLVer.rc"
being inserted into top of the main .asm file. Should be in main .rc file.
Is this something todo with really rad?
When does this happend? When you use a template or when you create one?
ReallyRad updates main rc file.
After creating template I must modify DLG form to create the Dlg.rc file (write out Dlg.rc after template create?), then goto string table dialog to create DLLStr.rc file + version info (click OK).
Appears two types of #include <Res/file.rc> and #include "Res\file2.rc" exist.
Appears two types of #include <Res/file.rc> and #include "Res\file2.rc" exist.
As a general rule, add everything in the res folder to the template. <Res\OldFormat.rc> "Res/NewFormat.rc"
Is there some way to use the ,7 variable in the /OUT:"..\filename.dll" command line option?
/OUT: "" and set 7 to 7=..\filename.dll
Would it be possible to have a global debug path $D variable?
$D is taken (Addin), but finding another char should not be a problen.
KetilO
When does this happen? When you use a template or when you create one?
When I have created a new project based on template, then come to compile (Build) it. Didn't see it happen when I selected assemble. I did see it after clicking OK in string table dialog. Suddenly appeared.
thanks for $7 help.
Hi Ketil,
I created a new project using the Dialog Template from GoAsm. When I build the project the version control RC is inserted as follows. This happens every time :
Commented lines are part of my standard templates.
From RAP file :
I created a new project using the Dialog Template from GoAsm. When I build the project the version control RC is inserted as follows. This happens every time :
;######################
; DIALOGAPP
;######################
#include "ksadjlsakjd.Inc"
;#include "\RadASM\GoAsm\inc\debug.a"
#include "Res/ksadjlsakjdVer.rc"
;DBGWIN_DEBUG_ON = 1
;DBGWIN_SHOWONLYERRORS = 1
Commented lines are part of my standard templates.
From RAP file :
[Files]
1=ksadjlsakjd.Asm
2=ksadjlsakjd.Inc
3=ksadjlsakjd.Rc
4=Main.dlg
[MakeFiles]
0=ksadjlsakjd.rap
1=ksadjlsakjd.rc
2=ksadjlsakjd.asm
3=ksadjlsakjd.obj
4=ksadjlsakjd.res
5=ksadjlsakjd.exe
6=ksadjlsakjd.def
7=ksadjlsakjd.dll
8=ksadjlsakjd.txt
9=ksadjlsakjd.lib
10=ksadjlsakjd.mak
11=ksadjlsakjd.hla
12=ksadjlsakjd.ocx
Hi X05 / Donkey
New upload, bug fixed.
KetilO
New upload, bug fixed.
KetilO
Fixed #include in .asm file, but after project created from template I see;
#include <Res\DLLStr.rc>
#include <Res\DLLDlg.rc>
#include <Res\DLLVer.rc>
(correct)
but after RadAsm ask for DLLStr.rc remake, going to String table dialog and clicking OK. Does this
#include <Res\DLLStr.rc>
#include <Res\DLLDlg.rc>
#include <Res\DLLVer.rc>
#include "Res/DLLStr.rc"
I remove "Res/DLLStr.rc" manually and it does not complain again or try add again if I go to String dialog with OK. (on build all)
Noticed font used in "Set Paths" ... buttons is now bold. Bug?
Thanks for $E, sharing project with templates & different debug app paths.
bye
X05
#include <Res\DLLStr.rc>
#include <Res\DLLDlg.rc>
#include <Res\DLLVer.rc>
(correct)
but after RadAsm ask for DLLStr.rc remake, going to String table dialog and clicking OK. Does this
#include <Res\DLLStr.rc>
#include <Res\DLLDlg.rc>
#include <Res\DLLVer.rc>
#include "Res/DLLStr.rc"
I remove "Res/DLLStr.rc" manually and it does not complain again or try add again if I go to String dialog with OK. (on build all)
Noticed font used in "Set Paths" ... buttons is now bold. Bug?
Thanks for $E, sharing project with templates & different debug app paths.
bye
X05
Hi X05
Your template is wrong (missing the file Res\DLLStr.rc). You should create a new template.
KetilO
Your template is wrong (missing the file Res\DLLStr.rc). You should create a new template.
KetilO
Hi Ketil,
When I create a new untitled file, I can't open any other file or project (error message) until I save this new file. (Error Message:can't open file ../untitled)
When I create a new untitled file, I can't open any other file or project (error message) until I save this new file. (Error Message:can't open file ../untitled)
Hi John Kiro
Thanks, will be fixed soon.
KetilO
Thanks, will be fixed soon.
KetilO
Hi all
New upload at the top.
- Made file extention handeling more flexible. Hla users must modify section .
- Fixed bugs.
KetilO
New upload at the top.
- Made file extention handeling more flexible. Hla users must modify section .
- Fixed bugs.
KetilO
Hi KetilO
If I enable hilite active line option, the current line is hilite. After, I turn off this option, the old line still hilite at old position, not disappear.
Best regards
TQN
If I enable hilite active line option, the current line is hilite. After, I turn off this option, the old line still hilite at old position, not disappear.
Best regards
TQN
Hi TQN
Thanks, I will fix it.
KetilO
Thanks, I will fix it.
KetilO
Hi KetilO,
My today's feature requests:
1. Open file dialog:
1.1. When a file is opened as hex, "reopen file" do not work
1.2. Having file filters as defined in ?asm.ini
2. Code properties window:
2.1. One could define a proc in fasm as:
proc foo.bar,var1,var2
actually, properties window takes bar as a variable.
2.2. cannot get fasm's constants, macros and structures working in properties window.
Thanks :alright:
p.s. Please find here ini files for html and pic asm in RadAsm !
My today's feature requests:
1. Open file dialog:
1.1. When a file is opened as hex, "reopen file" do not work
1.2. Having file filters as defined in ?asm.ini
2. Code properties window:
2.1. One could define a proc in fasm as:
proc foo.bar,var1,var2
actually, properties window takes bar as a variable.
2.2. cannot get fasm's constants, macros and structures working in properties window.
Thanks :alright:
p.s. Please find here ini files for html and pic asm in RadAsm !
Hi pelaillo
Thanks for bug report and ini files.
1.1 Fixed
1.2 Been there since hla support. See RadASMini.rtf / Assembler.ini / section
2.1 Fixed
2.2 A bit tricky
KetilO
Thanks for bug report and ini files.
1.1 Fixed
1.2 Been there since hla support. See RadASMini.rtf / Assembler.ini / section
2.1 Fixed
2.2 A bit tricky
;This will not work
struc TESTRECT {
.tleft dd ?
.ttop dd ?
.tright dd ?
.tbottom dd ? }
macro testit name,[arg] {
virtual at 0
name name
sizeof.#name = $ - name
name equ sizeof.#name
end virtual }
;This will work
struc TESTRECT {
.tleft dd ?
.ttop dd ?
.tright dd ?
.tbottom dd ?
}
macro testit name,[arg] {
virtual at 0
name name
sizeof.#name = $ - name
name equ sizeof.#name
end virtual
}
KetilO
Hi all
New upload at the top.
- Fixed bugs.
- Donkey improved the exception handler in FlipCase addin.
KetilO
New upload at the top.
- Fixed bugs.
- Donkey improved the exception handler in FlipCase addin.
KetilO
Hi Ketil,
New debug.lib for GoAsm, with the lessons learned from my tests in exception handling. Basically just an expanded TrapException function.
New debug.lib for GoAsm, with the lessons learned from my tests in exception handling. Basically just an expanded TrapException function.
Hi Ketil,
Just a quick suggestion, if the "Compile RC" option is not set in Project Options, under no circumstances should RadASM compile the RC. The way it is now, if the mod flag is set then it will attempt to compile the RC file. There are times I forget to turn off the Version Control Addin for some no res projects and it goes ahead and creates an RC file and RadASM compiles it and adds it to my project. This is mildly annoying but not a critical thing as I can just ignore the error.
Just a quick suggestion, if the "Compile RC" option is not set in Project Options, under no circumstances should RadASM compile the RC. The way it is now, if the mod flag is set then it will attempt to compile the RC file. There are times I forget to turn off the Version Control Addin for some no res projects and it goes ahead and creates an RC file and RadASM compiles it and adds it to my project. This is mildly annoying but not a critical thing as I can just ignore the error.
Hi Donkey
Yes, the VersionControl addin is a bit eager to do its default things. I will ask WillASM to do some simple changes.
KetilO
Yes, the VersionControl addin is a bit eager to do its default things. I will ask WillASM to do some simple changes.
KetilO