Have a look down this avenue;
http://us3.php.net/manual/en/function.file-get-contents.php
Php can retrieve the text of web pages.
Jonathan Galpin MCSD Õ¿Õ¬
www.iqzero.net
because software should be easy to use
Thanks for the comments ingresman.
My main issue with a web interface would be that for certain functions, a web page might end up being slow when it does a large number of tasks and data pulls. That is the only time a client could use the speed of a desktop client....but may not be worth the...
Your opinion please:
I have a prospective client who needs their end to end business application re-written on a modern platform.
My expertise is in web apps.
I would need to handle their client and vendor relationships, estimating, invoicing (pdf's), inventory (with some interaction to...
Denny
I appreciate your response, thanks.
I had once attempted an install and was stopped for some reason I could not recall. That was probably it.
Do you believe it is worth putting a database (now on the enterprise edition) onto the current MSDE? I do use stored procedures. It is not...
A client wants to migrate a small piece of their db app to a desktop machine.
Is it possible to install SQL Server 7.0 Enterprise edition on an XP pro machine?
Thanks in advance.
Jonathan
Jonathan Galpin MCSD Õ¿Õ¬
www.iqzero.net
because software should be easy to use
Hi All
After a few weeks of not using a particular machine, I have come accross this error suddenly in the VB IDE.
When trying to run an app in the ide, I get this:
System error &H80004015(-2147467243). The class is configured to run as a security ID different from the caller
This article...
Hi Carp
Previously I tried to feed one in, with no luck:
CALL cwsr_sel_net_sales (101, '03-Nov-03' , '09-Nov-03',0)
*
ERROR at line 1:
ORA-06577: output parameter not a bind variable
It is an out parameter, so why feed it in? Is there a different syntax I can apply such as declare in SQL...
Hi All
This Oracle 8i stored procedure is valid:
(PK in number,
dt1 in date,
dt2 in date,
amount out number
)
is
begin
select sum(conf_numb8) into amount
from csh_main
where fk_str_main_id = PK
and (busi_date >= to_date(dt1))
and (busi_date <= to_date(dt2));
end...
Please read the faq "Error Handling" by CasperTFG first, this is only meant as an additional note:
I use the "app.logEvent" call for the most part when handling errors. This writes a log to the application event viewer in the control panel.
Syntax:
=======
App.LogEvent vbCrLf &...
After some contemplation, I believe the human readble file is a "toString" representation of the java object.
I believe the solution is to write a java app that will:
deserialize it if it is serialized(however, I believe it is just the object),
instantiate it as a true...
I use a com object called samail.
Here is an example of a function I use to send email. This is from an asp page:
function sendEmail(address,title,body,attachment)
dim objM
Set objM = Server.CreateObject("SoftArtisans.SMTPMail")
objM.FromName = "iqzero.net"...
Have a look at my data access faq222-2103.
Basically, using a dsn, you can switch to a different type of database at the dsn, never touching your code. Ie use access, sql server, oracle etc.
Jonathan Galpin MCSD
www.iqzero.net
because software should be easy to use
Yes, the more I study it, it seems that it is a java object representing a custom array, that has been serialized.
I wonder if by reading the file in binary format if I can locate an existing amount ie "1560.25" and insert my corrected number without disturbing the file?
There are...
Hi Hologram
The extension is .txt.
To modify the text readable version, output by the same app for human consumption (see it at http://iqzero.net/troubleshooting/STR_0399_2003_08_14.txt ) would be a snap, the problem is that the app that then processes it into the binary form needs to be...
I appreciate that Sedj. The file begins as a text readable file (or this is created as a backup)example:
================================
{
"DATE" = "2003_06_15";
"Z1_DCR" = {
"ROW19COL1" = <"2736.23">;
"ROW19COL0" =...
Hi: Looking for direction on editing text files that are (I believe) binary hashtables.
Example of the file content:
======================================================
¬í sr java.util.Hashtable»%!Jä¸ F
loadFactorI thresholdxp?@ w
t DATEt
2003_08_14t Z1_DCRsq ~ ?@...
Hi: Looking for direction on editing text files that are (I believe) binary hashtables.
Example of the file content:
======================================================
¬í sr java.util.Hashtable»%!Jä¸ F
loadFactorI thresholdxp?@ w
t DATEt
2003_08_14t Z1_DCRsq ~ ?@...
It is fairly simple.
Probably cleaner to send the form to another page (action="xxx.asp" parameter of the form tag).
On the receiving page (all server side), handle the form --- do something for the user. Then, in the server side script, last thing, use the following code...
Ralph
Simply pass the user name/id on to the new page in a querystring.
Load the same dropdown the same way.
In the body onload event (<body onload="doLoad()") fire off the following client side vbscript:
sub doLoad()
<%if request.querystring("dropdown")<>""...
vb/vbscript > formatdatetime(yourdatehere, vbshortdate)
You must have it in the database as a date first. Check there to see that the entire date is present.
Jonathan Galpin MCSD
www.iqzero.net
because software should be easy to use
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.