www.digitalmars.com         C & C++   DMDScript  

digitalmars.D - windows graphical debugger?

reply "Lloyd Dupont" <ld NewsAccount.galador.net> writes:
sorry if my quesion is dummy.
I have tested D a while ago, but didn't use it.
now I wonder about using it in a comming project.

is there any kind of IDE & graphical debugger for D? on windows?
Sep 28 2004
parent reply "Lynn Allan" <l_d_allan adelphia.net> writes:
"Lloyd Dupont" <ld NewsAccount.galador.net> wrote in message
news:cjbjb9$28ep$1 digitaldaemon.com...
 sorry if my quesion is dummy.
 I have tested D a while ago, but didn't use it.
 now I wonder about using it in a comming project.

 is there any kind of IDE & graphical debugger for D? on windows?
Here are links to previous threads with info about using the Visual Studio ide (Thx AJ): http://www.digitalmars.com/d/archives/digitalmars/D/1608.html http://www.digitalmars.com/d/archives/digitalmars/D/5566.html Here are downloads with Visual Studio 98 project files: Console: http://berbible.sourceforge.net/misc/TestConsole.zip Windows Win32 gui api: http://berbible.sourceforge.net/misc/MiniCalcWinGui.zip
Sep 28 2004
parent reply "Lloyd Dupont" <ld NewsAccount.galador.net> writes:
Hey, Lynn, that's GREAT !!!
I just have to create a makefile project to compile with VS too :)
now I've to see if it could do syntax highlighting.. mhh.....

"Lynn Allan" <l_d_allan adelphia.net> wrote in message 
news:cjc759$2mii$1 digitaldaemon.com...
 "Lloyd Dupont" <ld NewsAccount.galador.net> wrote in message
 news:cjbjb9$28ep$1 digitaldaemon.com...
 sorry if my quesion is dummy.
 I have tested D a while ago, but didn't use it.
 now I wonder about using it in a comming project.

 is there any kind of IDE & graphical debugger for D? on windows?
Here are links to previous threads with info about using the Visual Studio ide (Thx AJ): http://www.digitalmars.com/d/archives/digitalmars/D/1608.html http://www.digitalmars.com/d/archives/digitalmars/D/5566.html Here are downloads with Visual Studio 98 project files: Console: http://berbible.sourceforge.net/misc/TestConsole.zip Windows Win32 gui api: http://berbible.sourceforge.net/misc/MiniCalcWinGui.zip
Sep 28 2004
next sibling parent Regan Heath <regan netwin.co.nz> writes:
On Wed, 29 Sep 2004 08:55:45 +1000, Lloyd Dupont 
<ld NewsAccount.galador.net> wrote:

 Hey, Lynn, that's GREAT !!!
 I just have to create a makefile project to compile with VS too :)
 now I've to see if it could do syntax highlighting.. mhh.....
http://www.prowiki.org/wiki4d/wiki.cgi?EditorSupport#MicrosoftVisualC60 has a link to: http://www.highprogrammer.com/alan/windev/visualstudio.html which describes how to add your own keywords, which then get highlighted, it's a bit of a hack but it works.
 "Lynn Allan" <l_d_allan adelphia.net> wrote in message
 news:cjc759$2mii$1 digitaldaemon.com...
 "Lloyd Dupont" <ld NewsAccount.galador.net> wrote in message
 news:cjbjb9$28ep$1 digitaldaemon.com...
 sorry if my quesion is dummy.
 I have tested D a while ago, but didn't use it.
 now I wonder about using it in a comming project.

 is there any kind of IDE & graphical debugger for D? on windows?
