textfile

Problem with print out to text file

Hello, I am completely stumped. I have a program that pulls information stored in a database, assigns the database values to a corresponding class. The class has a print method that prints the values of it's fields. The users type in either an order id or order date range and then it finds those orders and prints them out to a text file...

VB.NET: Detect if a text file is open

Is there any way to determine if a text file is currently open in a text editor? Or better yet, is there a way to trigger an event when a text file is opened (from any program)? ...

How to get last build label in text file

I have one project which is under Cruise control. I want to write one console application which will write the last build label of that project in one text file. ...

how to convert a mysql table to text file in php ?

What is the php script for converting a mysql table to text file? I have converted it to CSV format which opens up as a excel file. I also want the table data in a text file. How do I do it? For converting it to csv format, I used the header data as: $filename = "export_".date("Y-m-d_H-i",time()); header("Content-type: application/vnd...

Skip first column and get distinct from other columns

I need to select distinct rows from Textfile display below. TextFile 123| one| two| three <br/> 124| one| two| four <br/> 125| one |two| three <br/> Output should like this 123| one| two| three <br/> 124| one| two| four <br/> OR 124| one| two| four <br/> 125| one |two| three <br/> I am using this code to work out this ...

c++: ifstream open problem with passing a string for text file name

hi guys, i'm trying to pass a string from main to another function. this string is a name of text file that needs to be oepened. as far as i can see, i am passing the string alright, but when i try to use ifstream.open(textFileName), it doesn't quite work. but when i manually hardcode it as ifstream.open("foo.txt"), it works just fine. i...

Reading a text file and exporting its contents to sql

I'm trying to have files(.shp and image file types) that are listed(the location) in a text file exported to a database, by importing it into the manifold program and then exporting them from there into sql. The code is in C# and any references, similar coding and examples are welcomed. info: I'm using Manifold System 8.0 Ultimate Editi...

StreamReader C#

While reading a text file(which contains the location of a file to be exported to a database) using the streamReader function in C#, how can I add a confirmation message to the code that will be displayed in the command prompt window(console application) so that I know the file got read and was exported? public class Script { public...

Search for a string in a text file and parse that line (Linux, C)

This is "how to parse a config file" question. Basically i have a text file (/etc/myconfig) that has all kind of settings. I need to read that file and search for the string: wants_return=yes once I locate that string I need to parse it and return only whatever it is after the equal sign. I've tried using a combinations of fgets and s...

text file reading in c#

hi friends, I have a text file, its the content from a mail body.it includes html codes. I want to take only href tags from that text file.I want to do this with asp.net c# web application. Does any one have a code to help me ... Thanks ...

Read and write text file in JavaScript

hi friends, How can i write an read a text file in a JavaScript? Thanks ...

Retrieving and Replacing number in text file

I need to retrieve and change a number in a text file that will be in the first line. It will change lengths such as "4", "120", "78" to represent the data entries held in the text file. ...

read text file into custom data class

I have a text file which contains columns of data that are either integer, double or string. I want to read each row of data into my own record class. I know the column data types beforehand, so I am parsing a text file row something like the code below (I typed it out, so don't complain there are errors). I didn't list all of the col...

Write Chinese chars to a text file using vbscript

I'm trying to write some Chinese characters to a text file using Set myFSO = CreateObject("Scripting.FileSystemObject") Set outputFile = myFSO.OpenTextFile(getOutputName(Argument, getMsiFileName(Wscript.Arguments)), forWriting, True) outputFile.WriteLine( s ) variable s contains Chinese character that I read from other file. I echo ...

Does using the "Microsoft Text Driver" require the use of a schema.ini file?

Using C#, I'm trying to create a form with a dataGridView that shows the contents of a fixed width, flat file database. Does using the "Microsoft Text Driver" require the use of a schema.ini file? Below is the connection string I'm using. I cant seem to get the grid to fill regardless of whether I use one or not but I'm not sure if I eve...

Inserting "£" in a string to a text file

iPhone Application writes data to a text file, saves it on the Documnets folder. Great that works If I place "£" in the string, or use [currencyStyle stringFromNumber] the text file will not be created. The "£" and the [currencyStyle stringFromNumber] works if the information is printed to a "New View" page on the simulator, pound and...

How to open textfile and write to it append-style with php?

How do you open a textfile and write to it with php appendstyle textFile.txt //caught these variables $var1 = $_POST['string1']; $var2 = $_POST['string2']; $var3 = $_POST['string3']; $handle = fopen("textFile.txt", "w"); fwrite = ("%s %s %s\n", $var1, $var2, $var3, handle);//not the way to a...

Generating a text file in MYSQL stored procedure

Hi, I'm new to MySQL, I am trying to create a text file using a stored procedure. I'm currently at the stage where I have a temporary table that contains all of the records that I want to output to a text file. I have the following line at the end of my SP, it works in PHPMYAdmin's query but it does not work when part of a stored pro...

Need help looping through text file in Objective-C and looping through multidimensional array of data within text file.

I have a question regarding an iPhone game I'm developing. At the moment, below is the code I'm using to currently I loop through my multidimensional array and position bricks accordingly on my scene. Instead of having multiple two dimensional arrays within my code as per the following (gameLevel1). Ideally, I'd like to read from a text...

Is there a generic class to write structured Text Files?

I have several projects that need to write structured Textfiles, some with fixed size fields, other delimited by characters. Is there a .net class that could be used for that? I know there is a "Microsoft.VisualBasic.FileIO.TextFieldParser" that is useful for reading textfiles, i am actually searching for a ""Microsoft.VisualBasic.File...