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. SpenBabe

    Copying emails to another SQL database

    One of our clients requires their membership system extending so that all emails sent & received regarding a member's email address be referenced or stored in the SQL database that hosts the core data. Is there some product/technology out there that could allow us to either create of copy of...
  2. SpenBabe

    Interface with Exchange Server

    A client of ours wishes to expand their current membership system. The current system as an "events" subsystem that allows them record dates & times of telephone calls & letters sent. They wish that all emails sent & received by a member be also recorded. Ideally they would want the actual...
  3. SpenBabe

    Incrementing Version Numbers

    I know this can be done, cos I've done it before, but I cannot find the article in MSDN anymore. What i am trying to do is change the FILEVERSION & PRODUCTVERSION properties of the compiled code, each time I compile them. I remember it involved your own header file & a VS6 macro that opened...
  4. SpenBabe

    Export to Word gives 'Access Denied'

    Can anyone help ? Our C++ code uses the Active X control to display our reports. We have the export button enabled on the toolbar & can export fine. We can even export directly into Word (without saving to a disk file first) if the PC has the u2dapp.dll However, when we try to export through...
  5. SpenBabe

    Microsoft SQL & IB6 compatibility ?

    Thanks for that Martijn, Since I posted this, I have discovered most of what have said to be true. It certainly doesn't like IB syntax for Procedures/Triggers. PS: I have the registered version IB WorkBench (1.4.1) & have tried the DataPump - What a "cool" tool !!!! Spencer Window...
  6. SpenBabe

    Microsoft SQL & IB6 compatibility ?

    1. How compatible are MS-SQL 2000 & IB6/7 in terms of datatypes, triggers, procedures, etc? I have looked at a SQL 2000 server database through Enterprise Manager & the metadata generated as a script looks totally foreign to me ! 2. Is there a quick way to get all the tables, triggers &...
  7. SpenBabe

    Anyone else getting this problem that SCO says does not exist ?

    Nope, not using SCO as DHCP server & just in case you ask, most of the sites affected don't have any form of DHCP at all ! Spencer Window (not a joke name) spencer.window@eastmidlandcomputers.ltd.uk
  8. SpenBabe

    Any ides for software to design dialogs/forms ?

    Can anyone recommend any software that allows use to "draw" the dialogs/forms that will eventually end up in our packages. We have produced lots of bespoke character-based software in the past & as such always provide the client with some form of written specification, which included...
  9. SpenBabe

    Anyone else getting this problem that SCO says does not exist ?

    We are at the end of the road with this one !!!! We have 20+ clients that we have upgraded to 5.0.5 or 5.0.6 over the last 2 years. Some of the upgrades involved new hardware as well. The problem is that on an hourly basis, telnet sessions are "freezing" up. By whatever means...
  10. SpenBabe

    Folder Redirects

    Not sure what you're getting at, but the trick I use is to only create shares on 2000 box by using the Computer Management tool. When add a new share under Shared Folders/Shares, the wizard prompts you with the permissions required. Spencer Window (not a joke name)...
  11. SpenBabe

    Export Active Directory Info

    Since I posted message, I've played around with Visual Basic Scripts & managed to change 1000+ users settings in about 45 seconds - wow ! I've got TechNet, but I bet you can find same on MS website. Look for a doc titled "Step-by-Step Guide to Bulk Import & Export to Active...
  12. SpenBabe

    Export Active Directory Info

    You can use tools called LDIFDE & CSVDE, which export to LDIF & CSV format respectively. You can find them on the Active Directory domain controller in the WINNT folder, but you can copy & run them from any Windows 2000 workstation. Spencer Window (not a joke name)...
  13. SpenBabe

    Folder Redirects

    Check the Settings tab on the My Documents policy under Folder Redirection. There is a radio button for 'Grant user exclusive access' & also one for 'Move to new location' The default settings cause the system to copy the contents of My Documents (or where it was redirected to by another...
  14. SpenBabe

    Folder Redirects

    Obvious I know, but check the Application Event Log on the workstations that your users logon from & look for errors for UserEnv & FolderRedir. I've had same thing on 1000+ user network, but eventually found it was permissions problem. Also, are your workstations Windows 2000 or above, as far...
  15. SpenBabe

    AD user object attributes

    I know what you're talking about, but it's not much help to me. But hey this Microsoft we're talking about & life would be so much duller if things worked like you expected them to !!!! Spencer Window (not a joke name) spencer.window@eastmidlandcomputers.ltd.uk
  16. SpenBabe

    AD user object attributes

    Can anyone tell me which attribute for a user object in Active Directory stores the Terminal Service Profile Path (The one on the Terminal Services tab, not the Profiles tab in Active Directory Users & Computers). I am using LDIFDE/CSVDE to extract info from a very badly put-together network of...
  17. SpenBabe

    Active Directory user object attributes for Terminal Services

    Can anyone tell me which attribute for a user object in Active Directory stores the Terminal Service Profile Path (The one on the Terminal Services tab, not the Profiles tab in Active Directory Users & Computers). I am using LDIFDE/CSVDE to extract info from a very badly put-together network of...
  18. SpenBabe

    Reserved words & fields name in Interbase

    Not much help I know, but if you have to keep same names you can quote them in the table definition. For example:- CREATE TABLE MYTABLE ( CODE CHAR(10) NOT NULL, "PASSWORD" CHAR(20), ..... ) But watch out if you going to use 3rd party software to access the data through ODBC...
  19. SpenBabe

    When is a modal dialog not modal ?????

    I have a simple SDI application that constructs CDialog-based objects & calls DoModal() on them. Everything is fine except that 3 dialogs are not just for data entry with a OK & a Cancel button. These 3 dialogs process records in a database & show a progress bar as they proceed. Whilst they...
  20. SpenBabe

    ODBC Database Record Add

    Between the CRecordset Open & Close statements, try :- wallangle_set.AddNew(); wallangle_set.m_FIELD1 = csMyString1; wallangle_set.m_FIELD2 = csMyString2; ... wallangle_set.Update(); It's the 'Update' function that builds the SQL INSERT statement for you based on the fact that you have called...

Part and Inventory Search

Back
Top