Godhascometoearth's Q&A profile
.NET Development Wrapper doesn't work
Hi, I have an unmanaged C++ application which calles C# DLL using COM Callerable Wrapper. My problem is that this application works in development machine, but not in distribute machine. I installed .NET Framework 1.1 and I wonder I miss some component to run in distribution machine. Does anyone have an idea about this Thanks, reneesol All the necessary interop code is shipped as part of .NET. It is probably related to security or COM registration. Did you register the COM dll using regasm on the distribution machine What error are you getting Michael Taylor - 1/27/06 ...Show All
Visual C# import CSV file
I need to import csv file to SQL tables with c# application. User can select columns band table mapping table fields. I like to create something similar to MS SQL import. User can draw line to two mapping column and fields. How I can do it in C# window application Which controls I need hi, you can find some examples here http://www.codeproject.com/csharp/#Graphics hope this helps ...Show All
Visual Studio Express Editions VB Express Font Addition/Installation With Deployment
I realize that the ClickOnce Deployment is not the same as the MSI and that MSI is not part of VB Express. I have a custom true type font that I need to use with my application. Is there any way to add this with the deployment For example, is this possible with the Boostrapper, and if so how could this easily be done Maybe this will help http://www.bobpowell.net/embedfonts.htm ...Show All
SQL Server Need help with filtering fields with null and more
Requirements: 1) Cannot have results in which both m.homephone & d.homephone are both null, or both m.workphone & d.workphone are both null in the result set 2) We also do not want to see any combos where one homephone is null and the other has only the char 0....same for workphone...no null & 0 combinations. e.g. m.homephone d.homephone null 0 0 &n ...Show All
SQL Server ForEach Loop Container
I am using a SQL Task to load the data needed for the loop into a variable, then using a script task to perform calculations. Is it possible to update a table from the script task with the calculated values . Thanks Yes the structure for all reports are the same, the calculations are dependant on the specific measure. May I contact you offline and not involve the forum until a suggestion is ready ...Show All
.NET Development Is there any replacement or equivalent to XML User-interface Language(XUL).
Hi to all, Is there any equivalent or replacement of XUL, XML User-interface Language. I written a code using XUL and JavaScript for creating a toolbar, for FireFox. I want to create a toolbar using JavaScript/VBScript and XML(or any other stuff) for Internet Explorer. Is it possible, to implement it If any one has idea on it, please reply to this. Thanks and Regards, Mahesh. umahesh, I think that XUL is just for firefox extensions, you may search the internet for "deskband" or "creating internet explorer toolbars" where you may find articles at codeproject.com ...Show All
Software Development for Windows Vista Application on Client - Workflow on Server
hi all, i programmed a simple client-server application and would try to store the workflow, which is loaded, when saving some data on the database, on the server. i wonder, how i can do that... hope someone can help... thanks in advance! .k Hi, Are you still having issues here I'm not quite sure what you mean here. If you're talking about using workflow on the server side and using persistence to save workflow state, then yes this is easily achievable. If you're talking about saving customized data in the same transaction as the workflow persistence, you can also achieve this usin ...Show All
.NET Development can not create an SQLConnection object
I am getting an initialization exception when I instantiate SQLConnection. The exception occurs emediately upon creating an instance and does not depend on whether I supply a connection string for the constructor. The odd thing is that I am not getting this error on my development computer, only when I install it on a different computer. The computer giving the exception has .Net 2.0 installed from the redistributable which I downloaded from MS on Thursday. This is happening before I set any properties or do anything else with the new connection. Any ideas Jake Wagner no, I am doing the in ...Show All
SQL Server 2005 SP1 install, another can't authenticate...
win 2003 sp1 with sql 2005 enterprise. Tried SA.. Tried AD Admin, tried local administrator. Set up in mixed mode so i tried windows and sql authen... I can log in normally with SA and the password and the windows admin account. Nothing works, tried services off and on. Tried clearing everything Reinstalled completely... Only the SQL Server part fails because it requires authentication. All the other parts succeed. I don't get a log since it just thinks im typing things wrong. Just this 06/06/2006 21:24:59.641 Authenticating user using Windows Authentication 06/06/2006 21:24:59.641 SQL Service MSSQLServer was previously run ...Show All
Visual C++ problem reading uuid generated by VS 6 (C++)
We are porting our project from VS6 to VS 2005. Here are issues we are facing. Our software creates objects. These objects contain unique identifiers (UIDs)_ generated by VS 6. We write those objects to a binary File using Microsoft's serialization in VS6. When loading those files in VS 6, everything worked fine. Running our project with V S 2005: -When our software opens a file created with VS6 our software crashes when starting to read the UID portion of the file . -However if we create a new obj ...Show All
Windows Forms Failed to load resources from resource file
Hi, I may just be being thick here but, after installation, setting up a new Terrarium, compiling the simple carnivore, and trying to indrocude the animal to the Terrarium, I am getteing the following error: "Setup Error Failed to load resources from resource file Please check your Setup" I have the '.NET Framework 1.1 redist' installed, along with the SDK 1.1 i ...Show All
Visual FoxPro How to open the table exclusive for ZAPping?
Hi Sir, To be able to PACK/ZAP a table it must be open exclusive, such as USE myTable EXCLUSIVE .... My question is, Why there isn't a place in data enviroment (TAB DATA) to stated that myTable should always open EXCLUSIVE so I can pack/zap anytime Please tell me where is the proper place (the way) to open a table exclusively SELECT myTable USE USE myTable EXCLUSIVE thanks Joe On the data environment there is a property for EXCLUSIVE. Make sure this is set to .T. Second, do not open the database with code, let the form do it's job for you. Then you can zap it. Don Higgins www.crewchiefpro.com ...Show All
Visual Studio Express Editions animate window
hi guyz, i am trying to call animatewindow call from user32.dll.. and it was all correct as it is, it is written as i had seen in one of the web sites. also i tried to find that method using apitextloader (winapi tool) but there is not a function by this name.. but it is there in online msdn winapi support , so what's the deal ,if it's compiling it's not showing any proper animation.. so if anybody can help it would be great ashish Ashish - I was able to get this to work using Beta2. Here is my code for it. I just replaced the Form1.cs code with the following: <FlagsAttribute()> _ Public Enum AnimateW ...Show All
Visual Studio Export E-mail Button and E-mail Prompt DialogBox
I am using CR XI from inside VS .NET 2003. Is there a way to have a button or file menu option show up on the CrystalReportViewer page Is there a pre-existing prompt dialog to enter the email information like the one you get if you are inside CR (menu: File->Export->Export Report) Thanks, Dave The kbase uses SMTP rather than MAPI. The kbase article works with Visual Studio 2002 or 2003. It does not work with Visual Studio 2005. The Web.Mail namespace has been replaced with SMTPClient. Also addressing is done with the .Add property rather than being set directly to string values. HtH, John ...Show All
Visual C++ Debugger problem "The breakpoint will not currently be hit. No symbols have been loaded for this document."
I have recently install VS 2005 Pro and I cannot get breakpoints to work properly in my C++ Win32 application. After compiling for Debug and placing a breakpoint, when I run my program the breakpoint indicator becomes a hollow circle with an exclamation point and I see the above message when I hover over it. This makes no sense to me because I have verified the following: 1. Yes, I have compiled for Debug. 2. Output for my program indicates that "Symbols loaded". 3. I see the .pdb file in my \<project>\debug\ folder with the correct build date/time. Curiously, I have created other new projects under VS 2005 tha ...Show All
