I am trying to print an existing Word document (or excel, or wordpad), from a VB.net application. I am not interested in opening the document. I just want to pass a subroutine a document name and print it while the application continues on it's merry way.
Any help or hints would be...
To anyone interested.
I did find the solution to my problem - I was using the wrong delete command. I used the:
mydataset.tables(tablename).rows.remove command and needed the
mydataset.tables(tablename).rows.delete command.
-mjs84
I am a newbie with vb.net and SQL and I have run into a bit of a snag.
I have written code to manipulate an SQL database. I have routines to connect, read, query, edit, add, delete and update data to the database.
Everything seems to be working just fine, except the delete function. I am...
Does anyone have an example clfile from Catia V4 or V5 that has circular interpolation in it. If so, I would really appreciate the file, or at least a snippet of it that contains the circular interpolation piece of it.
Thanks
I need to build a string based on some input data. The data is coming from user input from a motif application so I don't know the length of any piece of data.
Here is my code:
character*50 str0,s0
character*50 str1,s1
character*50 str2,s2
character*50 str3,s3...
oops again.
I had initialized it
char c[10+1];
I did get this to work by writing my string into a temporary file and using the getc() function to read each character of the file.
This seems to work okay.
If there are any better ideas, I would sure like to hear them.
Regards,
mjs84
I am new to C and I'm having a problem with something I thought would be relatively simple.
I am trying to read a character at a time from a string, using the getchar() function, and I seem to be having alot of trouble.
Below is my code...
I am having a problem reading a 'character' string into a 'real' variable. The only way I know how to do it is:
character cstr
real realva
read(cstr,'(f8.3)') realva
I think that's what I have employed below, but as you can tell from the 'output', I am not getting what I'm expecting...
Help....
I am constructing a entity name in and I need to construct the name from strings and integers. This I know how to do, but I don't know how to get the leading zeros. For example:
integer*4 val1
character*3 chr1
character*3 chr2
character*10 ans
val1 = 1
chr1 = 'LST'...