Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: allthetimeintheworld
  • Order by date
  1. allthetimeintheworld

    Call webservice from server side ASP?

    Well, haven't found solution so far but that stuff is quite interesting, so thanks (and star). Everything I'm finding covers www client to asp server: can't find anything on asp server to (any old other) server. That would be a great starting point I think. Any other ideas? Thanks, Sam
  2. allthetimeintheworld

    Call webservice from server side ASP?

    Hi, NB: I also posted this in ASP.Net thread as it sort of spans both realms. Just in case you thought you were having deja vu! I want a client side form to call a server side asp page, which in turn calls a webservice on a separate server... HTML Form -------> Server Side ASP Code...
  3. allthetimeintheworld

    Display webpage after HTTP POST to a webmethod

    It's a pretty interesting article but not quite what I'm looking for. I need synchronous access that results in either a redirection or HTML content that is dependent on the sucess of the SQL statement. I also specifically want to used HTML files that are already stored on a server: I _don't_...
  4. allthetimeintheworld

    Display webpage after HTTP POST to a webmethod

    Hi, I have created a webservice with a web method that inserts data into a database... [WebMethod] public ????? addRequest(string title, string initial, string surname) { .... do a bit of SQL ... return ????? ; } I'm accessing this service via a form in a web page using an HTTP POST...
  5. allthetimeintheworld

    Prevent users from using laptops

    Iain is so right here that I'm going to, basically, say the same thing to ram the point home. I am a network admin and I wrote our company's IT policy. No one is allowed to plug a laptop into our network. However hard it is to manage a secure network (and it is hard: starting with impressing...
  6. allthetimeintheworld

    win32api::Sleep(5000) blocking Word and Excel

    Note that this needs a bit more investigatation: I would like to know where the events are being processed/handled. Also, you have to use MsgWaitForMultipleObjectsEx(). The other function, MsgWaitForMultipleObjects(), still blocks other apps. * Note that wakeup time is seconds after...
  7. allthetimeintheworld

    win32api::Sleep(5000) blocking Word and Excel

    Nice one Bill! If anyone is interested in the solution, let me know and I'll clean up the code and post it. Thanks!
  8. allthetimeintheworld

    win32api::Sleep(5000) blocking Word and Excel

    PS: I've messed around with the process priorities with no effect.
  9. allthetimeintheworld

    win32api::Sleep(5000) blocking Word and Excel

    Hi all, I have built a pretty simple application (with no forms or visual components). The Main entry point calls the following function that checks the current time and loops until it passes a certain time: FUNCTION sleepUntil(wakeUpTime) PRIVATE hasBeenPrevious, secs DECLARE Sleep IN...
  10. allthetimeintheworld

    URGENT: Please help. Table won't open from exe

    Ok, finally fixed problem. Not 100% sure what went on but I'm pretty sure the corruption was in the Project itself (not the dbc, or dbf.) To fix it required a few steps, the last of which was rebuilding the indexes of the problem table. Thanks very much for your help.
  11. allthetimeintheworld

    URGENT: Please help. Table won't open from exe

    You reminded me that I did try deleting and re-adding before posting here. I think there are two corruptions here, one in the dbc and one in the cdx. Reason I say this is, I fixed the problem in the test/design database (which is a mirror of our operations database) and the last thing I did...
  12. allthetimeintheworld

    URGENT: Please help. Table won't open from exe

    Ok.... I have found the problem: looks like it was corruption in the index file. REINDEX did not solve it, but deleting the indexes and adding them again did. Thank you all for your help.
  13. allthetimeintheworld

    URGENT: Please help. Table won't open from exe

    Already done it (see 1st post)
  14. allthetimeintheworld

    URGENT: Please help. Table won't open from exe

    Ok, checked to see if file is included. It's excluded. Using the filemon utility that dbMark suggested (excellent utils by the way... thanks for that), I can see that the table file is opened and a few reads made and then the file is closed and the error handling starts. Compared the trace...
  15. allthetimeintheworld

    URGENT: Please help. Table won't open from exe

    Thanks for your helpful replies. Unfortunately I've not yet found a solution. Here is some more data: 1. The error occurs when the data environment is loaded for the first form opened by my application (in the EXE only remember; application works fine when run from the foxpro IDE). 2. There...
  16. allthetimeintheworld

    URGENT: Please help. Table won't open from exe

    Hi I am having a problem and I am stumped and desperately need help. It started happening today at 3pm for no apparent reason. I'm using FoxPro 7. When I try to USE a particular table from an EXE file I build I get the following error: Error loading file - record number 5. form1 <or one of...
  17. allthetimeintheworld

    Problem with coded multi-select List

    Hi, I have been struggling with the same problem you describe above. I have a reasonably elegant approach so I thought I would at least document it here. It is very similar to some of the approaches you have tried so apologies if this doesn't help you. I am runnin VFP7.0 SP1. The code is...
  18. allthetimeintheworld

    wgcs' Sendmail Program: Error Encoding Attachment File

    Hi, I think there is an bug in the UUEncode routine for attachments. The bug effects the last line of encoded data. It will only manifest itself when the last line length of the data is not divisible by 3: *Add first symbol to encoded string that informs *about quantity of symbols in...

Part and Inventory Search

Back
Top