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 strongm 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. ianwin

    VB6 ODBC Connection under Windows 7

    Thanks for the feedback, The app and windows installation are both 32 bit. I have since identified that this issue was realted to ODBC linked tables used in a local MS Access database which is also accessed by this application. By using a version of the database stored in the application...
  2. ianwin

    VB6 ODBC Connection under Windows 7

    Hi, I am trying to get a VB5 app which uses a workspace to run the following ODBC connection Global ODBC_WS as Workspace Global ODBC_DB as Connection set ODBC_WS = CreateWorkspace ("","", dbUseODBC) set ODBC_DB = ODBC_WS.OpenDatabase("", dbDriverComplete, False...
  3. ianwin

    Outlook Form Designer has been made unavailable by your administrator

    Hi, I am trying to devlop an Outlook form however following a recent upgrade to Office 2007 I now recieve the error message "The Outlook Form Designer has been made unavailable by your administrator" when clicking on the "Design This Form" button. The office upgrade was distributed through...
  4. ianwin

    ™ Character in Varchar2 field

    I have a product description field which I need to instert the character ™. I have a VB.Net program which allows the user to enter details into a text box and then writes the data to the database. I have recommended the user use the jeyboard shortcut alt(0153) to enter this and it displays ok...
  5. ianwin

    SQL Script Connection Question

    Hi, The batch file i'm using is: for /f %%a IN ('dir /b *.csv') do svrmgrl @Insert.sql %%a The Insert.sql file is: BULK INSERT Table1 from %1 with ( FIELDTERMINATOR = ',',z ROWTERMINATOR = ',\n' ); I am trying to work out the line which I am assuming comes before the insert statement...
  6. ianwin

    SQL Script Connection Question

    I am trying to run an insert statement into an SQL Server 2000 database from a .sql file which is being called from a batch file running on the same server as the database. I have got the insert statement working when run from an interavtive SQL session, but I cannot get a connection from the...
  7. ianwin

    EXE has to run once with admin rights

    The user has never been an admin user, it is a corperate environment however this worked before SP2 was installed and as far as I am aware the group policy has not been changed.
  8. ianwin

    EXE has to run once with admin rights

    Is there a change in how this is done under SP2 as the procedure described above working for a the same user with the same access rights before SP2 was installed.
  9. ianwin

    EXE has to run once with admin rights

    I am just copying the exe onto another PC> The application is made up of a suite of 9 exe's which have been installed and are running ok I am only changing one of them. Once the new exe has been run once with admin rights it then runs ok under a restricted access account. I think the is because...
  10. ianwin

    EXE has to run once with admin rights

    I have developed an application in VB6 which has been running ok for several years with the odd enhancement every so often. I have recently got a new laptop with XP Pro SP2 installed, when I make a change to the program and regenerate the exe it works ok on my PC (I have full admin access for...
  11. ianwin

    OUTLCTL.dll System Error

    I have resolved this issue by updating the file OUTLCTL.dll located in C:\Windows\System32 from version 10.0.6501.0 to 11.0.5510.0.
  12. ianwin

    OUTLCTL.dll System Error

    I am having some issues with the OUTLCTL.dll. I have a project with this control on a form displaying an outlook mail folder. This has been working ok, however I recently got an updated PC with XP SP2 since then whenever I have attempted to use the control i.e. navigate to an outlook folder I...
  13. ianwin

    DllRegisterServer entry point was not found

    Thanks for the info. I have run dependancy walker on this file and all looks ok, I have also been able to register other dll files ok on the same PC and therefore I don't think this is an issue with REGSVR32 is there any other reason for this error appearing?
  14. ianwin

    DllRegisterServer entry point was not found

    I have been trying to register several dll files on a PC in the windows\system32 folder however when i use regsvr32 I get the error dll was loaded, but the DllRegisterServer entry point was not found the file could not be registered. I have successfully registered the same file on other PC's in...
  15. ianwin

    Sleep Without Freezing in VB.Net

    I will try putting the loop but I am also interested in how to run this as a seperate thread. The main application has several controls on which represent devices around our site that the program communicates with via the text file described above. There is no direct interaction between the...
  16. ianwin

    Sleep Without Freezing in VB.Net

    I need the program to wait because it is interacting with another system by writing to and from a text file. The program writes a command in the text file with the other application reads, and executes before writing the results back into the same text file. My application cannot continue...
  17. ianwin

    Sleep Without Freezing in VB.Net

    I need to make a VB.Net application pause for 5 seconds but still be responsive. I tried using a loop with a timeout based on a timer with DoEvents in the loop, this worked but used 99% of the cpu which was not acceptable. I have changed this to using System.Threading.Sleep(5000) which reduces...
  18. ianwin

    Variable is either undeclared or was never defined

    I was not sure what you meant by cleaning the code? I have tried having the custom controls as managed code and as referenced dll's bit this did not seem to make any difference.
  19. ianwin

    Variable is either undeclared or was never defined

    I have tried rebuilding the project and checked that the references are correct but the problem still persists.
  20. ianwin

    Variable is either undeclared or was never defined

    I am currently running VS2003 on XP and I recently had to look at making a change to a project after it had been working ok for several months. When I opened the project I get the error "Variable is either undeclared or was never defined" on several custom controls I have on the form. When I...

Part and Inventory Search

Back
Top