Here are links to previous threads with info about using the Visual Studio ide (Thx AJ): http://www.digitalmars.com/d/archives/digitalmars/D/1608.html http://www.digitalmars.com/d/archives/digitalmars/D/5566.html Here are downloads with Visual Studio 98 project files: Console: http://berbible.sourceforge.net/misc/TestConsole.zip Windows Win32 gui api: http://berbible.sourceforge.net/misc/MiniCalcWinGui.zip
-- Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/
Sep 28 2004
prev sibling parent reply Arcane Jill <Arcane_member pathlink.com> writes:
In article <cjcq5i$30tu$1 digitaldaemon.com>, Lloyd Dupont says...
Hey, Lynn, that's GREAT !!!
I just have to create a makefile project to compile with VS too :)
now I've to see if it could do syntax highlighting.. mhh.....
I've heard rumors that some people have got VS to do syntax highlighting. Not sure how though. But that's not the only alternative. I use TextPad (www.textpad.com), which is perfectly able to do syntax highlighting for D. Others use jEdit, which also can do this. I've never found switching between VS and TextPad to be too much of a problem, but in case that bothers you, I'm hoping someone will reply here with the VS-syntax-highlighting instructions, just for completeness. Arcane Jill
Sep 28 2004
next sibling parent reply Stewart Gordon <Stewart_member pathlink.com> writes:
In article <cjdmh5$fkq$1 digitaldaemon.com>, Arcane Jill says...
<snip>
 But that's not the only alternative.  I use TextPad 
 (www.textpad.com), which is perfectly able to do syntax 
 highlighting for D.
<snip> Perfectly able? How did you get nested comments and WYSIWYG strings to work? Stewart.
Sep 29 2004
parent reply Arcane Jill <Arcane_member pathlink.com> writes:
In article <cje3ut$pgm$1 digitaldaemon.com>, Stewart Gordon says...
In article <cjdmh5$fkq$1 digitaldaemon.com>, Arcane Jill says...
<snip>
 But that's not the only alternative.  I use TextPad 
 (www.textpad.com), which is perfectly able to do syntax 
 highlighting for D.
<snip> Perfectly able? How did you get nested comments and WYSIWYG strings to work?
They don't. I just don't use them. Jill PS. Of course, C has always had nested comments. They look like this: #if 0 ... #endif but I have yet to encounter any text editor which can comment-color them.
Sep 29 2004
parent "Lloyd Dupont" <ld NewsAccount.galador.net> writes:
 PS. Of course, C has always had nested comments. They look like this:

 #if 0
    ...
 #endif

 but I have yet to encounter any text editor which can comment-color them.
VS ?
Sep 29 2004
prev sibling parent reply Sean Kelly <sean f4.ca> writes:
Arcane Jill wrote:
 
 But that's not the only alternative. I use TextPad (www.textpad.com), which is
 perfectly able to do syntax highlighting for D. Others use jEdit, which also
can
 do this.
I've got syntax hilighting working for UltraEdit if anyone is interested. Nothing special, but I'm not sure the D Wiki has this. Sean
Sep 29 2004
next sibling parent J C Calvarese <jcc7 cox.net> writes:
Sean Kelly wrote:
 Arcane Jill wrote:
 
 But that's not the only alternative. I use TextPad (www.textpad.com), 
 which is
 perfectly able to do syntax highlighting for D. Others use jEdit, 
 which also can
 do this.
I've got syntax hilighting working for UltraEdit if anyone is interested. Nothing special, but I'm not sure the D Wiki has this.
It doesn't: http://www.prowiki.org/wiki4d/wiki.cgi?EditorSupport You can add it yourself. Or if you post the file, I'll add it for you.
 
 
 Sean
-- Justin (a/k/a jcc7) http://jcc_7.tripod.com/d/
Sep 29 2004
prev sibling parent Jussi Jumppanen <Jussi_member pathlink.com> writes:
In article <cjeln2$15k2$2 digitaldaemon.com>, Sean Kelly says...

 Arcane Jill wrote:
 
 But that's not the only alternative. I use TextPad (www.textpad.com), 
 which is perfectly able to do syntax highlighting for D. Others use 
 jEdit, which also can do this.
I've got syntax hilighting working for UltraEdit if anyone is interested. Nothing special, but I'm not sure the D Wiki has this.
Zeus for Windows also has support for D syntax highlighting: http://www.zeusedit.com and the Zeus class browser also supports the D language. Jussi Jumppanen
Sep 30 2004