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 Wanet Telecoms Ltd 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: sjakiePP
  • Content: Threads
  • Order by date
  1. sjakiePP

    Maximum number of columns?

    Dear all, Is there a maximum number of columns I can retrieve from an excel sheet? I am using Selenium with Excel through an ODBC connection. When I get to columnnr 256, my program just stops. No warning or exception is given. I'm using jdk1.7.0_03 with Excel driver version 12. If there is a...
  2. sjakiePP

    AppendChild gives Error 438

    In my Dictionary I have several DOMDocuments. These are taken out of the dict with XMLDocAOHA. To append this document to a Node I have to convert the DomDocument to an IXMLNode. I'm using Xpath to do this. Then I am adding the new XMLNode to XMLNodeBasisBody, but then I get Error 438. What...
  3. sjakiePP

    Copy entire content of xml files

    Hello, In Excel 2003 I have made a script that copies the contents of xml files. But this is done one element at the time (rootNode.appendChild(xmlElement)). This takes a lot of time with large files (50mb+). Is it possible to copy the entire content of a xml file? The first thing I did to...
  4. sjakiePP

    adding namespaces

    Hello all, In Excel 2003 I want to copy the contents of XML files. I open the original and copy the content to a new xml file. Also I can change the number of a certain element, the first one under the root element. My xml files contain namespaces. This is done with help of XPath. But to use...
  5. sjakiePP

    problem with shim

    Hello, After I have made my outlook add-in I built a shim for it with some help from the MSDN. Everything works, but I still get an exception: First-chance exception at 0x7c81eb33 in OUTLOOK.EXE: 0xE0434F4D: 0xe0434f4d. What does this mean? How can I solve it? My second question is how can I...
  6. sjakiePP

    Outlook versions

    Hello, After I have created my Outlook add-in, I have installed it on my machine. This works, but on another pc with the same outlook (2003) version it doesn't work. The add-in consists of a button in the standard commandbar. It uses the Interop.MAPI (to access the addressbook)...
  7. sjakiePP

    closing a new mail screen

    Hello all, I have an outlook component to send a sms. When opening a new mail window, you are able to click a button to send the message. After the message is sent, I want to close the window. How can I do that? Untill now I found it has something to do with a WindowHandler. How does it work...
  8. sjakiePP

    Cannot change thread mode after it is set

    Hello, Above is the exception that I receive when I want to open a new MAPI session, to retreive the global address book from the exchange server. I am building an Outlook add-in, the version used is 2003 I tried to add [STAThread] to the methods used, but this had no effect. What could this...
  9. sjakiePP

    global address list

    Hello, I'm trying to create an outlook (2003) add-in. Now I want to retreive all contacts from the global address list. How can I do this? I have succeeded in retreiving the contacts from my contact folder, but not from the global address book. These are stored on the exchange server of sbs...
  10. sjakiePP

    button doesn't show in outlook

    Hello, I want to add a button to the command bar of outlook 2003 on the screen for sending new mail. For this I have following code: CommandBar oStandardBar = Inspector.CommandBars["Standard"]; //CommandBar oStandardBar = Inspector.CommandBars["Default"]; //CommandBar oStandardBar =...
  11. sjakiePP

    c# trying to convert url

    I have a string from which I create an Uri. But I want to convert this string to iso-8859-1 format. How do I convert the string? Encoding iso = Encoding.GetEncoding("iso-8859-1"); byte[] uri_byte = iso.GetBytes(uri_string); --------------------------------------------- Yes, the world is...
  12. sjakiePP

    storing outlook forms in another class

    I have saved a number of forms in outlook 2000. With Exchange 2003. These forms are stored in a wrong class, how can I change the names of these classes? Thanks in advance Sjakie --------------------------------------------- Yes, the world is full of strange people.
  13. sjakiePP

    not a wrong column name

    Hello, With PL/SQL Developer I recieve the error ora-00904. It tells me that my column names are not correct. Then I checked it, the names are correct. What could it be? Thanks in advance. Sjakie --------------------------------------------- Yes, the world is full of strange people.
  14. sjakiePP

    EOF Exception reading Blobs

    Hello, In my application I get an EOF Exceptoin when I try to read a Blob. Here's the code fragment: Blob blob = null; ObjectInputStream oin = null; Object object1 = null; java.rmi.MarshalledObject object2 = null; Object object3 = null; object1 = oin.readObject(); //eof exception oin.close()...
  15. sjakiePP

    log4j.xml

    Hello, How can I setup log 4j to log debug from a certain number of classes? I do not want all the output, but only from classes I want. thanks Sjakie --------------------------------------------- Yes, the world is full of strange people.
  16. sjakiePP

    exporting tables to sql

    Hi all, Can anyone tell me how to export tables to a sql file? I'm using Access 2000. In which I created a number of tables. Also, I would like to know if it is possible to include the relationships between these tables. Thanks in advance Sjakie ---------------------------------------------...
  17. sjakiePP

    database is read-only

    Hi, When I access my database through an application I am developing, I can add, delete and modify what I want. When I access the database throug an earlier production version, I get the error that the database is read-only. The rights is set to user Everybody with full access. The database is...
  18. sjakiePP

    difference between Calender on windows and linux

    Hi, On a Win 2000 I use following to determine todays date: Calendar rightNow = Calendar.getInstance(); int year = rightNow.get(rightNow.YEAR); int month = rightNow.get(rightNow.MONTH); int day = rightNow.get(rightNow.DAY_OF_MONTH); int hour = rightNow.get(rightNow.HOUR_OF_DAY); int minute =...
  19. sjakiePP

    clipboard menu keeps showing up

    Hello, When ever I copy and paste something a clipboard menu keeps showing up. This is very annoying. How can I disable this menu item from doing that. I use office 2000. And it happens with Word and Outlook. Thanks in advance, Sjakie. --------------------------------------------- Yes, the...
  20. sjakiePP

    form_activate function generates error

    Hi all, In my vb6 program I have a number of forms with a Form_Activate function in them. The form has a toolbar and an imageList. I use the Form_Activate function so that the images are shown on the toolbar. Unfortunatly with one it doesn't work. I get "Sub or Function not Defined" error...

Part and Inventory Search

Back
Top