It's not possible with batch.It is possible with other languages inside a console window, but unless you can find a utility that someone has wrote, or a library, it can take LOTS of effort.I have written programs like this(in my own crude way) in c++ with the windows API that come out at ~9000 linesRead more
It’s not possible with batch.
It is possible with other languages inside a console window, but unless you can find a utility that someone has wrote, or a library, it can take LOTS of effort.
I have written programs like this(in my own crude way) in c++ with the windows API that come out at ~9000 lines of code. It could be done more efficiently that this but if you want complex input fields in a console window expect to put in some serious effort if you want to do it yourself.
OK, I'd love to help, but without your actual data - or generic, non-confidential data in the same layout - It's hard for me to follow along with what your code is trying to accomplish.If it's possible for you to upload a "safe" (non-confidential, no personal data) copy of your workbook to zippysharRead more
OK, I’d love to help, but without your actual data – or generic, non-confidential data in the same layout – It’s hard for me to follow along with what your code is trying to accomplish.
If it’s possible for you to upload a “safe” (non-confidential, no personal data) copy of your workbook to zippyshare, then I would have much better idea of what is going on.
The one thing I can mention right off is that this snippet is probably not what you are looking for:
Dim myColArray As Variant
myColArray = Array(22, 19, 20, 18, 31, 28, 41)' include column 22?
For lCol = 0 To UBound(myColArray)
rawData = Sheets(myColArray(i)).Range("A2:AW" & _
myColArray(i).Range("A3446").End(xlUp).Row) ' finding data area
Let’s break that down:
myColArray = Array(22, 19, 20, 18, 31, 28, 41)
defines an array that contains a series of numbers meant to reference specific Columns. 22, 19, etc.
So far, so good.
For lCol = 0 To UBound(myColArray)
loops through the Array elements, such that lCol will equal 0, then, 1 then 2, until it reaches the number of elements in the array.
This is where we run into problems You used myColArray(i). Note the “i”. You have never set “i” equal to anything, so as far as VBA is concerned, it is always going to equal 0. Therefore, myColArray(i) will always equal 22, since that is the first (or “0”) element of the myColArray array. Maybe you meant to use lCol since that is your loop variable, but I don’t think even that will help, because…
You then use myColArray(i) in Sheets(myColArray(i)). Therefore, you are asking VBA to reference Sheet(22). In fact since i will always equal 0, you are always going to reference Sheet(22). I don’t know whether or not you actually have a Sheet(22) in your workbook, but even if you do, I’m pretty sure that that is not what you are trying to reference. I say that because you said you wanted to reference specific columns, not sheets.
Just throwing this out there. Could this be due to a failing PSU?In any case my process would be to replace the power supply with another spare one or one from a lazy PC. A lot of the guys here can guide you on safely checking the voltages on a PSU, but of course you will need the testing equipmentRead more
Just throwing this out there.
Could this be due to a failing PSU?
In any case my process would be to replace the power supply with another spare one or one from a lazy PC.
A lot of the guys here can guide you on safely checking the voltages on a PSU, but of course you will need the testing equipment to do this.
I wouldn't worry about the EPROM in the machine. Unless you yourself have done something, it is in the same condition as the day it was made. EPROMs dont just change their contents for no good reason.Normally to force an alignment you turn the machine on with one or more buttons pressed. Check you mRead more
I wouldn’t worry about the EPROM in the machine. Unless you yourself have done something, it is in the same condition as the day it was made. EPROMs dont just change their contents for no good reason.
Normally to force an alignment you turn the machine on with one or more buttons pressed. Check you manual to see which button(s) this applies to and then check they are not stuck in the pressed position.
Install HWMonitor, let it run while using the computer. Report back all of the temperatures at idle and the maximum numbers. These might help us know where to look next or they might tell us enough right away.To get the drivers for your hardware, you go to the manufacture's website of the component,Read more
Install HWMonitor, let it run while using the computer. Report back all of the temperatures at idle and the maximum numbers. These might help us know where to look next or they might tell us enough right away.
To get the drivers for your hardware, you go to the manufacture’s website of the component, go to Support>Download>Drivers and select the correct driver for that component. The exception is you go to NVidia for your graphics driver. Start with all of your motherboard drivers (all of them), then the video driver, then the rest of them.
I am suspecting a temperature issue, especially if this is your first build. Please verify that you used the correct application of thermal compound (or factory applied compound): http://www.arcticsilver.com/intel_a… Also include a list of all case fans, location in the case, and the orientation of each fan. Please list all components including case (for cooling details and for top or bottom mount power supply since this effects cooling strategies) with makes and model numbers.
You have to be a little bit crazy to keep you from going insane.
Get Steam here: http://store.steampowered.com/about/To install Steam, just double-click the msi file when it's finished downloading (it's only a 1.5MB download).
I think you reversed the numbers - shouldn't it be Z5710? The graphics aren't great for gaming, but there are a LOT of worse graphics choices out there (Intel, for instance). Which graphics does your machine have?http://support.acer.com/acerpanam/M...I don't see how hooking up a PS3 is going to do aRead more
I think you reversed the numbers – shouldn’t it be Z5710? The graphics aren’t great for gaming, but there are a LOT of worse graphics choices out there (Intel, for instance). Which graphics does your machine have?
Solved Can You Make a Form In a Batch File?
It's not possible with batch.It is possible with other languages inside a console window, but unless you can find a utility that someone has wrote, or a library, it can take LOTS of effort.I have written programs like this(in my own crude way) in c++ with the windows API that come out at ~9000 linesRead more
It is possible with other languages inside a console window, but unless you can find a utility that someone has wrote, or a library, it can take LOTS of effort.
I have written programs like this(in my own crude way) in c++ with the windows API that come out at ~9000 lines of code. It could be done more efficiently that this but if you want complex input fields in a console window expect to put in some serious effort if you want to do it yourself.
Check out a couple of the programs here:
http://judago.webs.com/downloads.htm
Solved VBA Macro To Copy Multiple Columns In User Defined Order
OK, I'd love to help, but without your actual data - or generic, non-confidential data in the same layout - It's hard for me to follow along with what your code is trying to accomplish.If it's possible for you to upload a "safe" (non-confidential, no personal data) copy of your workbook to zippysharRead more
If it’s possible for you to upload a “safe” (non-confidential, no personal data) copy of your workbook to zippyshare, then I would have much better idea of what is going on.
The one thing I can mention right off is that this snippet is probably not what you are looking for:
Dim myColArray As Variant myColArray = Array(22, 19, 20, 18, 31, 28, 41)' include column 22? For lCol = 0 To UBound(myColArray) rawData = Sheets(myColArray(i)).Range("A2:AW" & _ myColArray(i).Range("A3446").End(xlUp).Row) ' finding data areaLet’s break that down:
defines an array that contains a series of numbers meant to reference specific Columns. 22, 19, etc.
So far, so good.
loops through the Array elements, such that lCol will equal 0, then, 1 then 2, until it reaches the number of elements in the array.
Still, so far, so good.
rawData = Sheets(myColArray(i)).Range("A2:AW" & _ myColArray(i).Range("A3446").End(xlUp).Row)This is where we run into problems You used myColArray(i). Note the “i”. You have never set “i” equal to anything, so as far as VBA is concerned, it is always going to equal 0. Therefore, myColArray(i) will always equal 22, since that is the first (or “0”) element of the myColArray array. Maybe you meant to use lCol since that is your loop variable, but I don’t think even that will help, because…
You then use myColArray(i) in Sheets(myColArray(i)). Therefore, you are asking VBA to reference Sheet(22). In fact since i will always equal 0, you are always going to reference Sheet(22). I don’t know whether or not you actually have a Sheet(22) in your workbook, but even if you do, I’m pretty sure that that is not what you are trying to reference. I say that because you said you wanted to reference specific columns, not sheets.
Click Here Before Posting Data or VBA Code —> How To Post Data or Code.
Solved Rear USB Ports Suddenly Stop Working
Just throwing this out there. Could this be due to a failing PSU?In any case my process would be to replace the power supply with another spare one or one from a lazy PC. A lot of the guys here can guide you on safely checking the voltages on a PSU, but of course you will need the testing equipmentRead more
Could this be due to a failing PSU?
In any case my process would be to replace the power supply with another spare one or one from a lazy PC.
A lot of the guys here can guide you on safely checking the voltages on a PSU, but of course you will need the testing equipment to do this.
3TB Hard Drive On Windows 7
When installing Windows 7, choose Custom and Format and there you will be able to choose GPT and than format to NTFS and then just install.
When installing Windows 7, choose Custom and Format and there you will be able to choose GPT and than format to NTFS and then just install.
See lessHow To Reset Da Deskjet 1050
I wouldn't worry about the EPROM in the machine. Unless you yourself have done something, it is in the same condition as the day it was made. EPROMs dont just change their contents for no good reason.Normally to force an alignment you turn the machine on with one or more buttons pressed. Check you mRead more
Normally to force an alignment you turn the machine on with one or more buttons pressed. Check you manual to see which button(s) this applies to and then check they are not stuck in the pressed position.
Stuart
My Computer Keeps Freezing And Stuttering.
Install HWMonitor, let it run while using the computer. Report back all of the temperatures at idle and the maximum numbers. These might help us know where to look next or they might tell us enough right away.To get the drivers for your hardware, you go to the manufacture's website of the component,Read more
To get the drivers for your hardware, you go to the manufacture’s website of the component, go to Support>Download>Drivers and select the correct driver for that component. The exception is you go to NVidia for your graphics driver. Start with all of your motherboard drivers (all of them), then the video driver, then the rest of them.
I am suspecting a temperature issue, especially if this is your first build. Please verify that you used the correct application of thermal compound (or factory applied compound):
http://www.arcticsilver.com/intel_a…
Also include a list of all case fans, location in the case, and the orientation of each fan.
Please list all components including case (for cooling details and for top or bottom mount power supply since this effects cooling strategies) with makes and model numbers.
You have to be a little bit crazy to keep you from going insane.
Panasonic Problems F6 Error Code Appears And Shuts Down
F6 = "Power supply problem" according to what I've read concerning Panasonic hi-fi/audio equipment
How To Play Darksiders Without Steam?
Get Steam here: http://store.steampowered.com/about/To install Steam, just double-click the msi file when it's finished downloading (it's only a 1.5MB download).
To install Steam, just double-click the msi file when it’s finished downloading (it’s only a 1.5MB download).
Solved Win32/NetFilter.A Found By Eset
"Several antivirus vendors have mis-classified our network adapter as malware and we are working with them to remove this false positive"Good news.
Good news.
Can You Connect A PS3 To An All In One PC
I think you reversed the numbers - shouldn't it be Z5710? The graphics aren't great for gaming, but there are a LOT of worse graphics choices out there (Intel, for instance). Which graphics does your machine have?http://support.acer.com/acerpanam/M...I don't see how hooking up a PS3 is going to do aRead more
http://support.acer.com/acerpanam/M…
I don’t see how hooking up a PS3 is going to do anything?