AVDocSaveOptimized mit Visual Basic 2012

Ich habe Probleme mit genannter Funktion.  Ich habe schon alle möglichen Acobat-Verweise eingestellt, aber im Visual-Basic-Objektkatalog sind die Begriffe AVDocSaveOptimized und PDFOptParams nicht zu finden.
Dim pdDoc As Acrobat.CAcroPDDoc = CType(CreateObject("AcroExch.PDDoc"), Acrobat.CAcroPDDoc)
Dim PdfParameter As ???.PDFOptParams (?????)
pdDoc.AVDocSaveOptimized(avDoc, PdfParameter)
1. In Visual Basic ist nach Eingabe von pdDoc. die Funktion AVDocSaveOptimized nicht im Kontextmenü verfügbar. Allerdings ist auch keine Unterstreichung als Fehler vorhanden. Welcher Verweis ist notwendig, damit auch beim Überstreichen mit der Maus die Funktion mit Parametern angezeigt wird?
2. PdfParameter ist eine bestimmte Structure. Muss diese im Modul definiert werden oder ist diese im Acrobat-Verweis enthalten?
Wie muss die Definition von PdfParameter in Visual Basic aussehen (Zeile 2)?
Es wäre schön, wenn mir jemand weiterhelfen könnte.

The Acrobat SDK has different parts: JavaScript, Interapplication
Communication (which is what you are using), and the plug-in interface. You
cannot mix and match functionality across these different APIs. What you
are referring to is part of the plug-in interface (hence the sample code in
C - plug-ins are written in C/C++). You need to limit your search for API
functions to the IAC interface (or the JavaScript interface if you want to
to use the JSObject property of your PDDoc object).
And now in German:
Das Acrobat SDK hat verschiedene Teile: JavaScript, Interapplication
Communication (das ist, was Du verwendest), und das Plug-in API. Du  kannst
diese unterschiedlichen APIs nicht mischen -  die Funktion zum speichern
optimierter PDF Dateien ist Teil des Plug-in APIs, deswegen gibt's da auch
nur die Beispiele in C: Plug-ins werden in C/C++ geschrieben. Du musst
Deine Suche nach Funktionen im IAC API beschränken (es ist auch möglich,
JavaScript Funktionalität mittels des JSObject Objekts zu verwenden).
Karl Heinz Kremer
PDF Acrobatics Without a Net
PDF Software Development, Training and More...
[email protected]
http://www.khkonsulting.com
2014-10-17 9:54 GMT-04:00 Aladin99 <[email protected]>:
    AVDocSaveOptimized mit Visual Basic 2012  created by Aladin99
<https://forums.adobe.com/people/Aladin99> in Acrobat SDK - View the
full discussion <https://forums.adobe.com/message/6839914#6839914>

