Re: LabVIEW and "USB to 1-wire" (DS2490)

2004-05-06 Thread tomsch1
i am interested in reading several ds1821 in a similar fashion if
possible could you provide the vi that does the 1-wire communication



Re: how to send data as a stream to web site

2004-03-22 Thread tomsch1
you are correct i was refering to labSQL.

I need to better understand how how to write the labview to connect. i
use mysql alot and the terms used from the labview side are not always
the same or are better known by a different term. ie. DSN for one

I have the latest odbc drivers including myodbc3(mysql)

I know SQL.

beyond this i'm lost at the moment.

I am used to logging on to the db from linux.

if you had an example of how to connect to a db other than a micrsoft
one that may guide me better or a location of a how to.



Re: how to send data as a stream to web site

2004-03-22 Thread tomsch1
On the other server is a web page that will read a mysql db and post
the last 10 readings



Re: how to edit remote front panel

2004-03-22 Thread tomsch1
the only problem with your answer is 1 i do not have the web
publishing tool kit and 2 the monitor command only works with
netscape.



how to send data as a stream to web site

2004-03-21 Thread tomsch1
Can anyone tell me if its possible and how to send an array as a live
stream?? the best analogy i can think of would be and audio or video
stream.

i have an array of 10 elements setup as a fifo. i want to send that to
another web sever as close to real time as possible.

any help would be appreciated



Re: how to send data as a stream to web site

2004-03-21 Thread tomsch1
well i kinda knew this but i don't know how to interface with the
database.

I do not have the DB connectivity tool kit.

and the free version i have i don't understand how to use.



Re: how to edit remote front panel

2004-03-21 Thread tomsch1
the remote panel is a subset of the local panel



how to edit remote front panel

2004-03-21 Thread tomsch1
Can i create a remote front panel that only displays as a monitor an
array??



Has anyone connect to mysql remotely??

2004-03-21 Thread tomsch1
Has anyone connect to mysql remotely??

if so could someone provide an example of how to insert a record.



display last 10 results

2004-03-14 Thread tomsch1
I would like to display the last 10 results as a fifo array. any ideas
how to do this??



convert hex string to ascii charactors

2004-03-09 Thread tomsch1
How can I simply convert a string 010A to the ascii charactors
reprsented by 0x01h, 0x0Ah??

my string could be of any length.



Re: where can i find additional DDE resources???

2004-02-20 Thread tomsch1
looks like the attachments didn't make it



where can i find additional DDE resources???

2004-02-19 Thread tomsch1
Where can i get additional material about DDE and labview??



Re: dde file execution

2004-02-19 Thread tomsch1
here is a simpler explanation of what i need to do.

i need to take myapp.exe and execute it

then i need to access the app as though i was typing at the keyboard.



Re: dde example

2004-02-17 Thread tomsch1
they only help if you are using access or excel.

the help topics don't answer what exactly the service, topic or
anything else should be for other apps ie myapp.exe



dde example

2004-02-16 Thread tomsch1
ok i need to use DDE to talk to myapp.exe, i need to send the app 2
peices of data and then retrieve the result.

i see stuff about server/client but i don't find anything really good
at explaining what each is/does.

i need an example that doesn't involve loading a file in addition to
executeing the program.

or i need something that explains DDE and labview better.



Re: writing unique record to file

2004-02-11 Thread tomsch1
it doesn't seem that simple as i can't get it to work.

i am forced into loading the file into an array, and then check
multiple strings to see if they exist.

i am obviosly not seeing something

an example of reading a log file and writing to an existing log file
only the unique lines may assist me in understanding what i'm doing
wrong



using DDE to send messages to mirc

2004-02-10 Thread tomsch1
has anyone tried using labview to send msgs to an irc channel??? if so
i would lie to know more.



dde file execution

2004-02-10 Thread tomsch1
I have an app that will disassemble a peice of code.

in VB I use this to execute the file then various other commands to
enter my data.

AppActivate hDis
Clipboard.Clear
SendKeys "^{HOME}", True
SendKeys "+{END}", True
SendKeys "{DEL}", True
SendKeys address, True
SendKeys "{TAB}", True
SendKeys "^{HOME}", True
SendKeys "^+({END})", True
SendKeys "{DEL}", True
SendKeys data, True
SendKeys "{TAB}", True
SendKeys " ", True
SendKeys " ", True  'in case "an error occured while
disassembling, Check Bytes (or opcode.dat) and try again"
SendKeys "{TAB}", True
SendKeys "{TAB}", True
SendKeys " ", True

what I need is to access the file and return the disassembly. My
disassembler does allow for dde.
I see lots of ways to do this with access and excel but none for any
other executable.

and guidence or examples would be helpful