Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by ron

  1. R

    CMDebug, dark theme, current line

    Awesome, confirmed, thanks !!!
  2. R

    CMDebug, dark theme, current line

    See my first post, same as yours and x64. But I left out a very important detail. Hit F5 - start the debugging session. While not debugging I have the same current-line background you have. So to be precise, it's the current line background while stepping through a debugging session.
  3. R

    CMDebug, dark theme, current line

    Well, I was wondering if I'd misspoke. I'm technically using bdebugger in TCMD and I just assumed the core components would be similar to CMDebug. So yeah, checking my title bar against yours, I'm using IDE 26 too.
  4. R

    CMDebug, dark theme, current line

    Maybe something out of your control, but the 'current' line background color using either dark theme is not ideal. v 26.01.38 Is there a setting I'm overlooking?
  5. R

    TCC IDE Tabs - inactive tabs hard to see

    I'm slow to update as I get older :-) But just wanted to say that Office 2016 Black on v23 works nicely in regards to my issues posted above. Thanks!!!
  6. R

    TCC-RT sendmail

    Meaning I should do what I did - take the configuration pieces needed for my batch file and create an INI with those settings just for TCC-RT? Or is there some other method using TCC I've not found yet? Thanks everyone else for the examples - I'd not thought about using OPTION - actually never...
  7. R

    TCC-RT sendmail

    So, using SENDMAIL with TCC-RT. I got it working by creating a .ini with pieces from my Take Command .ini file. If later someone wants to use the batch file but not my SMTP credentials, how is that done? Without TCMD, there is no way to configure SMTP if all you have is TCC-RT - true?
  8. R

    TCC-RT with TCMD installed

    Thanks for the tip. I had to end up manually creating a .ini file in the RT ProgramData folder in order for sendmail to work. Didn't want to bother updating all the instances in the batch file. Had an old .ini in appdata\local and that's the one it found after I first installed RT. Got rid...
  9. R

    TCC-RT with TCMD installed

    maybe not a conflict but an interaction - TCC-RT honors tcstart and tcexit if they exist. So, looking into a way to prevent that to emulate how my batch files will run on a system with ONLY TCC-RT. So, TCC-RT only "runs" batch files, there's no interactive console? That makes sense, just...
  10. R

    TCC-RT with TCMD installed

    Thanks!
  11. R

    TCC-RT with TCMD installed

    Does installing TCC-RT on a machine that already contains TCMD (same release) pose any potential problems/concerns? Or is TCC-RT pretty much stand-alone (binaries/config/registry) and can be used as such to emulate running my btm on another machine that would only have TCC-RT.
  12. R

    Portable install with v21 - why did it not work?

    Took me forever to get back around to it, but finally had success with this. Installed directly to the thumb drive. The previously activated .key file didn't work so I reactivated. The new .key file works fine. I don't have to do this often so just spinning up a VM to do it is simple. I...
  13. R

    Regex using ^

    Habit. Got to remember and keep things tighter. Thanks!
  14. R

    regular expression -- caseless

    Thanks for that tip, something I was looking for and works nicely. But, Is that PERL? Looks like Onigmo.
  15. R

    Regex using ^

    Trying to figure out why I'm not hitting INCLUDE below. If I remove the ^, it works. But I want to make sure the line starts with /TestLine. The Regex analyzer indicates a match. @echo off setlocal set xdata=/TestLine this is a test line iff %@regex[^/TestLine, %xdata] == 1 then echo...
Back
Top