February 1st, 2007 10:11 PM
Hello, I am hoping that some of you gurus can answer what should be a pretty simple ASP.NET question for me.
My question is related to a form that I am building. The form consists of a data...
October 27th, 2006 03:03 PM
thanks guys thats very helpful
do you know if the file modified time on the containing directory will also be the same as the most recently modified file's modified time ?
Just wondering if it...
October 27th, 2006 11:45 AM
It could be depending on the webservice. Look at your WSDL and it will tell you.
October 27th, 2006 10:59 AM
In addition to the links already mentioned, I recommend downloading the Windows PHP Help file. Great Resource.
If books are more your thing, here is a list of PHP and MySQL Books along with some...
October 27th, 2006 10:43 AM
I have a certain directory, and I want to find the most recently modified file in that directory and extract the time that it was last modified in Perl.
Can you suggest how I can go about doing...
October 27th, 2006 10:21 AM
Thanks - I decided to go ahead and use the script you provided.
I had to change a little to account for the fact that on my architecture the idle time is not in column 16.
Here's what I ended...
October 26th, 2006 08:43 PM
If there is a perl module that does this already, how would you suggest that I go about finding out which one that it is ?
thanks for the help
October 26th, 2006 04:42 PM
OK what I mean by "load" is that I want to determine if the current CPU usuage is above a given percentage ? Does that make sense ?
October 26th, 2006 03:56 PM
Does anyone know of a GPL script or how I would go about creating a script that checks the current server load on a Linux/Apache webserver
Basically I am trying to modify a GPL Perl backup script...
October 26th, 2006 03:49 PM
I bought this book Professional SQL Server 2005 Reporting Services to help me work out some reports that I need to write. So far its helping me out pretty good by following the examples and stuff.
...
October 20th, 2006 10:34 AM
Thanks.
Ok when I do that - instead of getting C# type webservice I get managed C++.
I'm sure I must be close now, how do I get the C# ASP.NET webservice project type ?
October 20th, 2006 10:26 AM
hmmm - I was sure that there must be a way to do that, but I dont see it.
perhaps I've got the wrong type of project ?
When I create a C# webservice I don't really get a "project" I get a...
October 20th, 2006 09:56 AM
Hello,
Can any of you give me guidance on how an ASP.NET C# webservice can make use of another Webservice ? Similar to how a web-reference works in a .NET windows application ?
I am...
September 19th, 2005 02:38 PM
If you already have a binary jpeg memory, then you just need to fopen() a file and fwrite() the data.
August 24th, 2005 01:33 PM
<?php require("../include/const.php"); ?>
should do the trick
August 24th, 2005 01:29 PM
Thanks, thats what I'm using.
There is a performance improvement, and while you're right its not as great as I had hoped, unfortunately I will have to settle for whatever I can get.
Thanks!
August 17th, 2005 03:36 PM
I'm working with an imaging application that currently needs to load into memory at one time about 64 MB of images. Well due to some changes that are going to be made, the memory requirement is...
August 12th, 2005 01:23 PM
When ever the mouse moves over a particular window there is a windows message called WM_SETCURSOR that is sent to that window. That window handles the message and Calls ::SetCursor to change the...
August 12th, 2005 01:11 PM
Here you go:
//
// Illustrates the steps you take to POST with PHP...
//
function DoPost($data)
{
August 12th, 2005 12:37 PM
Put your functions inside a class, so that each file you include contains a class. Then it doesn't matter if any of the function names collide anymore so long as the class names don't collide.
August 9th, 2005 10:02 AM
August 9th, 2005 09:28 AM
How do you retrieve the NT User's Login Name without resorting to NetUserGetInfo or some other function that requires NetBios to be running ?
Functions that require Active Directory or Net Bios...
August 4th, 2005 04:34 PM
I was specifically trying not to set the Document's modified flag, but it appears that some part of my framework was setting it anyway. The View inherits both CMyView and a worker class I need to...
August 4th, 2005 04:17 PM
In my MDI application when I close one of the Child MDI windows, I am prompted if I want to save or not. In this situation I have no desire to save the contents, I just want it to close without...
August 4th, 2005 04:08 PM
Its a notification message so unless you are reflecting the message back to the control, it is the parent that is being notified not the control, which I suspect is why you don't get the message.