CONVERTING FROM HEX.
Sure, there are a number of programs freely available on the Internet to do this if you <a href=”http://www.google.com/search?hl=en&q=convert+hex+file”>google “convert hex</a>”. Here are some of the ones I found. <a href=”http://www.vedit.com/hex_editor.htm”>Vedit</a> <a href=”http://www.csoft.co.uk/hex_converter/index.htm”>HexConverter</a> If you just want to convert a few strings out of it, you can always copy and paste them into windows calculator [...]

View Answer   |  October 17, 2007  11:29 AM
Hex
asked by:
140 pts.

XML
XML is a standard just like HTML. It isn’t anyone’s product. XML Is a very popular way to interchange data between systems. It is a way to represent structured data. Here is the <a href=”http://en.wikipedia.org/wiki/XML”>definition of XML from Wikipedia.com</a>- “Extensible Markup Language (XML) is a general-purpose markup language.[1] It is classified as an extensible language [...]

View Answer   |  October 17, 2007  11:16 AM
XML
asked by:
140 pts.

is there any special version of vb 6.0 with vista?
VB6 will work with Vista but it takes some tweaking of the UAC. <a href=”http://www.ftponline.com/channels/net/2007_09/kpeterson2/”>Check out this article on getting Visual Basic 6 to work with Vista here.</a>

View Answer   |  October 15, 2007  5:27 PM
Visual Basic 6, Windows Vista
asked by:
9,815 pts.

Something is wrong
This is an issue with how floating point numbers are handled. 0.47 is converted from a string into binary to be manipulated. Then you do stuff to it. Finally it is converted back into a string (in base 10) to be displayed. The problem is that some decimal numbers (floating points) can’t be exactly defined [...]

View Answer   |  October 11, 2007  2:58 PM
JavaScript
asked by:
35 pts.

No GUI only command line interface
If there were no GUIs and all operating systems still used a command-driven interface they would probably be used to develop some sort of “graphical interface” for “users”

View Answer   |  October 11, 2007  1:48 PM
GUI
asked by:
35 pts.

my question
Please be clear a.Give an example of what youR RESULT should look like and what is your input

View Answer   |  October 9, 2007  7:11 PM
Parsing, PL/SQL, SQL
asked by:
110 pts.

SQL joins on encrypted data
If your encryption padds the encrypted value with filler data then yes, the join could fail as the values wouldn’t match. If you aren’t padding the encrypted value then your values should match and you should be able to do the join.

View Answer   |  October 5, 2007  8:26 PM
Database, DB2, Desktops, Management, Microsoft Windows, Oracle, OS, Security, Servers, SQL Server, Web site design & management
asked by:
64,505 pts.

SQL 2000 to Yukon Migration
You would either need to setup a new server running SQL 2005, or install a SQL 2005 instance leaving the SQL 2000 instance. Then detach the databases from the SQL 2000 instance and attach them to the SQL 2005 instance. Be sure to do full testing to make sure that there won’t be any issues [...]

View Answer   |  October 5, 2007  8:18 PM
Access, Database, DB2, Desktops, Management, Microsoft Windows, Oracle, OS, Security, Servers, SQL, SQL Server
asked by:
64,505 pts.

SQL Server Schema Best Practices
Yes you can do this within SQL Server. Make the user the owner of the schema, and grant them the control right over the schema. This will give them the ability to grant other users rights to objects within there schema, as well as give them the ability to create objects. You can also create [...]

View Answer   |  October 5, 2007  7:56 PM
SQL, SQL Server
asked by:
64,505 pts.

database sql,with vb coding,first time running not fast
This will be because the first time you connect the database has to be opened and the information that you are looking for loaded from disk into memory. This is called caching the data. SQL caches as much data as possible into it’s buffer. The more often the data is needed the longer it will [...]

View Answer   |  October 5, 2007  7:52 PM
SQL Database, Visual Basic 6
asked by:
64,505 pts.

