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

    Multilingual Terms store terms not showns

    Using SharePoint 2010, I've setup a multi-lingual term set into a term store. Everything looks good. My point is that I could only seach using default languag term (in English) and not search using translated terms. For example, I've a term "Monday" in English, and "Lundi" in French. I could...
  2. Suedois

    AIC Setup

    Hi, I've made an AIC with VB.NET, like shown in this link : http://support.microsoft.com/default.aspx?scid=kb;en-us;Q320850 It's working well on my computer. I have now to deloye this solution to a test server, where I have Biztalk and the .NET Framework already installed. My problème is...
  3. Suedois

    MS-Project ole automation

    Hi, I export data from Access database to Ms-Project 98. The first time that I export data, I get the message : the map with the specified name does not exist. I use tool, organizer and "maps" tab to add the specified map to global.mpt and after that all works well. My question is ...
  4. Suedois

    MS-Project ole automation

    Hi, I export data from Access database to Ms-Project 98. The first time that I export data, I get the message : the map with the specified name does not exist. I use tool, organizer and "maps" tab to add the specified map to global.mpt and after that all works well. My question is ...
  5. Suedois

    Page break question

    Hello, I have a report with some details and a list footer that is very long (about 15 lines of Information). Have someone a tips to make the footer "dynamic". The 15 lines are optional. So I have blank line. But the footer is static so I have some page break to print the footer. If...
  6. Suedois

    Impromptu CreateFilterFor OLE Automation

    Hi, Here is the answer: The exemple in help add filter for a catalog who have no catalog level nor schema level. For working with the Oracle database, you have to use the schemalevel set ObjLevel = objcatImp.Database(1).SchemaLevels(1) Now the .CreateFilterFor will work ...
  7. Suedois

    Calculate numeric data in textboxes???

    Simply : CLng(Val(Textbox7) + (Textbox5) + (Textbox6)) * (1.15) VB automaticly change datatype to Integer (val() of as string)
  8. Suedois

    icon on a menu

    You have some API: http://www.thescarms.com/vbasic/ClearForm.asp Or new menu controls: http://vbaccelerator.com/codelib/cpopmenu/article.htm Enjoy !
  9. Suedois

    Upgrade from Impromptu 5 to 6

    Some problem, who leade to a GPF, have been removed. Imp6 is more stable that Imp5 when you tri some unusual stuff.
  10. Suedois

    Writeing to a file please help

    Why not use BV6 power and use Microsoft Scripting Runtime ? Here is the code : Dim oFso As New FileSystemObject Dim sTextStream As TextStream With oFso Set sTextStream = .OpenTextFile("c:\temp\test.txt", ForWriting, True) sTextStream.WriteLine ("N")...
  11. Suedois

    Require Urgent Help on Cube Sizing

    Hi Ganas, Sorry, but I don't no if it's part of product documentation. What is sure is that it's in PowerPlay advanced cours. You want that I make you a small summary ?
  12. Suedois

    Require Urgent Help on Cube Sizing

    Hi, You have a whole chapitre in Cognos PowerPlay administrator cours who explain what will be the size of a cube depending on number of mesures/dimension/categories, plus type of mesures, number of currency, ... If it's what you need, I can write you all this parameters
  13. Suedois

    Impromptu CreateFilterFor OLE Automation

    Hi, I'm developping an VB application who add users and restrictions on some Impromptu's catalog. Adding users and some basic restrictions work well. But when I tri to add a filter (.CreateFilterFor), I get the message "Run-time error '13' : type mismatch". I don't understant, cause...
  14. Suedois

    Creating user with VB

    Hi All, I'm currenty working on a program who will add user to a catalog. I can without problem add user using : ImpCat.activeUserClass.UserClasses.add "UserName" Now, I have to add database autentification (User, password ) with DatabaseConnections object, but I don't no how ...

Part and Inventory Search

Back
Top