johnnyXNA's Q&A profile
SQL Server x64 version of Microsoft .NET Data Provider for mySAP Business Suite
Hi everybody, Does anyone know if there is a x64 version of the Microsoft .NET Data Provider for mySAP Business Suite for use with SSIS On the SAP site, I found a librfc32.dll which works under x64, but the x86 SAP Connector can't use it. Thanks Hans The Microsoft .NET Data Provider for mySAP Business Suite does not have an x64 version. The new .NET adapters shipped with Biztalk 2006 R2 will have support for x64 in WOW mode. Beta 1 for the the adapters is out and the SAP adapter is at http://msdn2.microsoft.com/en-us/library/aa561012.aspx The new adapters also support ADO.NET connectivity - so you can use SSIS. ...Show All
Visual Studio Express Editions Cannot see an attribute from the schema as a field in class
I am using Visual C# Express 2005. I have an attributeGroup (call it group1) in my schema which includes another attributeGroup (call it group2). The attributes in group2 are not showing up in my objects. Ideas Thanks. Can you explain a bit more Are you talking about XML serialization where some attributes are not deserialized -- SvenC ...Show All
Internet Explorer Development IE7 not allowing .MDB file to open correctly
Under XPPro... Since upgrading SOME of our computers to IE7, we find that we cannot open an Access 97 file the way we want. (It worked/works fine on systems where IE7 has not been installed.) Specifically, we have an .MDB file on our M:/ drive. If we double-click on the shortcut to the file, nothing happens. If we open My Computer and navigate to the file, nothing happens. If we open Access generically, then File/Open the file, it opens fine. Older versions of the database (3+ years old) that are stored in the same directory work fine. So I expect that some coding in the newer versions is to blame. Well, actually, IE7 is to blame. But I'm looking for suggestions. Thanks in advance, John ...Show All
Smart Device Development How to get vga device emulation
none of the shortcuts emulate a hidpi device, i.e. vga. i created my own shortcut using the command line args, set video to 480x640x16 and it gave a vga screen, but it was not 'hidpi', it was the same as running sevga on a true vga device, i.e. not what the user normally sees. anyone got proper emulation of a wm2003se vga device We are in the process of creating a new set of images for the Device Emulator Preview available on Microsoft Betaplace that include the following images: Standard, HIDPI, and Square images for PPC Standard and QVGA images for Smartphone. We will include these images for these form factors for both Windows Mobile 5.0 (Magneto) and Windows Mobile ...Show All
SQL Server Manuel Identity system
Hi, I have a table (TABLE_A) like this: MY_ID int unique Field1 varchar(10) I am using manuel identity system like this: INSERT INTO TABLE_A (MY_ID, Field1) SELECT MAX(MY_ID) + 1, 'Field1 Value' One row insert there is no problem, but more than one row how can I use insert statement ( TABLE_B have more than one record ) INSERT INTO TABLE_A (MY_ID, Field1) SELECT (SELECT MAX(MY_ID) + 1 FROM TABLE_A), FieldX FROM TABLE_B Iron: I normally use a stored procedure for retrieving identity values from identity tables. In this way I can have the procedure retrieve single identifiers or a list of identifiers and maintain the identity table. ...Show All
Visual Studio Two datasources, one report?
Assume I have a single report. Assume I programatically add two datasources to the report using LocalReport.DataSources.Add("DatasourceName", DataTable) Assume the report only has two textboxes - I want to grab the first name from the first datasource and place it in the first textbox and I want to grab the last name from the second datasource and place it in the 2nd text box. =Field1.Value <-- using datasource one. =Field1.Value <-- using datasource two. Obviously, those expressions won't work. What expressions would work Does there have to be a subreport to do this Datasources are specified in the RDLC at design time. At runtime, for each datasource specified in the RDL ...Show All
Windows Forms How To: Implement Single click navigation to a DataGridView Combo Box Cell
I have a data grid view bound to a data view, with a combo box bound to another data view. The user's are complaining that they have to click twice on the combo box drop down arrow to get the drop down list to appear -- what's happening as near as I can tell is that the first click selects the row, and the second click is delivered to the combo box. Is it possible to modify this behavior so that a single click both selects the row and drops down the combo box I suspect this is not as simple as overriding WndProc in the DataGridView and passing the WM_CLICK message to the combo box :-) Thanks in Advance Alan Hi, I'm using this for my Combobox drop downs too, but I also have custom columns in the datagrid that dro ...Show All
Visual Studio Tools for Office Failed to update customization from the specified deployment manifest.
I'm trying this again. I've successfully created an Excel App-Level addin that supports automatic updating (details below). The issue is that I want to ensure that the addin loads from the local copy when the remote copy is unavailable. My app.dll.manifest file is as follows: <assembly xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" manifestVersion="1.0"> <assemblyIdentity name="PriceTools.dll" version="1.0.0.18" /> <asmv2:entryPoint name="Startup" dependencyName="dependency0"> <asmv2:clrClassInvocation class="ClassName.AppName" /> </asmv2:entryPoint> <asmv2:dependency asmv2:name="dependency0"> <asmv2:dependentAssemb ...Show All
Visual Studio Express Editions Opening a File
Hey there, I was wondering how I can make my program have a file association, but more importantly, how to tell it to open that file I have clicked in Explorer. Thanks in advance Norman Hi I want to know the same... I want to know how I can create an association in the "openfiledialog"... Thats why I want to write a programm where you can select files with an open button... and when you push the save button it will automaticaly saved in the windows/fonts directory What should I do that I only could open *.ttf files Greets, sL!z3r //Sorry for my bad english... my foreign language is german... does anybody know a german forum ...Show All
Windows Live Developer Forums The event is not fired in Windows Live Messenger
I meet the same problem as http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=712363&SiteID=1 But I do not understand the solution. I have edited the registry and the addin is showed to be lunched. The MessageBox inside the Initialize function is also showed. However, the event is not fired in MessengerClient. Thanks a lot public void Initialize(MessengerClient client) { this.m_client = client; client.AddInProperties.FriendlyName = "MyAddin"; m_client.StatusChanged += new EventHandler<StatusChangedEventArgs>(StatusChanged); client.IncomingTextMessage +=new EventHandler<IncomingTextMessageEventArgs>(IncomingTextMessage); client.OutgoingTextMessage += new EventHandle ...Show All
Visual C# DllImport from C#
Hi All, I have finished my hard job of porting a VC6 project to VC8 but now I have a problem in using functions from C#. This is the declaration: [ DllImport ( "Test.dll" , CallingConvention = CallingConvention .Cdecl)] public static extern int MyFunction(........... ); but when I use MyFunction I have following error: System.DllNotFoundException : Unable to load DLL Test.dll': Routine di inizializzazione della libreria di collegamento dinamico (DLL) non riuscita. (Exception from HRESULT: 0x8007045A) Thanx in advance for your time! Marcello Hi, I have copied dll and its dependencies in debug folder and used DllImport but the result is the same. Is it possible ...Show All
Visual Studio Express Editions Using enter to activate a button
Hi I'm really new to VB, so please excuse me if the question appears really basic. I have a MaskedTextBox that only allows numeric entry, but I would like the procedure on a certain Button to be executed when the user hits <Enter> whilst in the MaskedTextBox. How would I do this Hi, you can set form's AcceptButton property to the button you want to be executed when user presses Enter wherever on the form. If you need to isolate this behaviour to the maskedtextbox only, you'll need to handle its keydown event. Andrej ...Show All
Internet Explorer Development appendChild to SCRIPT element doesn't work in Internet zone (IE7)
I am using bookmarklets in Internet Explorer to add functions to websites (like for example adding mouse wheel zoom to pictures opened in IE). I insert jscript into web pages by appending jscripts to the HTML or SCRIPT element of the websites. the code looks like this: ------------------ javascript:(function(){var script=document.createElement('script'); script.src='file://localhost/C:/Program Files (x86)/html/Surf+.js'; document.getElementsByTagName('HTML')[0].appendChild(script);})() ------------------------------ In IE 6 it works in all security zones, but in IE7 only in the "My Computer" zone or if I add the website to "Trusted websites". But I can't add the entire internet to the trusted websites list! ...Show All
Visual Studio Express Editions AxwebBrowser
Hi, I have an Ax WebBrowser app. and I am receiving errors. is it possible that because I am using C# Express and that does not contains any about SDK Hi, This the error that I am getting: no suitable method found to override . For this line of code. protected override void Dispose( bool disposing) . Can anyone help with this error Thanks jbattat ...Show All
SQL Server Web Sync Wizard On XP Box
I have (finally) successfully gotten through the maze and 'published' my database to a folder: Physical path: I:\SqlReplication unc: Warrenassoc\SQLReplication Since I'm running XP pro, I don't have the options of assigning specific read/write permissions to a folder. However it appears the problem is with accessing the snapshot and the logon's there. When I run the IIS Web Configure wizard I error out at the snapshot share permissions step (see report below) Wizard Settings: Click Finish to perform the following actions: Modify a virtual directory immediately. Copy the ISAPI dll 'sqlcesa30.dll" to 'I:\SqlReplication" immediately. Set NTFS permissions immediately. The virtual directo ...Show All
