Home     Contact Us    
Main Board Job Seeker's Board Job Wanted Board Resume Bank Company Board Word Help Medquist New MTs Classifieds Offshore Concerns VR/Speech Recognition Tech Help Coding/Medical Billing
Gab Board Politics Comedy Stop Health Issues
ADVERTISEMENT




Serving Over 20,000 US Medical Transcriptionists

Thanks. I think I have it fixed now. I will print your instructions in case I have another -sm

Posted By: Anon on 2009-05-06
In Reply to: Oh for heaven's sake...if she knew how to... - Just Me

one of those days in the future which I am sure I will!!!  Thanks again. 


Complete Discussion Below: marks the location of current message within thread

The messages you are viewing are archived/old.
To view latest messages and participate in discussions, select the boards given in left menu


Other related messages found in our database

You can print a list in the print dialog box. sm
You'll find the option in the print what section. You can probably find a macro that lists them all in a document with a web search. Otherwise, you can only print them.
I wouldn't use lower case. I'd use upper case. Don't worry about it. nm
x
I might have fixed it....
After I was able to get the links to show up again, I then saved the page in "Favorites" (deleted my old link that was there) and now when I click on it from my favorites, the links are continuing to show up on the left side/blue area - so far. LOL. We will see if this lasts now. :D
I really think it is fixed! sm
I tried voting for Chris on Tuesday night and I could NOT get through at all! I honestly believe that they did not want to send Katherine home because that has the potential of losing the male audience! How many guys sit around and want to watch 3 guys sing? I truly, in my heart and soul, think the entire thing is bogus. Although, he is really and truly talented and I think he will definitely be selling records in the near future, which I will gladly buy!!!!! JMO HE SHOULD HAVE WON IT ALL!!!!
Thank you so much... I fixed it.

It's Fixed Now!
Thanks for notifying.

MTStars Support Team.
Thanks we fixed it.
It was on my kids computer; not mine.  My daughter was playing a game, and the letter keys wouldn't work.  It's a Logitech Cordless (cheapo) and I downloaded software from the site, and then my son pulled the plug on the optical eye, plugged it back in, and it now works!  Thanks....  Everyone!!!! 
OE problem fixed!

Just wanted to let you know that I just did a restore (a quick 10 minute fix) and my OE works fine again! Apparently I had some corrupted files. I was very hesitant on trying this in fear of files I might lose (particularly work ones) but everything appears fine so far.


I am just So upset that I wasted SO many hours  trying to fix this!


Here's how I fixed that...not to say it will work for you.
I work as an IC for a large service. I went through the misery for about two weeks after getting a new doctor who was either too lazy or too clueless to give the demographic information needed. I swear that I spent as much or more time looking up old reports if the dictation was for a followup, etc., as I did typing the darn report. I said forget this. Every time he left out the SS#, MR# number, DOB, or did not spell a name, I used my highlighter on the tool bar and typed in "not given". It took him about one week of getting reports back to his office where one of the office staff had to look the info. up or give the report to doctor to fill in missing information. I made him as irritated as he made me. About one week later, and to this day, he very rarely misses any pertinent info. I ran this through the MTSO before I highlighted, and explained to her that when I ran my own service, there is no time or tolerance for doctors who fail to give pertinent information on an important medical record. Any MTSO who pressures you otherwise to waste your precious time on this is not worth working for! Good luck to you!
If not identified, it will never be fixed!
I don't want to crucify them for making an error.  I want the error to be known, noted, and corrected in future editions! I also want to be aware of any other known errors in this publication so I will not bilindly follow the book and make the errors they are providing, considering I have PAID for their PROFESSIONAL guidance!!   Is that unreasonable?
Fixed wireless.
Has anybody had any experience with this. We have a company providing this close by. We only have dial-up and satellite has such bad reviews. I am trying to research any possibility.
Fixed wireless
I looked into this in IL when I lived for a short time in a rural area -- VERY expensive and if you rent, its a hole and mounting "a permanent structure" -- also, you are locked into a contract with that as well and not everyone has radio towers available or in the area -- frankly, the newer cards are a better alternative.
Hey, got it figured and fixed!
I went to the Nuance/Dictaphone web site and looked at their information base and lo and behold, there was the problem and solution. Apparently it's common with Windows XP or 2000 and they recommend a particular file download, DPVoicer1132.exe. I did that and ran it and after rebooting, problem fixed!

Thought maybe an update might help someone doing a search on here in the future.
I FIXED IT... see link...
http://office.microsoft.com/en-us/word/HA101055371033.aspx#1 I followed these instructions, and wahlah!!! :)

