Ok, here's a stab::: ====begin prototype: output is in curr.dir as "testout.csv". Input obviously "test.csv"@echo off & setlocal>testout.csv echo PT#,DOB,PT Name,Txn Date,Txn Time,Drug Name,Quantityfor /f "skip=4 tokens=1-5,7,9 delims=," %%a in (test.csv) do echo %%a,%%b,%%c,%%d,%%e,%%f,%%gRead more
Ok, here’s a stab: :: ====begin prototype: output is in curr.dir as “testout.csv”. Input obviously “test.csv” @echo off & setlocal >testout.csv echo PT#,DOB,PT Name,Txn Date,Txn Time,Drug Name,Quantity for /f “skip=4 tokens=1-5,7,9 delims=,” %%a in (test.csv) do echo %%a,%%b,%%c,%%d,%%e,%%f,%%g>>testout.csv ::——– end script
:: here is output from your sample: PT#,DOB,PT Name,Txn Date,Txn Time,Drug Name,Quantity “Pt: 111”,01/01/1950,John Doe,10/01/2019,01:00:00 AM,DRUGX,-2 “Pt: 111”,01/01/1950,John Doe,10/01/2019,02:00:00 AM,DRUGX,-1 “Pt: 111”,01/01/1950,John Doe,10/01/2019,03:00:00 AM,DRUGY,-4 “Pt: 222”,02/02/1960,Jane Doe,10/01/2019,04:00:00 AM,DRUGZ,-5
To connect to your router you need to know it's LAN IP address. To find that out, open a command prompt window (ie: Start >> Run >> type cmd and hit Enter) and type the following command:ipconfig /allThe "Default Gateway" address is the LAN IP of your router. Now, open a web browser, typRead more
To connect to your router you need to know it’s LAN IP address. To find that out, open a command prompt window (ie: Start >> Run >> type cmd and hit Enter) and type the following command:
ipconfig /all
The “Default Gateway” address is the LAN IP of your router. Now, open a web browser, type that IP into the URL field and hit enter and you should be prompted for login information. This will be the username/password you configured on the router when you first set it up. Enter that info and you’ll be at the management interface for your router where you can now create your port forward.
It matters not how straight the gate, How charged with punishments the scroll, I am the master of my fate; I am the captain of my soul.
Thank you gentlemen for all your help, wisdom and knowledge. I did not see the recent posts because I was working but I am happy to share that I found the issue, fixed it and currently typing this on my new comp! I started the bench test over again, and after seeing the red light indicator on steadyRead more
Thank you gentlemen for all your help, wisdom and knowledge. I did not see the recent posts because I was working but I am happy to share that I found the issue, fixed it and currently typing this on my new comp!
I started the bench test over again, and after seeing the red light indicator on steady for the processor I removed it and noticed that the pins on one side looked different…they were bent. I had not even thought to check that. Anyway I straightened them out and it worked, problem solved. Everything else passed the bench test and is working fine.
Now, I do plan on replacing the APU and PSU (thank you Fingers for the link) as well but for right now I am content. This was good for someone coming back to working with computers. And I appreciate all the help. OtheHill I will save the link you posted for reference purposes. I did not use the Sapphire Radeon graphics card yet, I’ll have to think about that, and I did not test the HDMI but I will. So far though, everything seems to be working great.
Boot off the DVD, delete ALL partitions, create one or more new ones, format using NTFS (full is better than quick but it will take quite a while), then proceed with the installation.
Boot off the DVD, delete ALL partitions, create one or more new ones, format using NTFS (full is better than quick but it will take quite a while), then proceed with the installation.
I don't think this setting would apply to you if you are running a 32 bit version of Windows. Look at the Google search link for information on that setting.http://www.google.com/search?q=max+...
I don’t think this setting would apply to you if you are running a 32 bit version of Windows. Look at the Google search link for information on that setting.
http://www2.panasonic.com/consumer-...It is specifically made for Panasonic Hardware not for PC/Laptop use..Computing is like life, head in the Clouds !
Good luck. It's hard enough finding service packs for NT 4.0. Can you use English, the packs are more readily available.Windows NT 4.0 Service Pack 6 (standard encryption): http://sdfox7.com/nt40/SP6I386.EXE(or internet search for "sp6i386.exe")Windows NT 4.0 Service Pack 6 (high encryption):http://Read more
Good luck. It’s hard enough finding service packs for NT 4.0. Can you use English, the packs are more readily available.
Well, we could manually hunt down the driver chain through the registry, but that's a pain, modifying the registry runs the risk of "losing" hardware, and since ISO mounting programs employ rootkits, there's no guarantee we'll find the problem. Have you tried a program that lets you copy files fromRead more
Well, we could manually hunt down the driver chain through the registry, but that’s a pain, modifying the registry runs the risk of “losing” hardware, and since ISO mounting programs employ rootkits, there’s no guarantee we’ll find the problem.
Have you tried a program that lets you copy files from ISOs without opening them? I suggest 7-Zip.
Possible solution:Step 1: Click the Windows Start button, and then click the “Computer” icon in the Start menu. The Computer window opens.Step 2: Right-click on the option for your hard drive to display the context menu.Step 3: Click the “Properties” option. The Properties window opens.Step 4: ClickRead more
Possible solution:
Step 1: Click the Windows Start button, and then click the “Computer” icon in the Start menu. The Computer window opens.
Step 2: Right-click on the option for your hard drive to display the context menu.
Step 3: Click the “Properties” option. The Properties window opens.
Step 4: Click the tab labelled “Tools,” and then click “Check Now.” The Disk Utility opens.
Step 5: Check the checkbox next to the “Automatically Fix File System Errors” option.
Step 6: Check the checkbox next to the “Scan for and Attempt Recovery of Bad Sectors” option.
Step 7: Click the “Start” button. The Check Disk utility checks the SATA hard drive for errors and attempts to repair the errors. (if the drive is your boot drive this will only happen at the next boot)
Step 8: Reboot the computer once the utility has finished running. The S.M.A.R.T. error should be clear.
Solved How To Use Command Prompt To Edit CSV File
Ok, here's a stab::: ====begin prototype: output is in curr.dir as "testout.csv". Input obviously "test.csv"@echo off & setlocal>testout.csv echo PT#,DOB,PT Name,Txn Date,Txn Time,Drug Name,Quantityfor /f "skip=4 tokens=1-5,7,9 delims=," %%a in (test.csv) do echo %%a,%%b,%%c,%%d,%%e,%%f,%%gRead more
:: ====begin prototype: output is in curr.dir as “testout.csv”. Input obviously “test.csv”
@echo off & setlocal
>testout.csv echo PT#,DOB,PT Name,Txn Date,Txn Time,Drug Name,Quantity
for /f “skip=4 tokens=1-5,7,9 delims=,” %%a in (test.csv) do echo %%a,%%b,%%c,%%d,%%e,%%f,%%g>>testout.csv
::——– end script
:: here is output from your sample:
PT#,DOB,PT Name,Txn Date,Txn Time,Drug Name,Quantity
“Pt: 111”,01/01/1950,John Doe,10/01/2019,01:00:00 AM,DRUGX,-2
“Pt: 111”,01/01/1950,John Doe,10/01/2019,02:00:00 AM,DRUGX,-1
“Pt: 111”,01/01/1950,John Doe,10/01/2019,03:00:00 AM,DRUGY,-4
“Pt: 222”,02/02/1960,Jane Doe,10/01/2019,04:00:00 AM,DRUGZ,-5
Solved Windows 10 Recycle Bin Desktop Icon Won’t Move To Bottom Row
Sounds like another Win 10 bug to me - maybe some future update will correct it.Always pop back and let us know the outcome - thanks
Always pop back and let us know the outcome – thanks
I Cannot See My Router In My Network Infrastructure
To connect to your router you need to know it's LAN IP address. To find that out, open a command prompt window (ie: Start >> Run >> type cmd and hit Enter) and type the following command:ipconfig /allThe "Default Gateway" address is the LAN IP of your router. Now, open a web browser, typRead more
ipconfig /all
The “Default Gateway” address is the LAN IP of your router. Now, open a web browser, type that IP into the URL field and hit enter and you should be prompted for login information. This will be the username/password you configured on the router when you first set it up. Enter that info and you’ll be at the management interface for your router where you can now create your port forward.
It matters not how straight the gate,
How charged with punishments the scroll,
I am the master of my fate;
I am the captain of my soul.
***William Henley***
Solved Can’t Get a Visual At All With Gigabyte Motherboard
Thank you gentlemen for all your help, wisdom and knowledge. I did not see the recent posts because I was working but I am happy to share that I found the issue, fixed it and currently typing this on my new comp! I started the bench test over again, and after seeing the red light indicator on steadyRead more
I started the bench test over again, and after seeing the red light indicator on steady for the processor I removed it and noticed that the pins on one side looked different…they were bent. I had not even thought to check that. Anyway I straightened them out and it worked, problem solved. Everything else passed the bench test and is working fine.
Now, I do plan on replacing the APU and PSU (thank you Fingers for the link) as well but for right now I am content. This was good for someone coming back to working with computers. And I appreciate all the help. OtheHill I will save the link you posted for reference purposes. I did not use the Sapphire Radeon graphics card yet, I’ll have to think about that, and I did not test the HDMI but I will. So far though, everything seems to be working great.
You guys are the best, thank you!
Windows 7 Install Error: Windows Could Not Configure One
Boot off the DVD, delete ALL partitions, create one or more new ones, format using NTFS (full is better than quick but it will take quite a while), then proceed with the installation.
BIOS Max TOLUD
I don't think this setting would apply to you if you are running a 32 bit version of Windows. Look at the Google search link for information on that setting.http://www.google.com/search?q=max+...
http://www.google.com/search?q=max+…
Drivers For Panasonic Dy Wl10 Wireless
http://www2.panasonic.com/consumer-...It is specifically made for Panasonic Hardware not for PC/Laptop use..Computing is like life, head in the Clouds !
It is specifically made for Panasonic Hardware not for PC/Laptop use..
Computing is like life, head in the Clouds !
Solved Windows NT 4.0 Service Pack 6
Good luck. It's hard enough finding service packs for NT 4.0. Can you use English, the packs are more readily available.Windows NT 4.0 Service Pack 6 (standard encryption): http://sdfox7.com/nt40/SP6I386.EXE(or internet search for "sp6i386.exe")Windows NT 4.0 Service Pack 6 (high encryption):http://Read more
Windows NT 4.0 Service Pack 6 (standard encryption): http://sdfox7.com/nt40/SP6I386.EXE
(or internet search for “sp6i386.exe”)
Windows NT 4.0 Service Pack 6 (high encryption):
http://sdfox7.com/nt40/hiencry/sp6/MSNT128.EXE”
(or internet search for “msnt128.exe”)
iMac G5 1.8GHz PPC, 2GB RAM, 160GB, Mac OS X Leopard 10.5.8, SuperDrive
http://sdfox7.com
ISO Images Keep Unmounting Automatically
Well, we could manually hunt down the driver chain through the registry, but that's a pain, modifying the registry runs the risk of "losing" hardware, and since ISO mounting programs employ rootkits, there's no guarantee we'll find the problem. Have you tried a program that lets you copy files fromRead more
Have you tried a program that lets you copy files from ISOs without opening them? I suggest 7-Zip.
How To Ask Questions The Smart Way
Solved Hard Drive Failure Is Imminent Message
Possible solution:Step 1: Click the Windows Start button, and then click the “Computer” icon in the Start menu. The Computer window opens.Step 2: Right-click on the option for your hard drive to display the context menu.Step 3: Click the “Properties” option. The Properties window opens.Step 4: ClickRead more
Step 1: Click the Windows Start button, and then click the “Computer” icon in the Start menu. The Computer window opens.
Step 2: Right-click on the option for your hard drive to display the context menu.
Step 3: Click the “Properties” option. The Properties window opens.
Step 4: Click the tab labelled “Tools,” and then click “Check Now.” The Disk Utility opens.
Step 5: Check the checkbox next to the “Automatically Fix File System Errors” option.
Step 6: Check the checkbox next to the “Scan for and Attempt Recovery of Bad Sectors” option.
Step 7: Click the “Start” button. The Check Disk utility checks the SATA hard drive for errors and attempts to repair the errors. (if the drive is your boot drive this will only happen at the next boot)
Step 8: Reboot the computer once the utility has finished running. The S.M.A.R.T. error should be clear.