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!

Search results for query: *

  • Users: alexbo
  • Order by date
  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...
  16. alexbo

    urgent help regarding print

    Hi, It's not that simple, you better read it on a manual of Visual C++ this is only a breif explanation of how the print job works but it's very difficult to explain it all. When you create A Single document or a multi document project the wizard creates for you the following functions BOOL...
  17. alexbo

    Visual C++, Lotus notes

    Thanks a lot even to your wife I have a lot of things to read now, I surely can bring out the task properly bye Alex
  18. alexbo

    Asp Not Working

    Hi Everybody, I'm new in Asp programming, I installed IIS on Win 2000 professional and tryed to execute a simple asp application, that is a sample in asp that iis install, I tryed to execute it but it doesn't work it gives me a event registry error, it says that /lvm/root/%1 is not interfaced...
  19. alexbo

    Visual C++, Lotus notes

    Hi everybody, This is my problem, I'm a Visual C++ programmer and my boss asked me if there is a way to call a &quot;Send&quot; procedure from visual C++ so it can send a Lotus notes message, like I do using Microsoft outlook, can someone tell me which article to look for ect. by Alex
  20. alexbo

    Lotus Notes and Visual C++

    Hi everybody, This is my problem, I'm a Visual C++ programmer and my boss asked me if there is a way to call a &quot;Send&quot; procedure from visual so it can send a Lotus notes message, like I do using Microsoft outlook, can someone tell me which article to look for ect. by Alex

Part and Inventory Search

Back
Top