I will print your suggestion as well. I watched a demo on Word earlier and it is so "full" (for lack of a better word). I am so impressed with this edition!!

Thanks to all!!
The problem is fixed.
Don't forget to push control+F5 to update your computer cache.

In case of any further problems with page view, email us at webmaster@mtstars.com with:

- URL/Address of the page

- Your browser information & version

- Operating System

- and Screen Resolution details.

Thanks,
MTStars Support Team.

macro - fixed
between windows & mac, something got squashed in the file name reference. Let's see if it pastes cleanly now.

Make sure you create a text file c:
eplacetext.txt and put the entries in the format specified

findthis|replacewiththis
teh|the
mjsmithx|Michael J. Smith, MD,
HIPPA|HIPAA
etc....

Note - if you want to change the file name or location, change the corresponding OPEN statement in the macro below. Also, if you want to change the delimiter character from the hardcoded (single pipe) value to something else, change the delimchar line below and the text file accordingly.

You can insert this into a module in your normal document template -- or in a specific document or template if you don't want it in Normal -- post here if you need more details

This will run through every entry in the text file and make the corresponding replacement in the target document.


Sub replacemulti()

Dim TextRaw, FindText, ReplaceText As String

Dim delim As Integer

Dim delimchar As String


delimchar = "|"                 'Must be a single character for this version.

Open "c:
eplacetext.txt" For Input As #1    ' Open the find/replace source file.

Do While Not EOF(1)             'Loop until end of file   
Line Input #1, TextRaw      'Read file, one line at a time
   
delim = InStr(1, TextRaw, delimchar, 0) 'Get the position of the delimiter

 FindText = Left(TextRaw, delim - 1) 'FindText = text to left of delimiter
ReplaceText = Mid(TextRaw, delim + 1, Len(TextRaw))  'ReplaceText = text to right of delimiter
'Do the replacement

Selection.Find.ClearFormatting

    Selection.Find.Replacement.ClearFormatting

    With Selection.Find 
.Text = FindText
.Replacement.Text = ReplaceText

.Forward = True
       
.Wrap = wdFindContinue

        .Format = False

        .MatchCase = True

        .MatchWholeWord = True

        .MatchWildcards = False

        .MatchSoundsLike = False

        .MatchAllWordForms = False

    End With

    Selection.Find.Execute Replace:=wdReplaceAll
Loop

Close #1    ' Close file.

End Sub

Thanks all. I got it fixed but have no idea how. Think it had to do with my keyboard though! nm
nm
Fixed wireless works well
If you're talking about tower wireless (like a radiowave wireless type), as long as you have it set up to receive the signal well (requires high enough antenna)then you should have a nice, clean connection.

problem with mail fixed
This morning when we tried to download our messages, nothing downloaded. We tried our WebMail function, and got a "Unidentified Server Error". So we thought attglobal.net was temporarily down. Waited till 10 am, and still the same. We call AttGlobal support, and they got things back. Sorry for the inconvenience.
I just got fixed wireless broadband
And I love it! No lag like satellites. I thought I'd never get broadband since I'm a mile from the nearest house but this is a very nice connection.
Obviously it is not fixed if Norton keeps detecing it...

mine keeps detecting it as well.  It will stop for a couple of days and then start in again.


I would like to know what the "glitch" is exactly...


No, had that fixed a long time ago!

No CAD for me, will buy my own CABG. 


At an old job we could return work we did not want, but then they fixed their platform so you could
so it is probably only a matter of time before all companies do that, smart thing to do but yes it does cut into your paycheck if you get a horrible run of bad ESLs.
never mind, his smart wife fixed it.

I fixed it. Some days I really get tired of making them look
x
Has Spellex fixed all those weird entries yet? (sm)
Doesn't DocQScribe use their word list? I remember going crazy trying to delete all the Brit and Ozzie terms. Um, hello, I work for American docs who get peeved when 'color' is spelled 'colour.'
I'm using a fixed wireless broadband connection
And so far, so good. The tower is just across the cow field, though. I haven't had any cutting in and out and I feel like a kid with a new toy since I'm able to watch You Tube, etc. now. My provider (SEIdata) came and did a site survey before installing it first and told me I had an excellent signal. They put a small box on my roof and ran cable to my office. I plug into an Ethernet modem and I can WIFI it with a router if I want to, too.

I've heard mixed reviews on the "cards," but I would recommend fixed wireless if you have a provider that does a site survey and installation.


