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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by alexbo

  1. alexbo

    pointer vs non pointer

    Hi, I'm not familiar with Java, but I know C++ and there is a big difference in what you wrote..... because: if you declare Car *MyCar= new Car(), you're not declaring an object, but a pointer to the object, this means that every function that takes Car * as a Parameter can modify the values...
  2. alexbo

    Atthacment problem

    Hi Folks, I've wrote a c# application that sends mail over lotus notes, using the domino.dll, It automatically sends mail when its called by programs or procedure that works over night. The procedure worked fine for almost two years, in the last couple of month, sometimes crashes and print out...
  3. alexbo

    AppendText error

    Hi folks, I have te following code for sending email in c# enviroment: Doc.ReplaceItemValue("FORM","MEMO"); Doc.ReplaceItemValue("Subject",Subject); Doc.ReplaceItemValue("Sign","1"); Doc.ReplaceItemValue("Principal", User); Doc.ReplaceItemValue("FROM", User)...
  4. alexbo

    GetDlgItem error

    Hi everybody, I'm programming in MFC, I have the following problem. I created in the resource editor a CCommandButton that has the following id IDC_CONF_PASS_ATH_DETT the dialog is in an ActiveX enviroment. then i wrote the following code: <code>...
  5. alexbo

    problem saving xml file

    Maybe I didn't explain myself, If i access the page from the drive example c:\MyFolder\mypage.htm it works fine, if I access it from http://www.mysite.com/mypage.htm it gives me Unauthorize access and in IIS c:\Myfolder is linked to http://www.mysite.com/ in the istruction...
  6. alexbo

    problem saving xml file

    Hi I have the following problem, I have to write an XML file and this is the code: <script language=javascript> function Write() { if (document.getElementById("Number").value.length==0) { alert('Inserire il numero della sessione') document.getElementById("Number").focus()...
  7. alexbo

    Printing Problems

    Hi Everybody, I have the following problem: I retrive from the current machine all the printers that the machine has configured, I search in the list for the "win2pdf" printer, If the printer is installed I have to set that printer, so it will print on that printer. The problem is that when I...
  8. alexbo

    Datagrid control

    You can also do it in a simpler way, if you're use C# in a Microsoft Enviroment, Simply do the following.... Define in the resource area of the DataGrid a new styles in the TableStyle Set. In tha Dialog Box that appears you put in the MappimgName field the alias of your DataTable..... In the...
  9. alexbo

    Search contacts in Outlook

    Hi, I have a little question: with the the following code I created a contact in outlook: Outlook.ApplicationClass App; App= new Outlook.ApplicationClass(); Outlook.ContactItemClass Contatto= (Outlook.ContactItemClass)App.CreateItem(Outlook.OlItemType.olContactItem)...
  10. alexbo

    Oulook security

    I know it's a simple question, but the costumer wants to know which is best. One of our costumers, raised the following problem, If I mount the last service pack of windows 2000, which mail reader prevents the incoming of virus in the best way: Outlook express or Outlook 2000, indipendently of...
  11. alexbo

    Data Grid memory allocation problem

    I have the folowing query: I'm using a datagrid with an ado attached, when I press the search button and give a query to the ado... he allocates some memory... when i press search again the ado allocates some other memory over the one he has allocated before.. without freeing the one allocated...
  12. alexbo

    Event viewr message, Sql Performance drop down

    Thanks we resolved the problem, we hav installed the Sql 2000 personal Edition instad of the standard edition... I've read in the help on dbcc concurrencyviolation and found it out.... bye Alex. thanks
  13. alexbo

    Event viewr message, Sql Performance drop down

    Hi all, I have installed SQL on a server that as 5 processors, at a certain time, even if the Cpu usage is at 3% the Sql preformance drop down and the server crashes, and we have to restart it.... I've watched the event viewer and found that SQL generates the following information...
  14. alexbo

    Using DDE under Visual and ZetaFax

    Hi everybody, I've got a query, I'm trying to do a program in Visual C++ that sends command thru dde to a ZetaFax application. I've got a book that contains examples in Visual Basic and not in Visual C I allready established a connection using the...
  15. alexbo

    Printer Problem

    Hi everybody, I have to print a document on a costum form defined by the user; In win9x you can set the following instructions: DevMode.dmpaparsize=DMPAPER_USER and everything works. In win 2000 and nt I found the instrucion AddForm(), GetForm() SetForm() Using AddForm...

Part and Inventory Search

Back
Top