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 bkrike 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: FoxT2
  • Content: Threads
  • Order by date
  1. FoxT2

    CDO mail function help

    Hi, Ok here is the situation. I have MS Exchange 2003 (Version: 6.5.7638.1) on a MS Windows 2003 server. All clients have WinXP Pro with MS outlook installed. I'm trying to develop an application that can send emails without using MS Outlook. So I am trying the CDO mail funcion...
  2. FoxT2

    Help with SendSmtpEmail Function

    Hi, Anyone here know if it is possible to send attachments other than text files using the SendSmtpEmail function found at... http://fox.wikis.com/wc.dll?Wiki~SendSmtpEmail I need to send MS Excel and MS Word documents as attachments. And so far this function will not accept any...
  3. FoxT2

    Email Acounts hidden from the Global Address List.

    Hi, Anyone know if it is possible to create an email account in MS Exchange 2000/2003 that will not show up in the Global Address List. I need to make some anonymous email accounts for certain users that do not want there email address to show in the Global Address List in MS outlook...
  4. FoxT2

    HTML command button setup

    Hi, I am working with a HTML page and am trying to get a command button to execute this string... "<%= oProp.ScriptPath+[?action=thanks] %>" I have tried it like this... <INPUT id="Button1" type="button" value="Button" name="Button1" onclick="<%= oProp.ScriptPath+[?action=iepthanks] %>">...
  5. FoxT2

    Web Software for a quiz

    Hi, Anyone know where I can get a web based software package that you can setup for a quiz. What I'm attempting to do is create a quiz at our office that can be taken by employees loging in from the internet from anywhere. I realize that I could develop something from scratch, but did...
  6. FoxT2

    Need to open a .dpb file

    Hi, What do I need to open a .dpb file? What application uses a file with this extension? I have a .dpb file that I need to get access to for a customer. Thanks, FoxT
  7. FoxT2

    Turn strict mode off

    Hi, I have been told that turning strict mode off with fix a problem I am having with a database installation. However I am not sure where to do this. I was told that you goto MySQL instance config and reconfigure the server with the Detailed Configuration. And turn off strict mode...
  8. FoxT2

    Upgrading from PHP 4.4.2 to PHP 5+

    Hi, Ok I'm trying to upgrade from PHP 4+ to PHP 5+ and I have noticed that in PHP 5+ it no longer default to MySQL. My question is, what do I need to do to make this work with MySQL. And yes I have visited the PHP and MySQL web site for answers. And no, I could not find anything specific...
  9. FoxT2

    Failed to connect to database MyData as MyUser@localhost

    Hi, I am using MySQL 5.0. And so far, every attempt I have made to get any of my applications to connect to any database I create has failed. I have tried create several different user accounts in many different ways, and still none can connect to a MySQL database. Even when I use the...
  10. FoxT2

    Executing SQL Statements from a Text File

    Hi, In earlier versions of MySql I used to execute SQL statements from a text file like this.. mysql nuke < nuke.sql but for some reason since I have upgraded to MySQL version 5.0, whenever I try this command from the Window command prompt I get this error... ERROR 1045 (28000)...
  11. FoxT2

    Create a database in MySQL 5.0

    Hi, How do I create a database in MySQL 5.0. I used to do it this way in the previous versions... mysqladmin create myDataBase also how do I assign a database user name and password. Is there a graphical interface that comes with MySQL 5.0 like the one that was in the older versions. I...
  12. FoxT2

    Password protect an email

    Hi, Is there any way to password protect an email so that the receiver cannot open the email until a password is entered? I'm using Exchange 2000 server with Outlook 2000 on the client computers. Thanks, FoxT2
  13. FoxT2

    Email Addresses From Active Directory

    Hello, Anyone have a way to return all email addresses from active directory so that they could be stored in a table? Thanks, FoxT
  14. FoxT2

    Backup SQL databases by Copy & Paste

    Hello, Is there a way to backup SQL server databases by copying and pasting them to another backup folder on the hard drive? Kind of like I do in MS Exchange server where I stop the Information Store service and then copy the MDBDATA folder to another backup folder. Also is there a...
  15. FoxT2

    Mark All fields in a table as NULL

    Hello, I have several tables that I imported into SQL server. The problem is that I need all my fields in certain tables to accept NULL values, however, the file definitions show that the accept null values column is not checked. Is there a way to select all the fields in a table and...
  16. FoxT2

    SQL insert into field limitation question

    Hello, Is there a limit to how many fields you can specify in a INSERT INTO command? I am trying to build a INSERT INTO command 248 fields and it will not execute. INSERT INTO table1 (fld1,fld2,fld3,fld4,......,fld248) VALUES (fld1,fld2,fld3,fld4,......,fld248) ---------------- Another...
  17. FoxT2

    Unable to load crystal report error

    Hello, I have a ASPX.VB web form with a CrystalReportViewer on it and when I execute this code below it errors "Load Report Failed". This same code works just fine on a VB windows form application. Why does it not work in ASPX? The report does exist and is in the solution explorer...
  18. FoxT2

    Repopulating a datagrid with page index problem.

    Hello, I have a datagrid on a webform that I repopulate based on user input on the form. The problem is that sometimes when I repopulate the grid it errors on my databind property with this error... *** Invalid CurrentPageIndex value. It must be >= 0 and < the PageCount. *** This is the...
  19. FoxT2

    Simple SQL string question for totaling

    Hello, I need to build a SQL string that with return a total from a SQL database table field that I can pass to a textbox. I believe I have the correct syntax for doing this, however it is not working. Here is a brief example of my code. Also, when I execute this same SQL string using MS...
  20. FoxT2

    Enable a column in a datagrid for editing

    Hello, How can I enable 1 entire column in a DataGrid to allow editing? I can get 1 column on 1 row to allow editing with the "EditItemIndex" property, but not the entire column. Thanks, FoxT

Part and Inventory Search

Back
Top