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 SkipVought 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: *

  1. RedLion

    ASP.NET calls VFP COM object but the interop call doesn't create an object

    Hi, I have an ASP.net webpage running in a 32 bit application pool within IIS which calls a VFP COM object. From time to time the initiation of the COM object within ASP.net fails and the webpage has to be renewed before it works again. But the result of this is that after so many exceptions...
  2. RedLion

    Saving the content from Asp.NET fileupload with strtofile gives a lot of question marks

    Indeed COMPROP isn't available... Interesting suggestion about referring the temp file. Will keep that in mind for the next time. Thanks guys! Speak you later.
  3. RedLion

    Saving the content from Asp.NET fileupload with strtofile gives a lot of question marks

    Thanks for your support GriffMG! It was an other option, but I didn't want .NET to write outside its web directory, out of security issues.
  4. RedLion

    Saving the content from Asp.NET fileupload with strtofile gives a lot of question marks

    Thank you Olaf for clearing things up!! Finally found a solution by putting all code into base64 on the .net side and reversing on the vfp side :-) Problem is that the VFP 6.5 strconv function doesn't support base64 but found the next workaround: lParameters cSrc DECLARE INTEGER...
  5. RedLion

    Saving the content from Asp.NET fileupload with strtofile gives a lot of question marks

    Thanks for your quick response! I have tested it again but writing the file to disk from ASP.net goes without any problems. The problem is really in the kind of data C# sends to VFP and VFP expect it to be. I've the idea that VFP expects double byte data and C# sends UNICODE 8 or so. But I...
  6. RedLion

    Saving the content from Asp.NET fileupload with strtofile gives a lot of question marks

    Hi, I use VS FoxPro 6.5 I have an ASP.NET page with a Fileupload control on it for uploading pictures. I send the data via COM interop to a FoxPro COM object using (StreamReader inputStreamReader = new StreamReader(myfile.PostedFile.InputStream)) {...
  7. RedLion

    VFP still runs on all windows versions...but the dotnet framework isn't

    Did I hit the limitations of Visual FoxPro or is there still a solution or workaround? Visual FoxPro still runs on all Windows versions without any problems :-) but for connecting it to the internet through IIS I use the dotnet framework (4.5.2). Now there are plans to migrate from windows 2008...
  8. RedLion

    VFP6: Stored procedure can't be called anymore?

    Thanks for all responses!!! I have tried all responses, but none of them solved the problem. When I step through it with the debugger it just throws an exception at the point where newAutoId is called. Within the old program (windows app) everything goes well. Now the question from my...
  9. RedLion

    Random Thought: No more Red Buses?

    Last month the first customer asked me the same question because another company that delivers network support to my client pointed them to this problem. And why did they do it, because they had a company were they are friends with that could develop the same program in dot net language and...
  10. RedLion

    VFP6: Stored procedure can't be called anymore?

    Hi, Some strange things are happening, I've once build a program with a VFP database with some stored procedures within it like "newAutoId(<Unique ID>)". Never had any problems with it but I am know extending the program with some new code and I can't call the function "newAutoId" (even where...
  11. RedLion

    IE plugin to save forum messages I type, and spelling control

    Hi, After the 1...x time spending a half hour typing a message to help someone on a forum and forgetting to CTRL-A CTRL-C to save the text I just typed and finding out that something went wrong while posting the message to the board...[evil] And pushing the back button doesn't help because the...
  12. RedLion

    Howto set a minimum body height in CSS?

    Hi Vragabond, I really appreciate it that you go into a discussion about it with me! To start with your last comment, I just found it the time to put some effort in a more modern way to develop simple websites that consist of 6 pages with the option of online changing the content with a WYSIWYG...
  13. RedLion

    Howto set a minimum body height in CSS?

    Vragabond thanks for your help and responses! Lets clear some things up, I develop a lot of big websites which are connected to content management systems and finance systems and all other kind of systems. Those sites are developed with ASP.NET and have a database behind them. And they generate...
  14. RedLion

    Howto set a minimum body height in CSS?

    And it isn't possible to set the height of the #content to 100%? Within IE8 it all works nice, but within IE7 it doesn't... What's the best solution then? Set it with javascript? Any idea how the javascript should look like, because content.style.height didn't gave any values as a result...
  15. RedLion

    Howto set a minimum body height in CSS?

    Already tried something as: <script> contentarea.style.height = content.style.height; </script> But that didn't do the trick either because content.style.height didn't have a value...
  16. RedLion

    Howto set a minimum body height in CSS?

    Thanks for your response Vragabond! You're probably right... And when I look to the number of people still using the 800x600 resolution...so for get it. BUT I was testing the site with IE7 instead of IE8 and now I saw that my iframe is not resizing to the height of content-div anymore?!? So...
  17. RedLion

    Howto set a minimum body height in CSS?

    Thanks for your quick responses! Southbeach, I tried to set a pic as the background image of my "content" div to a pic with a size of 1x900 by adding the css code background: url(site_pic/shim900.gif); background-repeat: no-repeat; But there didn't appear any scrollbars on the right of the...
  18. RedLion

    Howto set a minimum body height in CSS?

    Hi, I decided to improve my web layout skills to Div-based layouts instead of the table based layouts I am used to. While I am a program (who doesn't like layouts, I like functionality) I decided it was time for me to put some energy in changing my layout skills to modern ways. I found an...
  19. RedLion

    After reinstall problem with new build executables

    There were no big changes in the software yet, even if I recompiled the same version of the software the problem occurred. After clicking the cancel button the application terminates immediately. That's the big problem I can't find out at what place in the source code the problem occurs. So I...
  20. RedLion

    After reinstall problem with new build executables

    First of all, thanks for all help! Lets rephrase it simpler: I have an app with a build from 10-May-2008 called myapp-may.exe I have the same app with a build from 7-Oct-2008 called myapp-oct.exe I put both applications on a fresh installed computer into the folder c:\myApp together with...

Part and Inventory Search

Back
Top