Similar Messages

  • Visual Basic 2012: #If Win32

    Visual Basic 2012: I am trying to use a library of functions which are implemented through a dll. The list of functions is bracketed by "#If Win32" and "#Endif". Does that mean the compiler has to carry out a look-up to find whether
    Win32 is True or False? If so, how do I tell it to do so? I can find "public virtual bool Win32 (go;)", but that does not seem to set a compiler option.

    You can't set another dll's preprocessor constants - the functions will be defined based on whether 'Win32' is true in that dll, not in
    your project.
    For your own project, you can set a preprocessor constant in one of two ways in VB:
    1. File-level - add "#Const Win32 = True" to the file.
    2. Add "Win32" to the project properties - 'Compile' tab, 'Advanced Compile Options'.
    Convert between VB, C#, C++, & Java (http://www.tangiblesoftwaresolutions.com)
    Instant C# - VB to C# Converter
    Instant VB - C# to VB Converter

  • Edit/update function not working properly on visual basic 2012

    help, i'm working on a update function on my aplication program using visual studio ultimate 2012 VB.
    after i fixed the error on my coding, i debug the program with f5. but, when i tried to update the data on the datagridview it doesn't change even thought the messagebox "data has been updated" show up.
    how do i fix this problem?
    here is the coding for update function:
    form1:
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    ClassSiswa.ubahdata(New SqlConnection, (txt_nis.Text), (txt_nisn.Text), (txt_namasiswa.Text), (cmb_kelaminsiswa.Text), (txt_kotalahir.Text), (DTP_siswa.Text), (cmb_agamasiswa.Text), (txt_beratsiswa.Text), (txt_tinggi_badan.Text))
    datagridview()
    End Sub
    Private Sub UpdateDataSiswa()
    ClassSiswa.Nis = txt_nis.Text
    ClassSiswa.Nisn = txt_nisn.Text
    ClassSiswa.Nama_Siswa = txt_namasiswa.Text
    ClassSiswa.Tanggal_Lahir = DTP_siswa.Text
    ClassSiswa.Jenis_Kelamin = cmb_kelaminsiswa.Text
    ClassSiswa.Kota_Lahir = txt_kotalahir.Text
    ClassSiswa.Agama = cmb_agamasiswa.Text
    ClassSiswa.Tinggi_Badan = txt_tinggi_badan.Text
    ClassSiswa.Berat_Badan = txt_beratsiswa.Text
    ClassSiswa.Updatesiswa(ClassSiswa.opencon, (txt_nis.Text))
    datagridview()
    End Sub
    classSiswa:
    Public Shared Sub ubahdata(ByVal _cn As SqlClient.SqlConnection, ByVal _Nis As String, ByVal _Nisn As String, ByVal _nama_siswa As String, ByVal _jenis_kelamin As String, ByVal _kota_lahir As String, ByVal _tanggal_lahir As String, ByVal _agama As String, ByVal _berat_badan As String, ByVal tinggi_badan As String)
    Dim sql As New SqlClient.SqlCommand
    sql.Connection = _cn
    sql.CommandType = CommandType.Text
    sql.CommandText = "update siswa set nis='" & Nis & "',nisn='" & Nisn & "',nama_siswa='" & Nama_Siswa & "',jenis_kelamin='" & Jenis_Kelamin & "' ,kota_lahir='" & Kota_Lahir & "',tanggal_lahir='" & Tanggal_Lahir & "'agama='" & Agama & "'berat_badan='" & Berat_Badan & "',tinggi_badan='" & tinggi_badan & "'"
    MessageBox.Show(" Data Telah Diupdate")
    ClassSiswa.closecon()
    End Sub
    Public Shared Sub Updatesiswa(ByVal _Cn As SqlClient.SqlConnection, ByVal _nis As String)
    Dim sql As SqlClient.SqlCommand
    sql = New SqlClient.SqlCommand
    sql.Connection = _Cn
    sql.CommandType = CommandType.Text
    sql.CommandText = "Update siswa Set nis = '" & Nis & "', nisn = '" & Nisn & "' where nis = '" & _nis & "'"
    sql.ExecuteNonQuery()
    End Sub

    Hello,
    A DataGridView knows nothing about the updates done as shown above, you need to update any rows that have changed yourself. For example. lets say I loaded data from a database table into a DataTable, create a BindingSource and assign that DataTable as the
    DataSource for the BindingSource. The BindingSource becomes the DataSource of the DataGridView so now when you moved up/down rows in the DataGridView you are changing position in the BindingSource and can read this data via BindingSource.Current by casting
    Current to a DataRowView then access the Row property with Field(Of T or SetField(Of T. Couple this will logic to locate rows that may not be the current row and we still can use SetField(Of T)(Col,Value) to update data in the BindingSource which is then immediately
    reflected in the DataGridView.
    The following is for MS-Access but the same logic applies for SQL-Server database via SqlClient data provider rather than
    OleDb data provider.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help, this will help others who are looking for solutions to the same or similar problem. Contact via my webpage under my profile
    but do not reply to forum questions.

  • Adobe Reader 7 mit Visual Basic

    Hallo,
    ich würde gerne den Adobe Reader 7 von VB aus so starten, dass die Suchmaske für die erweiterte Suche in einem bestimmten Index (erstellt mit Acrobat 5) angezeigt wird. Es soll keine Dokument geladen sein oder eine Suche durchgeführt sein.
    Ich brings aber einfach nicht hin. Unter dem Acrobat Reader 5 hatte ichs noch mit Sendkeys versucht, jedoch je nach Geschwindigkeit des PC mit mehr oder weniger guten Erfolg.
    Mit createobject("AcroExch.......) usw hab ichs auch versucht, das scheint aber unter dem Reader 7 nicht zu funktionieren. Oder doch?
    Vielen Dank schonmal für jede Hilfe.
    Norbert

    Es scheint ein Fehler von der Java SWT-Funktion zu sein. Windows Explorer findet nämlich das Programm.

  • Question on Blend For Visual Studio 2012

    Hi,
    I am using "start here Visual Basic 2012" I am making an animated picture with a button. the button, when pushed will cause a picture of a chicken to move. 
    On page 118 it says to double-click the Click event handler text box for the button which I did in Blend. Blend is then suppose to open up Visual Studio  to the code editor for the button, which it does, however it opens up in .cs instead of .vb like
    the book shows.
    Does anyone know how to fix this issue, I would guess its simply a setting that needs to be changed but I have no idea what setting or if its in Blend side or the Visual Studio side
    thanks
    Dave

    This is a useless answer - I have to agree with most of the posters here I am FED UP with Microsoft. The link that is presented in the Blend start page (mentioned in the post above) is this one
    http://msdn.microsoft.com/en-US/expression
    However when you go to that link the Download for the Blend + Sketchflow preview is no longer active and the 2012 link takes you to the VS 2013 page. In other words the download is no longer available - or if it is MS has hidden it somewhere in the bowels
    of its website where you can't find it.
    Bottom line if you have 2012 you are forced to do yet another massive download of 2013 - and then pay for it.
    Microsoft is now officially worse than Adobe (and that is saying a lot). Moving the furniture in their OS, on their website, half the links in Google point to pages that are no longer relevant because things have been moved or changed.
    Maybe someone at Microsoft should take a closer look at the thousands of ISV's out there who make their living from developing MS apps. I have now spent a week of unproductive time just trying to setup an environment to deliver a solution. My client is not
    interested in problems MS - he wants results - so we pick up the vlak on behalf of MS with no where to go other than these less than useless forums.
    What is the actual status of Visual Studio and Interface design tools? I have been to hundreds of pages including Wikipedia which actually gave the most information and I still can't answer this question. I want to build a WPF app an design a Rich interface
    for it - I have every version of VS (6, 2003, 2005, 2008, 2010 and 2012) - what do I need to do what I need to do?????

  • How do I open a pdf stored in a Microsoft Access database using Visual Basic studios 2012

    Currently I am unable to find a valid method of being able to open a pdf stored in a Microsoft Access database using Visual Basic studios 2012. I've tried displaying the entire database on a form, but when I do this all the other columns show up with
    the correct data besides the one containing the pdf's, it just displays <binary data> in each row down the column. I also tried another method with which you use the database as a dataset and can drag and drop the rows and columns into the form, which
    again works for all the other columns besides the one containing the pdf's but this time I'm unable to interact with the column  at all. 
    Not too sure if this is in the correct place, but any answers or help would be appreciated. Cheers.

    Alex,
    This forum is dedicated to Project and Project Server. You might get better response, if you post to a Visual Basic forum. Here are couple I could find. 
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=vbgeneral%2Cvblanguage&filter=alltypes&sort=lastpostdesc
    Cheers,
    Prasanna Adavi, Project MVP
    Blog:
      Podcast:
       Twitter:   
    LinkedIn:
      

  • E-Mail in Outlook über Visual Basic mit Hilfe von AdobePDFMakerforOffice erstellen

    Ich möchte gerne aus Visual Basic eine E-Mail aus Outlook als PDF abspeichern, wobei ich auch gerne die Anhänge mit im PDF abspeichern möchte. Dazu möchte ich das Addin in Outlook über Visual Basic verwenden.
    Ich verwende derzeit VisualBasix Express und Adobe Acrobat XI Version 11.0.4.
    Ich habe aufgrund von Quelltexten im Internet nachfolgenden Code erstellt, wobei ich das Objekt bzw. das Addin in Outlook das "AdobePDFMakerforOffice" anscheind nicht finden bzw. zuordnen kann.
    Von Visual Basic wurde folgende Fehlermeldung angezeigt bei der markierten "-------->>" Zeile angezeigt:
    "Zusätzliche Informationen: Das COM-Objekt des Typs "System.__ComObject" kann nicht in den Schnittstellentyp "AdobePDFMakerForOffice.PDFMaker" umgewandelt werden. Dieser Vorgang konnte nicht durchgeführt werden, da der QueryInterface-Aufruf an die COM-Komponente für die Schnittstelle mit der IID "{1FE6F30F-4AA0-4EB5-A61C-00C14761EC3E}" aufgrund des folgenden Fehlers nicht durchgeführt werden konnte: Schnittstelle nicht unterstützt (Ausnahme von HRESULT: 0x80004002 (E_NOINTERFACE))."
    Es gibt wohl verschiedene Möglichkeiten das Objekt zu übernehmen, aber ich bekomme immer diese Fehlermeldung. Die Meldungen zwischendurch habe ich nur zur Bestätigung, dass Outlook bzw. das AdobePDFForOffice gefunden w bzw. connectet ist hinzugefügt.
    Weiß hier jemand Rat ?
    Der Code lautet:
    Imports System.Diagnostics
    Imports System.Linq
    Imports System.Reflection
    Imports System.Runtime.InteropServices
    Imports Microsoft.Office.Interop
    Imports AdobePDFMakerForOffice
    Private Sub BtnEmailOutlookPdf_Click(sender As Object, e As EventArgs) Handles BtnEmailOutlookPdf.Click
            Dim appAdobe As AdobePDFMakerForOffice.PDFMaker
            Dim appsettings As AdobePDFMakerForOffice.ISettings
            Dim Result As Boolean = EnumWindows(Callback, IntPtr.Zero)
            Dim ObjOl As Object
            Dim myItem As Outlook.Inspector
            Dim SpeichernameMSG, SpeichernamePDF As String
            Dim a
            Dim IndX As Int16
            Dim objInterOL As Microsoft.Office.Interop.Outlook.Application
            Dim objSelection As Microsoft.Office.Interop.Outlook.Selection
            Dim objItems As Microsoft.Office.Interop.Outlook.Items
            Dim objMailItem As Microsoft.Office.Interop.Outlook.MailItem
            ' Outlook suche und Objekt übernehmen
            If Process.GetProcessesByName("OUTLOOK").Count() > 0 Then
                ' If so, use the GetActiveObject method to obtain the process and cast it to an Application object.
                objInterOL = DirectCast(Marshal.GetActiveObject("Outlook.Application"), Outlook.Application)
                'MsgBox("Outlook-Objekt übergeben: Erfolg")
            Else
                MsgBox("Outlook ist nicht geöffnet, bitte Outlook starten")
            End If
            'Acrobat Objekt in Outlook suchen
            With objInterOL
                Do
                    IndX = IndX + 1
                    If IndX > .COMAddIns.Count Then Exit Do
                Loop Until .COMAddIns(IndX).Description = "Acrobat PDFMaker Office COM Addin"
                If IndX > .COMAddIns.Count Then
                    MsgBox("Unable to locate Acrobat PDFMaker COM Add-In for Microsoft Office." & vbCrLf & "Please contact an MIS associate for assistance", vbCritical, "Cannot Export PDF")
                Else
                    'MsgBox("My ProgID is " & .COMAddIns(1).ProgID & " and my GUID is " & .COMAddIns(1).Guid)
                    If .COMAddIns(IndX).Connect Then
                        MsgBox("The add-in is connected.")
                    Else
                        MsgBox("The add-in is not connected.")
                    End If
    ---->>>>       appAdobe = .COMAddIns(IndX).object                       <<---------------------
                    MsgBox("appAdobe zugewiesen !")
                End If
            End With
            SpeichernamePDF = "Test.PDF"
            appAdobe.GetCurrentConversationSettings(appsettings)
            With appsettings
                .IsConversionSilent = True
                .IsAutomation = True
                .ShouldShowProgressDialog = True
                .AddTags = False
                .ConvertComments = True
                .AddBookmarks = False
                .AddLinks = False
                .OutputPDFFileName = SpeichernamePDF
                .ViewPDFFile = True
                .AttachSourceFile = False
            End With
            appAdobe.CreatePDFEx(appsettings, 0)
        End Sub

    I don't think the Adobe Reader forum is the right place to discuss such an issue.  Try
    http://forums.adobe.com/community/acrobat/acrobat_sdk (in English, if possible)
    http://forums.adobe.com/community/international_forums/deutsche (deutsches Forum)

  • E-Mail in Office 2010 mit Hilfe von Visual Basic speichern bzw. generieren

    Sehr geehrte Damen und Herren,
    wie bzw. mit welchem Code kann ich unter  "AdobePDFMakerForOffice" unter Visual Basic eine E-Mail als PDF einschl. des Anhang abspeichern bzw. generieren ?
    Interessant ist dann noch die Angabe eines individuellen Dateinamen, welche sich aus Daten der E-Mail zusammen setzt. Haben Sie hier einen Beispiel-Code ?
    Mit freundlichen Grüßen
    D. Wagner

    Darf ich vorschlagen, dass Sie einen Übersetzer, wie Google verwenden, da ich jetzt mache, oder senden Sie Ihre Frage im Forum in Deutsch?
    http://forums.adobe.com/community/international_forums/deutsche

  • Adobe Illustrator CS 5.1 Application develped in Microsoft Visual Studio 2012 Visual Basic failed

    I just developed an Adobe Illustrator CS 5.1 Application in Microsoft Visual Studio 2012 Visual Basic. It works fine on my Windows 7 Professional 32-bit Operating System. But when I tried to run it on Windows 7 Professional 64-bit Operating System which also has Illustrator CS 5.1 installed, the application crashes when it runs to the code which calls Illustrator Library Objects.  The error message is System.TypeInitializationException: The type initializer for 'WindowsApplication_GangArt.Module2' threw an exception. ---> System.InvalidCastException: Unable to cast COM object of type 'System.__ComObject' to interface type 'Illustrator.Application'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{95CD20AA-AD72-11D3-B086-0010A4F5C335}' failed due to the following error: No such interface supported (Exception from HRESULT: 0x80004002 (E_NOINTERFACE)). I wonder why the application cannot fined Illustrator on the new 64 bit computer.

    I just developed an Adobe Illustrator CS 5.1 Application in Microsoft Visual Studio 2012 Visual Basic. It works fine on my Windows 7 Professional 32-bit Operating System. But when I tried to run it on Windows 7 Professional 64-bit Operating System which also has Illustrator CS 5.1 installed, the application crashes when it runs to the code which calls Illustrator Library Objects.  The error message is System.TypeInitializationException: The type initializer for 'WindowsApplication_GangArt.Module2' threw an exception. ---> System.InvalidCastException: Unable to cast COM object of type 'System.__ComObject' to interface type 'Illustrator.Application'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{95CD20AA-AD72-11D3-B086-0010A4F5C335}' failed due to the following error: No such interface supported (Exception from HRESULT: 0x80004002 (E_NOINTERFACE)). I wonder why the application cannot fined Illustrator on the new 64 bit computer.

  • SQL SERVER 2012 and Visual Basic 2010

    Can an SQL Server 2012 database function when used with a Visual Basic 2010 Program?
    Milt
    sirmilt

    Can an SQL Server 2012 database function when used with a Visual Basic 2010 Program?
    Milt
    sirmilt
    Yes
    Basically you can use any T-SQL query that you want, directly or through a Stored Procedure.
      Ronen Ariely
     [Personal Site]    [Blog]    [Facebook]

  • Auslesen der 16 Analogkänale der Multi-IO Karte NI PCI-6036E mit Hilfe Visual Basic

    Guten Tag,
    Ich bin dabei ein Visual Basic Programm zu schreiben, welches bei der Multi-IO Karte "NI PCI-6036E" die Analogkanäle einlesen soll. Ab den Kanal ACH 8 bekomme ich immer eine Fehlermeldung:
    "Laufzeitfehler 10007
    Reading Data
    A channel, port, or counter is out of range for the device type or device configuration;…".
    Ich kann also nur die ersten acht von den 16 Analogkanäle einlesen. Als Vorlage habe ich mir das von NI mitgelieferte Beispielprogramm "AIAOPoint" genommen. Welches sich in den Ordner "..\Programme\National Instruments\NI-DAQ\Examples\Visual Basic" installiert hat. Bei diesem Programm liegt der gleiche Fehler vor.
    Liegt es daran, dass ich eine Freewareversion von den Visual Basic Komponenten benutze? Wenn ja, ab welcher Version wäre mir geholfen und wo bekomme ich sie her? Oder muss ich unter VB noch einige Eigenschaften bei der Komponente "CWAIPoint" einstellen um die vollen 16 Kanäle auszulesen zu können?
    Mit freunlichem Gruß
    Dirk Malczan
    P.S. ich würde mich auch über Quellcode freuen ;-)

    Das Problem wird durch den Messmodus verursacht. Sie messen differentiell. In diesem Messmodus werden immer zwei Eingangskanal zur Messung eines Eingangssignals genutzt (0 und 8, 1 und 9, usw.), so dass insgesamt nur 8 Eingangskanäle zur Verfügung stehen. Der Vorteil dieses Messmodus ist die erhöhte Störsicherheit.
    Wollen Sie alle 16 Kanäle nutzen, müssen Sie entweder Referenced Single Ended (massebezogen) oder Non Referenced Single Ended messen. Diese Einstellung können Sie z. B. im MAX vornehmen.
    Mit freundlichen Grüßen,
    Jochen Klier
    National Instruments Germany

  • Getting Dynamic Context Sensitive Help API to work with Visual Studio 2012 and 64 bit?

    We have RH 9.
    Our developers are working on implementing RH's dynamic CSH API inside of our software product:
    http://help.adobe.com/en_US/robohelp/robohtml/WSa7dd8288c271d662-26f4398e12b0c229082-8000. html
    The instructions our developer found say:
    Call your Help projects with the function RH_ShowHelp. The source code for this function is contained in the support files which you import into your development project. Languages supported are Visual Basic, C/C++, JavaScript, and Java. The files are in C:\Program Files\Adobe\Adobe RoboHelp [version]\CSH API. The files are:
        CSH API\RoboHelp_CSH.cpp (C/C++, dependent on the .h)
        CSH API\RoboHelp_CSH.h (C/C++, dependent on the .cpp)
    I zipped up the CSH API from my RH 9 version and sent it to the developer. We're using Visual Studio 2012.
    But now the dev is asking, "Is there a newer version? This one doesn't compile in win32 without me making some tweaks, and doesn't work at all in x64..." and "Is RoboHelp10 an option? 9 doesn't seem VS2012 compatible or x64 compatible."
    Does anyone know if there are there is a later version of the API available that works for 64-bit / VS 2012?

    Hi,
    The RoboHelp 10 API should work for WebHelp created with RoboHelp 9. Since the RH10 API will now support Multiscreen HTML5 (introduced with RoboHelp 10), I imagine it will work with VS 2012. But I’ve not tried that. You can try the RH10 API, but Adobe won’t support it
    Alternatively: A colleague of mine created a custom C# API some time ago. That might work for you: http://www.wvanweelden.eu/blog/2012/08/03/custom-webhelp-apis
    Greet,
    Willam

  • "Object reference not set to an instance of an object." in Visual Studio 2012 Entity Framework Model-First

    Hello
    We're trying to use a Model-First with Entity Framework in Visual Studio, targeting an Oracle XE 11g installation.
    No matter from what angle we're approaching the issue, we always end up with an "Object reference not set to an instance of an object" in Visual Studio:
    First way:
    - Add new ADO.NET Entity Framework Model to a .NET Framework 4.5 project
    - Empty model
    - Add some entities and associations
    - Set Database Generation Workflow to "Generate Oracle Via T4 (TPT).xaml"
    - Set DDL Generation Template to "SSDLToOracle.tt"
    - Generate Database From Model
    - VS asks for DB connection ==> Click "New Connection"
    - Enter the connection properties to the Oracle XE database. "Test Connection" tells me the connection is okay.
    - Click OK. Visual Studio shows the following error message:
    (here's the image if it's not visible: https://dl.dropboxusercontent.com/u/35614983/vs2012_oracle_ef_error.png)
    We also tried to generate the model in VS2010 and then manually transform it to an EF5 / VS2012 model. At the "Generate Database from Model" step, the same error appeared.
    We also tried to generate the model from database (Database-First approach). Same error.
    My configuration:
    - Windows 7 Ultimate 64-bit
    - Installed Oracle client: ODTwithODAC1120320_32bit.zip, so the version is 11.2.0.3.20
    - Visual Studio 2012 Update 3 (11.0.60610.01)
    Thanks for any hints!
    EDIT: I just read that ODP.NET doesn't seem to support Entity Framework 5, so I tried a new project with Entity Framework 4.1, but I get the same errors.
    EDIT 2: On a 32-bit Windows 7 virtual machine, everything works fine. Seems the problem is only there on my 64-bit Windows 7 machine.

    Sorry for the delay on this one. Let me know if you are still seeing this and I will see if we can get more diagnostic info somehow.
    That error is basically an exception fault. It means a bug or a misconfiguration of Oracle Developer Tools. Can you try to reinstall ODT and see if you notice any unusual errors during install.. and see if a reinstall fixes the problem?

  • How do I load an SSIS package created in Visual Studio 2012 Shell (Integrated) onto SQL Server 2012 using SQL Management Studio 2012

    I am fairly new to this whole process of working with the Microsoft development environment.  Here is what I have to work with:
    an NT server running Microsoft SQL 2012  - Microsoft SQL Server Standard (64-bit)  11.0.2100.60
    and on my laptop (all freebie downloads):
    SQL Server Management Studio 2012            ver 11.0.2100.60
    Visual Studio 2012 Express  for Desktop Development and
    Visual Studio 2012 Shell (Integrated)
    I was able to create an SSIS package in
    2012 Shell (Integrated).  It takes a flat file and imports it into an SQL database table.  It runs successfully from within the
    2012 Shell (Integrated) envrionment.
    But I am having trouble figuring out how to set this up on the 2012 SQL Server.  I see that one of my colleagues created an Integration Services Catalog,
    and using SQL Management Studio I was able to create a folder under that called DigLic.  But when I go to the Projects subfolder of DigLic and attempt to import my SSIS package, I get an error message:
    "To launch the Integration Services Deployment wizard, one of the components: Integration Services, Management Tools - Basic or Business Intelligence Development Studio has to be installed by the SQL Server
    2012 Standard, Enterprise, Developer, or Evaluation Edition.  To install a component, run SQL Server Setup and Select the component name"
    I realize that Express Versions of Visual Studio lack the full feature set of a professional version.  But am I wrong in assuming that owning a server version of SQL Server 2012 gives us license to a professional
    version of SQL Management Studio 2012?  If so, how would I go about getting this software component installed?  And I am not clear if this is something that needs to be installed on our SQL Server or if I simply need a professional version of SSMS
    loaded on my laptop.
    I work for a company that is fairly fractured in its repsonsibilities, so I would need to know exactly what to ask for if I need to track down any licenses that I might need and if I need to have any specific software installed on our SQL server or on my
    laptop.
    All helpt would be greatly appreciated.
    Thanks!

    Arthur,
    Thank you for your reply.  But at this point, one of my points of confusion is what software I have available to me.  I wish I had a useful central help desk to call up and just say, "Hey, load me up with all of the professional version(s) of Visual
    Studio.  But I do not know what we have license to.  And I kind of need to know what the options are, so that I can ask a specific question of our vast buracracy.
    For now, I have downloaded only free versions of Visual Studio client software.  Since my company does have servers running Microsoft SQL Server, I am going to assume that we have proper licensing for those servers.  But does that server license
    allow me to get any professional versions of the PC client software for the various Visual Studio(s) 2012?
    And if I get a professional version of Visual Studio 2012, does that do away with the three different flavors that I have right now?  I have 2012 versions of SQL Server Management Studio, Visual Studio Express, and Visual Studio Shell (Integrated).
    Your feedback is much appreciated.
    Thanks!

  • Crystal Reports 13 and Visual Basic 6

    I have a application written in Visual Basic 6, with an access back end, with major reporting functions provided by Crystal Reports 6.
    This program is used by a number of clients that all until some weeks had XP as their operating system.    Needless to say cr6 does
    not play well in win 8.1 environment and hence my desire to update to CR13.   VB6 I am told is a dying if not already defunct but the truth is I like it and would like to continue to use it.   My problem is that I cannot find any info on how to use CR13 in VB6.   If it was just a matter of running a pre-defined report I guess that can be done, but it somewhat defeats me how to pass parameters and variables to the report.   It seems a long  way removed from CR6 but willing to give CR13 a good go in the hope of making it work, as I have nothing but praise for my comfortable (for 10 years) CR6
    Any help very gratefully accepted with hat in hand.

    And to add to all that, VB 6 is dead along time ago. We no longer have any SDK that will work in VB 6 now. No COM components and VB 6 does not support .NET framework.
    Only option is to upgrade to Visual Studio 2010, 2012 or 2013 and use CR for VS.
    SAP Crystal Reports, developer version for Microsoft Visual Studio: Updates & Runtime Downloads
    Sample apps are here:
    NET RAS SDK Samples - Business Intelligence (BusinessObjects) - SCN Wiki
    Don

Maybe you are looking for

  • My macbook keeps freezing with the left side of the screen on the right and the right side of the screen on the left. Help

    My 17-inch early 2011 macbook pro keeps freezing on me.  The freeze usually occurs when I'm importing or exporting pictures, when I stream anything, or If I am watching a dvd.  The left side of the screen shifts to the right and the right side of the

  • Macbook Pro power button sticks

    I just bought a new Macbook Pro, and the power button is a nightmare. It is incredibly difficult to depress. I'm worried I'm going to break it. Is this a common problem? Is there a solution? I see no other way to power the unit on.

  • Scene numbering in Adobe Story

    Have you noticed that scene numbers only show up in the left margin in Adobe Story? Do you see a compelling reason for us to show scene numbers on both the left and right margins in Adobe Story? Would you find it useful to have the scene number on bo

  • AK Regions, Jdeveloper, Oracle Apps 11.5.10

    As soon as my client's Oracle Applications instance will be migrated to 11.5.10 release I will be faced with porting of customs. In particular in the OA release as is actually (11.5.7) the custom we have developed is made up using BC4J and AK region'

  • Trying to run an example

    Hello guys i am reading the good tutorials about of Technical Articles and Tips of j2me i have a problem ,well i am in linux with j2me toolkit 2.2 and use the jvm or jdk 1.5 update 1 and trying to run the example with servlets to send an email http:/