C :: How To Create A Document Where All Text Is Normal But One Word Is Flashing
Feb 18, 2013
So i have to create a document where all the text is normal, but on the sides one word, a important word flashes...
how would i code that in c ?????????
oh yeah i am useing complier Bloodshed Dev C++ on windows 7
View 9 Replies
ADVERTISEMENT
May 20, 2014
i want to ask from you people that how can i generate a word document using C++ or C#. Actually I am the beginner and i don't know how to create it, my problem is that i want to open word document, then i want to write text with proper formatting like space between two words according to my desire, capitalization of the initial & etc using C++ or C#.
View 3 Replies
View Related
Mar 20, 2013
I have a problem to open word document into turbo c++. i don't know how to open if the documents are in word format.
View 1 Replies
View Related
Feb 10, 2013
how to open a word document in c++?
View 4 Replies
View Related
Jan 7, 2014
How to draw a rectangle and covert to an image and that image saved into word file?
View 1 Replies
View Related
Feb 10, 2013
I have this question, How to open a word document in c++?
View 5 Replies
View Related
Jun 9, 2014
I am facing a problem that I want to write the label name in a word document and the word is connected with the visual studio using COM option. Like if the name of the is Label1 and I want to write it in a word document using some code or something else.
View 1 Replies
View Related
Mar 26, 2013
Program that reads in a normal text file and converts it into mobile phone text. that is if the word is 3 characters or less then ther is no changes to the word and if the word is four or more letters then remove all the vowels from the word except for vowels that are capitals.
View 5 Replies
View Related
Aug 10, 2012
How to get line number on mouse position in Microsoft word document using winWordControl within windows form?
View 1 Replies
View Related
Jan 17, 2015
make a text file full of vocabulary wordsRead in that file and allow the user to specify the .doc file (should be simple)Go through the .doc file and highlight all the words that appear in the .txt file green.Open the .doc after the process is complete.
After I accomplish that, I can try to make more tweaks by maybe using a database instead for my vocabulary words and implementing error checking to be sure there are no duplicate entries, specify a different color for certain words instead of using just one color, etc. First and foremost, however, I want to know if the bare basics would be possible. I'm new to C++, but I have about 2yrs of Java under my belt, so I should be able to catch on relatively fast.
View 1 Replies
View Related
Oct 11, 2014
so the data file is a .txt that is going to be pre-written like this:
numbers:
562
444223.123321 312233.31222 3232323.31122
332231.323223 333232.32323 3232322.32233
am i reading the txt correctly? why are the numbers so weird when i "cout" to check?
#include <iostream>
#include <cmath>
#include <cstdlib>
#include <fstream>
#include <sstream>
#include <ctime>
#include <stdlib.h>
using namespace std;
int main() {
double mb1; //mass body 1
[code]....
View 4 Replies
View Related
Jul 23, 2013
I was just wondering whether or not it is possible to "mix" characters and integer values in a text document that is to be read by C.
I am to read and use values for length around the hip, neck and such, however, most of the tutoring examples I am finding online seem to strictly deal with either integers or characters alone.
Basically my text file looks a bit like:
Abdominal length: 90.000
Neck length: 26.500
and so on
So, before I move further into this subject, is it possible at all to isolate and use only the double values or will I have to format my text file differently?
View 9 Replies
View Related
Dec 20, 2013
I have text (string) and I want to find a given word (it's ok!) and then insert another given word after the first word. The original string is beeing copied into a new string. But something is going wrong!!! Where is my mistake?
(I have some patches...)
Code:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
//insert "new_word" after each occurence of "word"
int main(){
char A[100]="In the sentence words the and the.";
[Code]...
View 8 Replies
View Related
Apr 30, 2015
I'm trying to make a program that reads data from a text document and allows me to modify it. I am stuck with the display() function. I can get the printf statement to display all my array values except the char AD value. When I include flight[i].AD it causes the program to crash. When I run the program to only display the AD variable I get a bunch of weird symbols. I'm not sure where the program is going wrong because it seems to be storing values properly except for the AD variable.
#include <fstream>
using namespace std;
//named constants
const int MAX=100; //maximum flights
const int SIZE=20; //maximum characters
//struct definition
struct FlightType
{
char name[SIZE];
[Code]...
View 1 Replies
View Related
Apr 21, 2014
You should implement the following function:
int is_phone_number(char* string)
This function will take in a string and return 1 if it looks like a phone number 0 otherwise. A phone number takes the form (xxx)-xxx-xxxx where the xs are digits 0-9. So for example (123)-456-7890 is a valid phone number while 123 456-7890 is not.
You should also write a main function that parses a text document and prints out all of the phone numbers found. Hint, look up the strtok function.
Sample input:
Please call me at (123)-456-789 sometime tonight.
Sample output:
Phone number : (123)-456-7890
View 5 Replies
View Related
Jun 5, 2013
i want to create a program (in c++ or c#) that will play mp3 files but also display a word file with the lyrics of the mp3 song playing. so if i choose a mp3 file from a list, the lyric file for that song should also be displayed. i have all the mp3 and lyric files saved on the computer so my problem is how can i link the files?
View 5 Replies
View Related
Feb 17, 2013
My question is are there various ways that I can approach this program. I.e. do I have to use switch statements?
/*
NumToTxt
Creates the appropriate word form of any positive integer up to 999999
*/
#include <iostream>
using namespace std;
//represents the largest array size for the user entered number
const int MAXNUMARRAY = 6;
/*represents the largest number that can be entered + 1. Used to calculate the first number used to truncate the user
entered number and to display an error message to the user that tells the user the largest number that the program will
accept. */
const int BIGGESTNUMBER = 1000000;
[Code] .....
View 1 Replies
View Related
Sep 18, 2013
Need to create multiple word documents on the run.
My problem is its creating the last one only.
View 1 Replies
View Related
Sep 30, 2013
So the plan is to create a word search by reading in characters from a file into an array. This is my code so far, nowhere near finished but have encountered a problem already:
Code:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define ROWS 20
#define COLUMNS 20
int main()
{
[Code]...
My question is to do with the section highlighted in red... I can't really see why it is not printing out my array (wordsearch), it's probably very basic but I have no C experience so am not too confident in what I'm doing.
View 1 Replies
View Related
Mar 27, 2013
I am currently using Flash. Here are two images I will be referring through without this post:
1: [URL] ....
2: [URL] ....
So basically, when I click the generate buttonon the first image it takes you to the second image. What I want is when I click the generate button it comes to this screen, aswell as choose a random word from each list that I will make (Who List, What List, When List, Where List, and Why List) and place the word next to its position. When you click New Idea I want it to also generate another set of random words from the lists. How can I do this?
View 1 Replies
View Related
Dec 7, 2013
This program counts how many times does a word appear in a text. Why i have to add 1 to p in the while loop?
#include <iostream>
#include <cstring>
using namespace std;
char s[200], c1[20], *p;
int main() {
int k=0;
[Code] ....
View 1 Replies
View Related
May 29, 2014
I am working on a bonus question for school. By using #include <iostream> and #include <string>, I need the user to input a sentence getline(cin,sentence). Move the first word of that sentence to the end.
example:
Enter a line of text.
MAC101 is the class
rephrased that line to read:
is the class MAC101
View 12 Replies
View Related
May 24, 2014
I have a C++ program that performs calculations on numbers in a text file. However, suppose we have additional words in the text file such as "Title". In this instance, the program will not calculate the numbers in the file because of the text.
How do we remove text from a file using the C++ program? e.g. if I wanted to specify the program to remove any instances of the word "Title", how would I do it?
View 1 Replies
View Related
Apr 26, 2013
im trying to have the nickanme set to be a random name from a text fille full of nickanmes i dont know how to do it heres my code
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using FluorineFx;
using FluorineFx.Messaging.Adapter;
[code].....
View 3 Replies
View Related
Dec 19, 2014
I want to write a program which takes a text from input and saves each word with malloc. For example for text "Have a nice a day" i want an array for each word, have,a,nice etc.
View 1 Replies
View Related
Mar 23, 2014
I was asked to create a program to find word frequencies, word length in a text file. I am able to use map to do the frequencies part but don't know how to sort the the output accordingly to the length of the words. The example output that I should get is
1 a. 362
i. 157
2 an. 122
at. 201
3 add. 2
age. 1
int main(void) {
static const char* file = "demo.txt";
map<string, unsigned int> wcount; {
ifstream fileStream(file);
[Code] .....
View 10 Replies
View Related