Find n replace word macro - need HELP Programming Software Development by ahhiamdying4u … any way that I will just entry them in AutoCorrect & access the AutoCorrect List with macro?[/COLOR][/B] I found this… syntax "AutoCorrect.ReplaceTextFromSpellingChecker = True". But don't know how to use … CSS formatting Digital Media UI / UX Design by jtok …]#div{[/CODE] and hit "return", Visual studio would autocorrect to: [CODE] #div {[/CODE] as well as a number of… How do I run my Java program in windows and use what is typed as input Programming Software Development by CF019 … purpose for doing this is something along the lines of autocorrect, I want it to be able to scan what is… The name 'collBlock' does not exist in the current context Programming Software Development by reactivated … is partial, don't count the '{}', they are correct (VS2010 autocorrect won't allow even the most indifferent mistyping) [CODE]public… Screen Saver Programming Software Development by Zssffssz Ok sorry, extra typos today using an international keyboard with autocorrect on. Ok I Want to mâle a text bases … Re: Drawing toolbar causes MS Office to freeze Hardware and Software macOS by Tawn … some preferences (and, for versions earlier than Word 2008, the AutoCorrect settings). If this doesn't help, quit Word again, trash… Re: Issue when open Ms Access file Hardware and Software Microsoft Windows by Lightninghawk … new database: Create a new database. Turn off the Name AutoCorrect check boxes: In Access 2010: File | Options | Current Database. In… Re: Ruin the above poster's wish. Community Center Geeks' Lounge by Warrens80 I wish i went to a different school. Stupid autocorrect. Re: Reply via email Community Center Meta DaniWeb by Dani Incidentally, what I'm really loving about this is the ease in which I can reply via my email client. I much prefer replying this way to a web-based Javascript widget, and of course there's both spelling and grammar autocorrect here, aside from the more robust feeling overall. :) Re: Random Facts Community Center Geeks' Lounge by Warrens80 Stupid autocorrect cats have 230 bones I their body and that is from Facebook Re: Feeling Good About Yourself Community Center Geeks' Lounge by diafol > It's blackmiau, as in "meow" :P Gah! Autocorrect on iPad - apologies. >So your vision of Clint Eastwood resumes to a little girl in a big car chasing brutes, hihihi Heh heh. Re: So what's next? Community Center by Stefce Ops here we go with something just poped up in my head :D Since google "hates" forums but loves grammar why not make a grammar corrector in the ask question input field? Something like Grammarly but private that will belong to daniweb. Also i have a question why the input field in the question doesn't autocorrect the word? Re: CSS formatting Digital Media UI / UX Design by djzia div is a tag. you cant use it as id. remove # sign. ya visual studio automatically formats it so its easier to read. whats your exact problem? Re: CSS formatting Digital Media UI / UX Design by jtok sorry, that was poorly written it should be "#divid" Really my problem is just one of ease of use. It used to do that, now it doesn't. It's not really a big deal if not, just so much more convenient. Re: CSS formatting Digital Media UI / UX Design by jtok This problem resolved itself once I updated VS2010. Re: CSS formatting Digital Media UI / UX Design by BrianHelp [code] #div{ ... } [/code] If you want to apply a style to all div tags you should use this code instead. [code] div { ... } [/code] dots are the styles you want to apply. If you typed the new code VS 2010 should auto format for you as long as there are no other mistakes in the css or other areas. Re: How do I run my Java program in windows and use what is typed as input Programming Software Development by apines Hmmm, you want a key logger with the option to mess around with someone's computer... Re: How do I run my Java program in windows and use what is typed as input Programming Software Development by peter_budo 1. You cannot write such program in Java, one thing is to catch thing from frame build with Java another from applications installed on system 2. With do not like to see any malicious apps or requests for such applications on this forum. So you better forget it 3. Thread closed Re: The name 'collBlock' does not exist in the current context Programming Software Development by Momerath In line 33 you are using collBlock as a method, not an object, and it can't find any method named collBlock. What you should have is this:[code]DataBlock aBlock = (DataBlock)collBlock[name]; // square brackets[/code] Re: The name 'collBlock' does not exist in the current context Programming Software Development by Bridgekeeper The element 'collBlock' exists alright in the current context, but it does not exists in the context you are using it. try DataBlock aBlock = (DataBlock)collBlock[name]; where 'name' is referring to an existing key. Re: The name 'collBlock' does not exist in the current context Programming Software Development by reactivated Aaaaaeeeaargh...don't I feel stoopid. I tried everything BUT the square bracket thing. And that fixed it. And I got a new definition for context (as in "context you are using it".) Thanks a million, guys.