I can update the dataset, but not the database
Have you called Update on the data adapter? e.g. customersTableAdapter.Update(northwindDataSet.Customers); from msdn

View Answer   |  October 5, 2007  1:20 PM
Database, SQL Express, Visual Basic
asked by:
15 pts.

software
Providing more information such as what operating system you’re using would have been helpful. You also didn’t say, so I’m assuming you’re asking for an individual software application. <b>Mac OS</b> On the Mac, the active application menu sits just to the right of the Apple menu. Click that and choose the About submenu item to [...]

View Answer   |  October 4, 2007  2:21 PM
Software
asked by:
6,565 pts.

Where is the best site to learn SQL?
try these: <a href=”http://www.sqlservercentral.com/”>http://www.sqlservercentral.com/</a> <a href=”http://www.mysql.com/”>http://www.mysql.com/</a> In addition to the links above, suggested by Spadasoe, I used the site below years ago before it was acquired by Internet.com. I thought it was a pretty neat idea for learning SQL. <a href=”http://www.sqlcourse.com/”>http://www.sqlcourse.com/</a>

View Answer   |  September 26, 2007  5:01 PM
SQL
asked by:
6,565 pts.

sql
<a href=”http://searchoracle.techtarget.com/expert/KnowledgebaseAnswer/0,289625,sid41_gci1263243,00.html”>SQL FAQ: Common SQL questions, part 2 ;o)

View Answer   |  September 26, 2007  2:48 PM
SQL
asked by:
0 pts.

transfer foxpro output file to excel format
Have you tried Excel’s built-in <a href=”http://office.microsoft.com/training/training.aspx?AssetID=RC011801181033″>Text Import Wizard</a>?

View Answer   |  September 26, 2007  12:59 PM
FoxPro
asked by:
6,565 pts.

Robotics language
Try Pyro. It’s based on Python. <a href=”http://pyrorobotics.org/”>http://pyrorobotics.org/</a> Your students might also enjoy Tod Kurt’s book, <a href=”http://www.wiley.com/WileyCDA/WileyTitle/productCd-0470072717.html”>Hacking Roomba</a>. I know you said open-source, but I’ve heard good things about Microsoft Robotics Studio, too <a href=”http://msdn2.microsoft.com/en-us/robotics/”>http://msdn2.microsoft.com/en-us/robotics/</a>. It’s licensed free for non-commercial use for students, educators, academic researchers, or hobbyists.

View Answer   |  September 7, 2007  4:58 PM
Educational robots, Programming Languages, Robotics
asked by:
6,565 pts.

Tracking Changes to Files
Hi EsJay Journalling the files is a good way to achieve what you want although as an alternative you could look at the use of database triggers. A database trigger can be defined to call a program whenever the physical files are updated (or records created). There are a lot of examples you can find [...]

View Answer   |  August 13, 2007  5:18 PM
Application development, AS/400, AS/400 careers, Backup & recovery, CLP, DataCenter, DB2 Universal Database, Email, IBM Marketing Sound Off, PC/Windows Connectivity, Printing, RPG, RPGLE, Security, Web development
asked by:
7,175 pts.

Error : 505, local host gmail, not gatway (ASP)-2
This site should help you out… http://www.systemnetmail.com/

View Answer   |  July 24, 2007  9:22 AM
ASP
asked by:
0 pts.

transferring files from iSeries to PC
You can use 400 FTP or you could transfer the file to the IFS and then pull it onto the PC from there. Hope this helps. Thanks Reva

View Answer   |  July 23, 2007  3:04 PM
Application development, CLP, PC/Windows Connectivity
asked by:
0 pts.

IBM VSAM file processing
It depends on what else is going on in your system — A shared read-lock will prevent an exclusive write-lock from happening.

View Answer   |  July 20, 2007  5:56 PM
Development
asked by:
15 pts.