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 Chriss Miller 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: wawalter
  • Content: Threads
  • Order by date
  1. wawalter

    append from question

    Hi, I'm having some trouble append a text file into a dbf using VFP 7. I have tried outputting the file with tab or | and using append from file.txt delim with tab and delim with character | and I get the same problem for both. If a field begins with a " it strips the quotes and moves the...
  2. wawalter

    DLL problem with .Net and Win7 64 bit

    I have a VFP 7 dll I have been using in a C# app and it has worked fine. I just got a new computer which is Win7 64 bit and now when the C# program calls the DLL it immediately crashes. I compile the C# program in x86 mode which allows VFPOLEDB to work and I can compile the DLL in VFP by...
  3. wawalter

    WCF connecting to a remote computer

    Hi, I am just trying to figure out some basics with WCF and I've hit a snag. I went through a tutorial and created a client-server on my local machine. Now, I want to move the service exe (called service.exe) to a different computer and connect to that. I started the exe on the remote...
  4. wawalter

    Excel out of memory

    Hello, I need to create about 1,000 excel files. It works fine through about 300 or so then I get the following error: Not enough memory to run Microsoft Office Excel I then have to reboot my computer and run another 300 or so then repeat. Just closing the application doesn't fix the error...
  5. wawalter

    Reading and writing a large text file

    Hello, I am trying to read in a large text file (2-6 gig), parse what I need and write it out to a smaller text file which is about 20% of the size of the original. The problem is in this read/write and amount of memory the program uses just keeps growing and growing until with a 4 gig or...
  6. wawalter

    VFP7 dll error handling question

    Hello, I have created a DLL in VFP7 that I call from a C# application. Normally it works fine. The problem I'm having is when there is an error in the DLL, the message returned to C# is meaningless. Operation aborted (Exception from HRESULT: 0x80004004 (E_ABORT)) I set up an "on error"...
  7. wawalter

    Trouble loading file with FileSystemObject

    Hello, I am trying to load large text files in to a dbf. I was using the native fox file functions and it worked file until I hit the 2 gig limit. So, after reading this, I switched to use FileSystemObject (FSO), but I'm having a problem. I use substr to split each line and keep only the...
  8. wawalter

    Filtering a bindingsource

    Hello, I am using a DataGridView databound to a BindingSource to bind to a List Collection. The binding works and I can update my List. Now, I'm trying to get it to filter the List when I load in to the datagridview. The BindingSource has a filter property, but from what I read I think that...
  9. wawalter

    Using web user control in a repeater

    Hello, I am trying to use a web user control I created in a repeater. I can get the control to display in the repeater but, the problem I am having is none of the properties I set when creating the control display on the page. The properties work if I create a single instance of the control...
  10. wawalter

    Problem with SQL Assembly and Excel

    Hello, I posted this originally in the SQL Server Forum, but someone suggested I post it here, so... I am trying to create an assembly that will use Excel to create and output an xls file. The dll runs fine when running in VS2005, but when I try to create the assembly on the SQL Server using...
  11. wawalter

    Using Assembly with Excel

    Hello, I am trying to create an assembly that will use Excel to create and output an xls file. The dll runs fine when running in VS2005, but when I try to create the assembly using the following: create assembly CopyFileTest FROM...
  12. wawalter

    Updating GUI from object

    Hello, I have what I think should be a simple problem, but it is stumping me. I have a form that creates a class to do some work. I want the class to be able to update a status bar on the form. So far the way I have it working is by passing a reference of the form to the constructor of the...
  13. wawalter

    Changing connection of SSIS package at runtime

    Hello, I have a DTSX package I am running from a C# program that is working fine. Now I want to be able to change the connection string of the SQL Server source data at runtime. I've been messing with the Connections collection of the package, but I can't get it change. Thanks for any help, Bill
  14. wawalter

    Slow execution of stored procedure

    Hello, I have an sp that runs in less than a second if run from query analyzer, but if the same sp on the same db server with the same parameters is run from a web site or windows app it takes about 5 minutes to run. Other sp's run at the same speed whether called from the web site or windows...
  15. wawalter

    loading page and ispostback question

    Hello, I'm using ASP.net 2 with C#. My question is I have a web form where the user will fill out some info then click a save button. The save button will save an object then I want to reload the page reset to its original state as if they just opened the page. Is there a way to reset the...
  16. wawalter

    inheritance problem

    Hello, I am trying to have my web page inherit from another page in .Net 2.0. It usually works fine, but every once in a while some or all of the child pages return this error: The type or namespace name 'NETBasePage' could not be found (are you missing a using directive or an assembly...
  17. wawalter

    Passing objects between pages

    Hello, I need to pass an object from one page to a recieving page and then pass it back to the original page after the object is altered by the user. I found a couple examples using Server.Transfer and either a hidden control or using the viewstate, but the examples either don't work (at least...
  18. wawalter

    SP speed slow

    Hello, I just moved some SPs from our development box, which is SQL2000 to our production box, which is SQL2005. They are both hitting identical data sets. The first time the SPs are executed, they run pretty slow. But, on the development server, subsequent executions are very fast...
  19. wawalter

    Macro Subsitution in C#

    Hello, I am wondering if there is a way of performing macro subsitution in C#? I used to do this in Fox Pro and it is basically replacing one variable for another. Here is an example of what I am trying to do: I have five label controls on my form lbl1 - lbl5. I want to access each of these...
  20. wawalter

    Fox 2.6 on Unix server

    Hello, My company recently moved our production server from a Windows server to a Unix server, a EMC Celerra NAS. I am now frequently getting corrupted indexes on a legacy program that had previously rarely had any problems. I have to erase the cdx file and recreate all the indexes. The...

Part and Inventory Search

Back
Top