Help with Neo2 + 4x512MB HyperX Memory

I am having trouble getting correct timings to work with the Kingston HyperX memory on the MSI K8N Neo2 board.  My system is in my sig. I have an AMD64 3200 Venice so I read that I should be able to get top performance with my memory.  At first I couldn't get the memory speed above 166MHz.  I knew I could over clock and get the memory speed up but as my sig says I am using 3 of my SATA ports right now so I can't overclock until I can get rid of one the drives because of the lack of speed locks on SATA1 and 2.  So I went and downloaded the latest BIOS (I was on 1.8 and I installed 1.B).  After installing that bios my memory speed went up to 200mhz.  I went into the cell menu and set the timings to 2-3-2-6-2 and my system appears stable (aka, doesn't hang or crash during boot... havn't done stress tests yet).  However, I want to to 1T timing instead of 2T. 
When I was using the 1.8 bios and tried to set the timing to 1T the computer would just beep on boot and I would have to reset the CMOS in order to get a display again.  With the 1.B bios I can set it to 1T but I get BSOD's during windows boot.  The two BSODs I keep getting are "IRQ_NOT_LESS_OR_EQUAL" and "PFN_LIST_CORRUPT" with the 1T memory timing.  Like I said, on 2T with 2-3-2-6 it appears to work fine without extensive testing but I read that 2T vs 1T is like a 30% performance hit.  I tried some of the timings I could dig up on these forums, like 2.5-3-3-6 but to no avail.
Any insight on how I can get the timing to 1T?
Thanks

syntax53,
If you are looking to overclock some PC-4000 Options are:
mushkin eXtreme Performance 2GB (2 x 1GB) 184-Pin DDR SDRAM Unbuffered DDR 500 (PC 4000) Dual Channel Kit System Memory $290
mushkin eXtreme Performance 2GB (2 x 1GB) 184-Pin DDR SDRAM Unbuffered DDR 500 (PC 4000) Dual Channel Kit System Memory $215 after MIR
OCZ Platinum Edition 2GB (2 x 1GB) 184-Pin DDR SDRAM Unbuffered DDR 500 (PC 4000) Dual Channel Kit System Memory $200 after MIR
Take Care,
Richard