Oh, good! Maybe they fixed the problem. I'm going to check right now. Thanks!
:)
Oops... well sort of fixed! Geez...
I am learning as I go, so forgive me. I was able to add the normal.dot BUT autotext doesn't pop up when typing as it did with 2003. I obviously need to learn A LOT more :(
No, not zipped. I was missing a Codec file - Fixed now! Thanks anyway! nm
x
I'd get the riding mower fixed pronto, granted - sm
push mowing 3 acres is probably great exercise, but it must be a bit time consuming. I used to cut 1.3 acres and it would take about 60-90 minutes on a riding mower, and that is with a house and pool in the way; can't imagine how long it takes to push mow 3 acres.
Thanks y'all. Changed hot keys and that fixed the problem. nm
nm
mine stopped doing that weeks ago. I believe the glitch is fixed. NM
x
Auto backup has to be fixed through the call-in system

Go under keypad menu, and then fix the auto backup space or through the Transcriptionist ID settings on the setup. Also, the dictation system should have a separate code/key for larger rewind to hit.


 


Hope that helps!


Yup, mine did that a few years ago. New battery fixed it right up. Be sure to write down your setti
x
My "techies" come to the house and most of the time get it fixed here. They built the computer
:}
Bkea1985 - Did you get your chipmunk problem fixed with Express Scribe? sm

If not, did you see my message below about trying a different Wavplayer, such as Bytescribe or any other wavplayer.  You can usually download a trial (know you can with Bytescribe) and see how that particular voice file sounds with that.  


Thank you for the instructions. I will try that! nm
x
I saw instructions for doing this yourself on
You sure don't need to pay to convert!
Instructions
While in Word document, type FEV1 with the subscript. Then hightlight, do Alt+T to bring up Tools, select autocorrect.  Screen will come up, type in FEV1 in the Replace section, click the Formatted Text button, click Add.  It should save it with the subscript.
sm for instructions

Go to My Computer, click Tools, Folder Options, click File Types tab.


Scroll down list and select WAV.  In the lower part of the window where it says Opens with, click the Change button.  In the new window, scroll down and select Scribe, then click OK.  Then OK to close the other window.


LX 219 instructions

How To Set Up & Use The LX-219 IMPORTANT—PLEASE READ CAREFULLY!!!! • IF THE FOOT PEDAL IS NOT ALREADY CONNECTED---Remove the Front Cover of the terminal block that has the cables attached, and Plug the Foot Pedal into the black connector. • Plug the cable marked “Trans Station” into the jack on back of the LX-219 labeled, “To Recorder” • Plug the cable marked “Power Supply” into the jack on the Power Supply. (some power supplies have two jacks, use the left one and ignore the other) • Plug the cable marked “UDLT” into the jack on the back of the LX-547 VTI, marked UDLT. • Plug the Telephone line cord into the jack on back of LX-547 VTI marked “TELCO”. Plug the other end of this cable into your telephone jack. • Plug Power Supply into wall outlet. • The VTI will now undergo a self test; all of the lights will come on momentarily and begin blinking. After a few seconds all lights will go out EXCEPT the TA and VD lights. These will remain on. (the letters identifying these lights are read from top to bottom, not left to right) You are now ready to Program your Station to call into the Lanier system and begin transcribing. Go to the Programming Instructions, and with the help of your Supervisor or Client, program the Codes and Telephone numbers that they want you to use, into the LX-219. AFTER programming is complete, use the following instructions to begin using the Transcriber. Copyright 2003 by: Ranzy Luster Plug Headset into jack on back of LX-219 labeled “Headset” • Put Headset on. • Press the ON/OFF key. You will hear a dial tone. • Press the Key that you have programmed your Telephone access number into • After the system answers and “Digital Connect” appears, the screen will display; “Enter Trans ID” • Press the key that you have programmed your ID number into. • The display will show “ENT - request Job” • Press the ENTER key. The small screen will display; “Searching for job”. After a few seconds, a job number will appear in the small display screen and all of the information will now appear on the LARGE DISPLAY screen. • Place your foot on the LISTEN part of the Foot Pedal and press down. • Press REVERSE to back up when needed, and if you have backed up quite a distance and don’t want to listen through the dictation again, Press FORWARD to get back to the point you were at when you started reversing. A Loud tone will be heard when you reach this point! • As you are transcribing and reach the end of a job, you will hear a steady TONE. At this point, remove your foot from the Listen Pedal and press the Finishing Touch Button. This will Complete that job and bring up the Next available Job. (the Finishing Touch Button is the one which you have programmed with the Code 1370) • When finished transcribing for the day, Press the button you have programmed with the Code 1371. This code completes the job and prevents others from coming to your station. • In Addition to the two codes listed above, the Telephone number of the system you are calling into should be programmed into a Key and your ID number should be in one. ALL OTHER FUNCTIONS YOUR EMPLOYER/CLIENT WANTS YOU TO USE WILL BE EXPLAINED BY THEM!