Similar Messages

  • Can anyone help with an out of memory error on CS2?

    Hello,
    I have been battling with an out of memory error on a dell laptop running 2gb of ram. I have had no prior issues with this laptop running CS2 until last week when I started getting the out of memory errors. I have seen several articles about this occuring on later versions of illustrator. Just prior to this issue appearing I had to delete and rebuild the main user profile on the computer due to it consistently logging into a temporary account.
    Once the new profile was established and all user documents and profile settings were transferred back into it, this problem started showing up. The error occurs when clicking on files listed as Illustrator files, and when opening the illustrator suite. Once I click on the out of memory error it still continues to load illustrator. The files are located on a server and not on the remote computer. I have tried to copy the files to the local hard drive with the same result when I try to open them. I also tried to change the extension to .pdf and got no further. I tried to open a file and recreate the work and all I got was the black outline of the fonts. none of the other artwork appeared. once rebuilt, when trying to save, It gives the out of memory error and does not save the file.
    Illustrator was installed on another dell laptop, same model, etc and works fine. no problem accessing network files. I just attempted to use Illustrator from the admin profile on the machine in question and it works fine and lightening fast. Just not from the new rebuilt profile. I have tried to uninstall and reinstall the software. it has not helped. could there be stray configuration settings that we transfered over to the new profile that should not have been?
    Any insights will be helpful.
    Thank You,
    Brad Yeutter

    Here are some steps that could help you:
    http://kb2.adobe.com/cps/320/320782.html
    http://kb2.adobe.com/cps/401/kb401053.html
    I hope this helps!

  • Help with inline processing for Memory Optimization

    Hello all.  I have an embedded PXI system who's sole purpose is to gather digital data.  I've been tasked to see just how much data we can gather on our PXI-8106 Real-Time controller before we run out of our 2GB memory.
    The digital data is being captured by a PXI FGPA card and being DMA'd up to the Real-Time process running on the controller.  The storage for the data on the controller uses a functional global that is pre-allocated before the test begins to maintain determinism and prevent jitter.  Each 32-bit digital word that the FGPA captures has a 32-bit word-counter and a 32-bit timestamp attached to it prior to being sent up through the DMA channel.   Once the test is complete, the large "compressed data" array is then de-interlaced into three seperate arrays (word count, data, timetag) and wrapped up in a cluster; this is where I see a problem.  After I reformat the compressed data to its 'cluster of arrays', I have now doubled the amount of allocated memory when I really don't need the 'compressed data' array any longer.  I was hoping somebody could offer me some help on how I can inline this conversion prior to storing the data such that only the final format of the data is left in memory, cutting my memory needs in half and thus doubling the amount of data I can gather.  We are stuck with using LabVIEW 8.2 so I don't think we have any access to some fancy memory deallocation VI's that i've read about.
    Here is the functional global used to store the "compressed data" that we get back everytime we do a DMA Read.  This functional global has three methods: clear data, add data, and read data.
    Here is the data conversion VI that converts the compressed data into its final form; ready to be TCP'd up to the host computer.  This VI is passed the "CD array" from the "Read Data" case of the functional global above.
    Thanks in advanced for your help.

    SiegeX wrote:
    Ravens Fan wrote:
    Do you really need a cluster of 3 arrays as your end result data structure.  Why not just go with the 3 arrays?
    Rather than a cluster of 3 arrays, why not make it a 1-D array of the cluster?
    The final output decision of a cluster of 3 arrays was made long ago (3 years IIRC).  Immedaitly after the de-interlacing, this cluster isflattened to a string and then sent to the host PC via TCP/IP.  Wrapping the arrays in a cluster made this very easy to do.  At this point, this format is unfortunately set in stone for all intents and purposes as it would require a rewrite of some upstream API's in released code that expects it.  To go down this path, I would have to prove that changing the output format would be the only way to fix this memory copy problem.  I don't believe this is the case, is it?
    Why not do all of your deinterlacing inside your functional global variable to create whatever final data structure makes the most sense.  That way you only maintain one copy of the final large data structure rather than a copy of the original, a copy of the final, and copies of the intermediate data structures?
    On the way home I was thinking about possible solutions and that is one I thought of and wrote down to test tomorrow.  Just to be sure we are on the same page I was thinking on altering the "Read Data" case by tapping off the compressed data wire to the de-interlacing VI and then using a cluster indicator as output from the SubVI.  I'm hoping this would prevent the double copy.  
    If not, my other idea was to de-interlace at the very beginning of the functional global, before it even enters the case structure.  I would have to maintain 3 seperate arrays, each 1/3 the size of the current compressed data array and then in the "read data" case I would simply wrap up the 3 arrays in a cluster.  
    I hope one of these two ideas does the trick, otherwise I'm at a loss on how to do this and still keep a cluster of arrays as the output data structure.
    That may help along with taking the next steps of putting the logic that converts and transmits the cluster in that state playing "Chase the dots" as you go.
    Another approach is to convert the AE over to use the final cluster format and take advantage of the in-place operators (were they available in 8.2?, I think).
    Have fun,
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Need Help with 266 (tray type) Memory upgrade

    Greetings All:
    I have obtained my first Mac: an iMac 266 (the CD tray load type). I have replaced the hard drive and am now working on the RAM memory. I see the the "upper" slot. I'm guessing the "lower" slot is under the circuit board that fills the metal cage with the processer chip (?). If this is true any suggestions on how to remove it? I removed the one screw on the outside corner but removing the cage is very stubborn so I'm holding off continuing until I get some advice on this.
    Thanks.
    imac 266   Mac OS 9.1.x  

    check out http://www.djonmac.com/ it should hopefully be helpful. I remember it being a bit stubborn when I did my ram upgrade.

  • Please help with NEO2-LS

    This may have been said before a million time but I just got a NEO2-LS and when I put it into Ultra-Turbo mode it just puts itself back to slow after rebooting. Does anyone have any suggestions to fix this like setting the memmory settings different or something. Also I don't know if I can explain this right, but when I go under the settings for the RAM, if I enable the SPD it locks out the settings, but if I disable that then I can change the settings. My question is when you modify the settings and then enable SPD again the settings cannot be changed but they are still the ones I set so when enabling SPD do the CAS settings listed not matter will the board just clock the RAM at whatever it wants to? Also some people say they use 1.9 BIOS on thier 865PE but I thought the 1.9 was for the 875P. Is there a 1.9 BIOS for the 865PE somewhere? Thanks for any help you guys can give me.

    Quote
    Originally posted by Mr. Moleman
    Thanks guys. I am running 2 sticks of Corsair Dual DDR400 Pro and Corsair says it can run at 2-3-3-7 so is that good enough to run Ultra Turbo? No I have not tried setting the memmory to 2.7v but I will definately try that when I get home.  I am not sure what BIOS I have but do you guys recommend getting the latest version anyway? Also have you guys used live update with no problems? I have not tried it yet just wondering if you guys were able to run it ok.
    Normally it's RAM that can run at 2-2-2-5-8 that allows Ultra-Turbo settings.

  • Need help with Dual Channel DDR memory

    Hi, I have a msi nvidia MOBO, K7N2G and it supports dual channel memory. The manual says to put one in 1 and one in 3. I did then it wont start. System gives the old beep.........beep.........beep. I have to patriot 512 ddr sticks. They work fine in slot 1 and 2 but not in "dual channel" mode. Do i have to do anything else in order to get these to work?? Any assistance would be greatly appreciated. Thanks

    hi
    try slot 2&3.
    what brand of memory?
    what speed is the memory working in?
    there is no option to disable or enable dual channel.
    just put them in slot 1&3 or 2&3.
    bye

  • Help with transferring document to memory stick

    Okay here is the deal my 10 year old has a macbook laptop -  and when we plug in the usb jump drive it does not show up like mine does on the iMac where I can drag the document over.
    How does she SAVE (documents and pictures)  on a flash drive please I am needing the step by step to explain to her
    Thanks for anyone who can help

    If the document's in the Finder, drag it there, setting the Finder to display the drive as described above if needed.
    If it hasn't yet been saved, choose Save from within the application, follow the instructions above if needed, choose the computer in the menu at the top of the dialog box, and double-click the drive.
    This also applies for videos.
    (109768)

  • Kingston HyperX Memory & K8N Neo2 Platinum

    Hello.
    I have a MSI K8N Neo2 Platinum board (BIOS 1.3) with AMD 64 3000+ 939 CPU.
    I am trying to run this with 2 Kingston HyperX PC3200 512MB memory (KHX3200ULK2/1G).  This is the latest "Ultra-low Latency" memory from Kingston.
    When I run this memory with NO overclocking at 2-2-2-5-1 at 2.7 volts (standard setting for this memory) with a single module, I get NO errors.  When I try both chips in dual-channel mode, I get errors (on MemTest86).
    (I also get errors if I run this memory on "Auto" setting in BIOS)
    I CAN run 2 sticks of Crucial PC3200 512MB (regular, not Ballistix)  at standard settings in dual-channel with no errors.
    Has anyone got this memory to work on this board in dual-channel mode?  If so, how? At what timings?
    Any help would be greatly appreciated.

    Quote
    Originally posted by Xak
    Quote
    Originally posted by GlennVidia
    In the meantime...
    Try loosening up the memory timings first, start with 2-2-2-8 thru 2-2-2-11
    Then if no luck try 2-3-2-6 thru 10 or 11 you may even have to resort to 2.5 3-3-X
    You should be able to at least find a sweeter spot.
    You may even have to go to 2T and non aggressive settings.
    Why would the timings work when in single channel mode, but not in dual channel, when the Crucial memory works fine in dual channel at the same timings used in single channel?
    On a side note, the Kingston pair was purchased together in a matched set, while the 2 Crucial sticks (actually the memory from my system) were bought seperately over a month apart.
    The timings that RZT tried are the exact ones Kingston specifies for that model, there should be NO reason whatsoever they wouldn't work at those timings, dual or single channel.
    Please correct me if I am wrong...
    First of all, I said "in the meantime," meaning until someone else came up with a better answer. If I have problems with memory, regardless of what the manufacturer says' I hunt for a sweetspot (if there is one).
    Quote
    Why would the timings work when in single channel mode, but not in dual channel, when the Crucial memory works fine in dual channel at the same timings used in single channel?
    That's like trying to compare apples to oranges. Two different manufacturers and likely different chips onboard, not to mention likely different PCB design.
    What I suspect is either one stick is further out of spec than the other and they are not a properly matched pair. Kingston has a history with the nForce chipset which leaves little to be desired.
    That is why you might see very similar systems, and one works with the same ram, and the other doesn't. It's called parametric differences. In short, one stick my be at the upper end of the spec and the other stick may be at the lower end. Then, throw in the motherboard, and the CPU, (now with the onboard memory controller) while we're at it, and you have a real touchy situation. There is little room for lower quality. That is why matched pairs exist. Doesn't mean it's mandatory, however.
    Quote
    On a side note, the Kingston pair was purchased together in a matched set, while the 2 Crucial sticks (actually the memory from my system) were bought seperately over a month apart.
    I take it you know this person, otherwise this is not making sense or you are a pretty slick hijacker
    Matched set can still be flawed, I get em from the best once in a while. It may not be the RAM at all. Only way to tell for sure is to try it on another identical system or try another pair that passes muster in another identical system. All this speculating is useless unless you've exhausted all possibilities.
    Quote
    The timings that RZT tried are the exact ones Kingston specifies for that model, there should be NO reason whatsoever they wouldn't work at those timings, dual or single channel.
    Please correct me if I am wrong...
    Not wrong, maybe a little overoptimistic. Some situations warrant different measures. It's not that black and white, nor is it written in stone. At this point it only indicates there is indeed a problem, where it lies, would be better off using a dartboard to guess at this point.

  • [865PE/G Neo2 Series] DDR Memory with 865PE Neo2-PFS Platinum

    SYSTEM SPEC: 400w PSU, Pentium 4 3.2ghz 800mhz FSB (HT), Matrox Parhelia 128 8x AGP card, MSI Neo2 PFS Platinum motherboard.
    Hi there. Im looking for some serious help with my computer. I have a MSI 865PE Neo2-PFS Platinum mobo and have been using 512mb DDR RAM with it- the ram is PC2700 (333mhz), non-ECC, ubuffered, non-parity, 184 pin. Now, I have just purchased a new DIMM. This one is
    1gb PC3200 (400mhz), non-ECC, Unbuffered, non-parity, HIGH DENSITY- DUAL IN LINE, 128 x 64, 184 pin
    It doesnt work and my system refuses to boot up. I checked out the specs of the 865PE Neo2-PFS Platinum, and it says in the table that you can only use 400mhz DDR RAM with an 800mhz FSB processor (which I have). It says it supports 400mhz RAM, "DUAL CHANNEL", non-ECC, unbuffered memory, but no mention of "HIGH DENSITY" or "DUAL IN LINE". Is there a difference between "DUAL CHANNEL" and "DUAL IN-LINE". Also, does anyone know what the difference is between 128 x 4 and 128 x 64, they are both 1gb? SOMEONE PLEASE HELP!!! I have seen some RAM from the same dealer which is not "HIGH DENSITY" and has the 128 x 4 configuration, and is still a 1gb module. Is that safe to buy? What RAM do I need (in detail) for my motherboard. Thanks!

    Always useful with a complete systemspec.including PSU and biosversion, so please make one.
    Can´t see anything wrong with the basic RAM specification - it also matches the MoBo basic specifications:
    - Supports four unbuffered DIMM of 2.5V DDR SDRAM.
    - Supports up to 4GB memory size without ECC.
    - Supports Dual channel DDR266/333/400/433/466/500/533 MHz and up.
    Have you tried removing the old RAM and booting only with the new 1GB stick alone ?
    Using mixed RAM, sometimes works in "Single mode" (see mobo manual), but is not recommended.
    Running Dual-channel ( 2x512 or 1024x2 ) is preferable and gives best performance, but then you need two identical sticks.
    You may also need to increase RAM voltage some in bios (example 2.7v) to achieve best stability.
    If you have some RAM compability issues with 1GB sticks - 2x512 RAM stick would be safer and give better performance, unless your aiming for more then 2GB in total.
    You can also read about the RAM testreport here;
    http://www.msi.com.tw/html/products/mainboard/testreport_pdf/6728v2.0/memory.pdf
    About "Dual In line Memory Module" - I think it´s the long version for older DIMM description.
    Just like "Double Data Rate" is the long version for DDR RAM.
    DDR means Double Data Rate RAM (in opposition to the SDRAM or Single Data Rate). DDR RAM bends the transfer rate for clock cycle. It can go quicker because it executes 2 instructions for cycle of clock of the RAM instead of an only instruction like it is the case of the SDR.

  • Server goes out of memory when annotating TIFF File. Help with Tiled Images

    I am new to JAI and have a problem with the system going out of memory
    Objective:
    1)Load up a TIFF file (each approx 5- 8 MB when compressed with CCITT.6 compression)
    2)Annotate image (consider it as a simple drawString with the Graphics2D object of the RenderedImage)
    3)Send it to the servlet outputStream
    Problem:
    Server goes out of memory when 5 threads try to access it concurrently
    Runtime conditions:
    VM param set to -Xmx1024m
    Observation
    Writing the files takes a lot of time when compared to reading the files
    Some more information
    1)I need to do the annotating at a pre-defined specific positions on the images(ex: in the first quadrant, or may be in the second quadrant).
    2)I know that using the TiledImage class its possible to load up a portion of the image and process it.
    Things I need help with:
    I do not know how to send the whole file back to servlet output stream after annotating a tile of the image.
    If write the tiled image back to a file, or to the outputstream, it gives me only the portion of the tile I read in and watermarked, not the whole image file
    I have attached the code I use when I load up the whole image
    Could somebody please help with the TiledImage solution?
    Thx
    public void annotateFile(File file, String wText, OutputStream out, AnnotationParameter param) throws Throwable {
    ImageReader imgReader = null;
    ImageWriter imgWriter = null;
    TiledImage in_image = null, out_image = null;
    IIOMetadata metadata = null;
    ImageOutputStream ios = null;
    try {
    Iterator readIter = ImageIO.getImageReadersBySuffix("tif");
    imgReader = (ImageReader) readIter.next();
    imgReader.setInput(ImageIO.createImageInputStream(file));
    metadata = imgReader.getImageMetadata(0);
    in_image = new TiledImage(JAI.create("fileload", file.getPath()), true);
    System.out.println("Image Read!");
    Annotater annotater = new Annotater(in_image);
    out_image = annotater.annotate(wText, param);
    Iterator writeIter = ImageIO.getImageWritersBySuffix("tif");
    if (writeIter.hasNext()) {
    imgWriter = (ImageWriter) writeIter.next();
    ios = ImageIO.createImageOutputStream(out);
    imgWriter.setOutput(ios);
    ImageWriteParam iwparam = imgWriter.getDefaultWriteParam();
    if (iwparam instanceof TIFFImageWriteParam) {
    iwparam.setCompressionMode(ImageWriteParam.MODE_EXPLICIT);
    TIFFDirectory dir = (TIFFDirectory) out_image.getProperty("tiff_directory");
    double compressionParam = dir.getFieldAsDouble(BaselineTIFFTagSet.TAG_COMPRESSION);
    setTIFFCompression(iwparam, (int) compressionParam);
    else {
    iwparam.setCompressionMode(ImageWriteParam.MODE_COPY_FROM_METADATA);
    System.out.println("Trying to write Image ....");
    imgWriter.write(null, new IIOImage(out_image, null, metadata), iwparam);
    System.out.println("Image written....");
    finally {
    if (imgWriter != null)
    imgWriter.dispose();
    if (imgReader != null)
    imgReader.dispose();
    if (ios != null) {
    ios.flush();
    ios.close();
    }

    user8684061 wrote:
    U are right, SGA is too large for my server.
    I guess oracle set SGA automaticlly while i choose default installion , but ,why SGA would be so big? Is oracle not smart enough ?Default database configuration is going to reserve 40% of physical memory for SGA for an instance, which you as a user can always change. I don't see anything wrong with that to say Oracle is not smart.
    If i don't disincrease SGA, but increase max-shm-memory, would it work?This needs support from the CPU architecture (32 bit or 64 bit) and the kernel as well. Read more about the huge pages.

  • My Macbook 4,1 came with 1 GB of memory. Only 512MB shows up in the activity monitor. I just upgraded the memory to 4 GB. Although 2GB shows up in DIMM0 and DIMM1 it still only says I have 512MB of memory. Can someone help?

    My Macbook 4,1 came with 1 GB of memory. Only 512MB shows up in the activity monitor. I just upgraded the memory to 4 GB. Although 2GB shows up in DIMM0 and DIMM1 it still only says I have 512MB of memory. Can someone help?

    So when you go to  > About This Mac - How it should say how much ram there. Click on More Info - And click on Memory - What is in those fields?

  • Help with error:"ora-27101 shared memory realm does not exist"

    Hello friends of the forum:
    I would like to help me with a question imortante I am very new to this aspect of oracle:
    And install Oracle 11g on win "view" and followed the steps in the installation of l at the start page www.oracle.com funcionava all fine, but after a month of any change:
    The database does not start qe and get an error "ora-27101 shared memory realm does not exist".
    At first and solved momentarily reboot oracle service ...... but after a while does not work but I can not conextar to leave the base because this errror ......
    The database is a lapto instalao .... and I have 100gb of free space and 4 gb of memory do not understand why this happens .....
    I have to do so you can have acces oracle based ...
    I can help with this problem .... thanks ....
    I like to see that show me with pictures as I am new in this aspect of oracle .... and want to learn it .... thank you very much

    Hello friend..
    The error you are getting *"ORA-27101: shared memory realm does not exist"* may be coz you are trying to connect to your database which is already shutdown not as sysdba user but as some other user, becoz of which you are getting this error. It sometimes happen that the service of the database is already started but when you try to connect to a shutdown database as users other then sys even having the DBA priviledges you cannot connect to database.
    Try to connect as SYS user hope your problem will be resolved.
    Deepak Sharma

  • You cannot embed this FLV file because it consumes too much memory. Could sb help with this problem?

    You cannot embed this FLV file because it consumes too much memory. Could sb help with this problem?

    The error is pretty concise. Do you know how to re-encode the video smaller?

  • New to Oracle - could really use help with memory configuration

    I'm new to Oracle and am assuming the support role on a system that is using Oracle 8.1.7 as the database server and need help with memory configuration.
    The server is being used with FileNet and we're having issues while trying to purge logs (purge never completes) and the disk drive activity LED is on almost solid. My guess is is that it's not using enough/doesn't have enough memory therefore constantly reading off the disk and going too slow to finish the purge between nightly backups in which the database service is stopped.
    The server is running on Windows 2000 Server SP4, has 1G of RAM and is dual-Xeon processor.
    Any help or starting point references would be greatly appreciated.

    Hi ...
    You can use a StatsPack for guess the best distribution memory with your DB needs.
    See metalink Note:228913.1
    Regards

  • Help with a memory problem

    Sorry to post such a vague message, but I'm keen to find anyone who may be experiencing something similar to me.
    I have an database application that queries Oracle for web server log records, processes the data to generate visits to the web site, and then inserts all this data into a clickstream data model. Pretty straightforward stuff really.
    However, the application chews its way through a lot of data and the memory footprint of the jvm soon grows to 500MB (the PC has 4GB of RAM). Watching Task Manager, up til this point the Oracle database and java.exe each take it in turn to have cpu. But then something happens. Either:
    - the application is fine but the memory grows to several GB until the jvm crashes with an out of memory error
    Or:
    - the memory does not get any higher but the application then grinds to a halt and processes data at a fraction the speed it did before
    I am at a loss to work this out. By it nature the application creates and throws away a lot of objects (does an awful lot of GNU regex matching along the way) and I'm wondering if the jvm memory management just can't keep up.
    Anyone seen anything similar? I could do with advice!

    I tried the hprof option built into the jvm (JDK 1.4 by the way). Unfortunately it added such a big overhead that the application literally took all afternoon to start up. It normally takes about 20 minutes. I couldn't wait this long so had to give up. I did try on a smaller database and it just showed a shed load of GNU regex match objects and DOM activity. Nothing unusual though. I suspect I will have to try again with the main database.
    Anyone know of a profiler that doesn't introduce a big overhead?
    Cheers.

Maybe you are looking for

  • Logical system name has been changed for this system

    Hi gurus, I am fasing problem in BI7 system. we created a new client in the system & want to set it for BI development. System Response The transaction is canceled. Procedure Change the name of the logical system (table T000) for client  back to BID5

  • Passing XML from Java to PL/SQL using CLOBs?

    Hi. Here at the University at Buffalo, we're trying to develop an architecture where departments can send XML transactions to the business offices over HTTP. Since we don't have much Java expertise on staff, the boss has decided that we should use PL

  • Is it Possible to Change the Checkbox format

    I'm designing a form for my business and I'm using the "Checkbox" style. I don't mind it as an on screen representation of a checkbox but the gradient fill is unprofessional, affected and unclear as a check box on a printed form (I was hoping it woul

  • The picture icon is not available on my iCloud account

    My phone is set up for photo streaming and the photo folders on my phone list iCloud but when I log into iCloud.com there is not a photo icon for me to click on and manage.

  • Regular Expressions - replace inner group

    I'm trying to do the following: 1. Given the following string: Truth, like tumors, require a cut to be removed. 2. Grab the whole sentence and the following: like tumors 3. Replace "like tumors" with "like posion" and add one line to the sentence lik