Copyright 2003 by Ranzy Luster
www.TranscribeSolutions.com


Instructions -sm

This is for WORD 2003. Just follow the steps EXACTLY as outlined. 


1.  Open a plain word document and type your ??.  (A couple of sets with one set per line).


2.  Go to Tools>Macro>Record New Macro


3.  Name your Macro (type it in the box)  Mine is named "jump". (Make sure in the second box, it says NORMAL template or normal.dot.)


4.  Click the Keyboard button - choose the keyboad combination you want to use (I use ALT+J) Click Assign.


5.  You should see a little button floating around that looks like a tape somewhere on your screen.  Don't touch it yet.  Instead, Go to Edit>Find and type in ??.


6.  Hit find next (you should be seeing your ?? being highlighted while you are doing this.) Click the cancel button on that same window. 


7.  Go to Tools>Macro>stop recording. 


Type in a few ?? sets and hit your shortcut combination to make sure it works. 


If you have trouble with this, feel free to e-mail.  I make these all the time.  :)


 


Instructions
If you set a tap stop where you want the DOB on the same line you should be okay.  In sounds like there are spaces there instead.  Set your tab point by clicking on the ruler at the top.    Retype your patient title then tab and put the DOB title.  If this does not work, feel free to email.  I am workin all day.  :)
there are instructions
in the system on how to do this.
I'm sure most of you get instructions like this

from your employers:


The BOS is to be followed, except when it differs from this company's style guide and except when also not in conflict with the site specific information of the client. 


So, you check the site notes from the hospital and if the question is not answered there, you check your company's style guide, and then if there is still no answer you do what the BOS says to do. 


Does this make any sense?  Making us consult three different references for the answer to one simple question?  Do the MTs in Indiastan have to do this?  Or do they get a pass because they work so cheap? 


I am laughing so hard, I swear I fixed my 'pot' (for potassium) expander, and it came out pota
xx
NSS: Here's the macro instructions

In a Word document, type a few words, like a diagnosis on a line.  Leave your cursor at the end of the line.


Click TOOLS, MACRO, RECORD NEW


A window called Record Macro pops up.  I suggest you put a name in the "Macro Name" field.  (Hint:  No spaces allowed in the name.)


Click KEYBOARD to assign it to the keyboard.


A window called "Customize Keyboard" pops up.  In the field "press new shortcut key", press what you want as the shortcut.  (Hint:  I use ALT+N so I can remember it for numbering.)  That key combination you type should populate that field.


Click ASSIGN, CLOSE


You will be back at your document (your cursor still at the end of the line of text you typed) and there will be a small window called "Stop" that has a solid square (the STOP RECORDING button) and another symbol (PAUSE RECORDING button).  At this point, every single thing you do is being recorded!


Press the HOME key (to put cursor at the beginning of the line).


Press the 1. keys and space twice (or however many times you space between your number/period for your account).


Press the END key (to return cursor to end of the line of text).


Press the RETURN key.


Press the 2. keys and space twice (or, again, however many spaces you put between your number/period for your account).


Click the STOP RECORDING button in the little window.


Your macro is complete.  I suggest you try it out.  Skip down a few lines and type a line of text.  At the end of that text, hit your macro shortcut.  It should run (you won't see it do anything but make the changes you recorded) and automatically go to the beginning of the line, number it as 1 with a period and spaces, and return at the end of your text and start the number 2, period, spaces and be ready for more text!!  Email me if you have problems. 


NOTE:  This will only work if the text you type is only 1 line long.  If it word-wraps to a second line, this will not work...you will just have to manually return to the beginning of the line and number. 


More ideas for building macros, at least the ones I use most: 


-- macro to increase the zoom to a certain percentage (I use 110%)


-- macro to scroll down 1 frame or page


-- macro to copy the preoperative diagnosis heading, the 1-line text below it, return a line blank and type postoperative diagnosis heading and paste (for when the dictation is for "postoperative diagnosis same").  I use ALT+; for postoperative diagnosis and ALT+' for postop diagnosis


-- macro to copy the physician names/credentials in the signature block and search for the header for SURGEON and fill it in, putting it in all capitals, etc.


Just a handful of ideas I use.  Hope these help.


I think you can d/l instructions from their web site. NM
.
Instructions inside (sm)
You have to right arrow on HISTORY when you are completely finished your report (it's in the demographic screen).  This will sign this report to you, it adds your initials and that way no one can go in and get credit for it.  Hope this helps.
Can't you post the instructions here instead
xx