Software Development Network Logo
  • Visual FoxPro
  • SQL Server
  • Smart Devicet
  • Visual Basic
  • Windows Forms
  • Visual C++
  • IE Development
  • Visual Studio
  • Game Technologies
  • Audio and Video
  • Windows Vista
  • Visual C#
  • Microsoft ISV
  • .NET Development
  • SharePoint Products

Software Development Network >> Catalin Zima's Q&A profile

Catalin Zima

Member List

3d_developer
Remmie
Dinesh Kokate
Ido Ran
GoodCoder
TheShadow
smogit
osamaT
james_cline_
Chris Zwirlein
Duncan_
Giedrius Banaitis
Big Andy 78
Adminanup
Jeff-B
djmikke
RandyHale
Özge Çolak
Preston Moore
MaryMary
Only Title

Catalin Zima's Q&A profile

  • Visual Studio Express Editions template link errors

    I've been looking for a solution for this all day now, and it's driving me crazy. I have a C++ couple of C++ template classes that I'm using in a test executable for a DLL I built. The templates are used in the DLL as well, but in all cases that I use it, to avoid errors, I have all the template code in the header, so when it's included all the code is available for the compiler to do the type resolutions. When I build the DLL, it compiles and links just fine. However, when I build the executable, I get unresolved token and unresolved external symbol errors for the template, but only for the one that I use in the executable, not for the ones used in the DLL. I have tried to change the type temporarily to int and have copied and p ...Show All

  • Visual Studio Express Editions Update

    Hi everyone I have built an application that is published via vb 2005 x and I connected the .mdf file to sql express 2005 but the infoemation in my application will not show in sql 2005x. I try to check the check box in the edit datasource with designer but the check box will not retain the check in the check box. Anyone have any ideas Thank you in advance. David (newb) Public Class Form1 Private Sub SYSIDBindingNavigatorSaveItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Me.Validate() Me.SYSIDBindingSource.EndEdit() Me.SYSIDTableAdapter.Update(Me.PcDataSet1.SYSID) End Sub Sub CreateDataSet() Dim ds As New DataSet AddTable(ds) ' ' The message box displ ...Show All

  • Visual C# Fail to Load dll from C# when no VS2005 installed

    Hi, I am running C# application with a MFC dll on VS2005. When I copy the .exe file and the dll to another computer I get the following errer (both installed with .NET 2.0): An unhandled exception of type 'System.IO.FileNotFoundException' occurred in FilesUpdateApplication.exe Additional information: Could not load file or assembly 'StrtData, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified. where 'StrtData is my dll file. When I installed the VS2055 on the computer, it worked just fine. Are there any specific dll's that the 2005 adds is it something that it adds in the installation Please advice, Thanks Idit try strongly naming your dll by signing ...Show All

  • Software Development for Windows Vista ASP.NET hosting....eventDelivery failed.

    I have the following architecture: Console app-->WebService-->WorkflowBusinessManager(has the wf runtime and all other service)-->DataExchangeService--->Workflow Each of the above are seperate projects and I'm using XAML activation.Also im using a base workflow from which other workflows of specifice types are created. Inherited as follows: BaseStateMachine :StateMachineWorkflowActivity -->ProcessBase: BaseStateMachine ---> ActualWorkflow :BaseStateMachine even though the event args are marked as serializable.This event delivery fails and it mentions that the event args are not serializable... I've also set "waitForIdle" to true.I'm using the manual scheduler service. I'm using .N ...Show All

  • SQL Server Using managedDTS in a CLR

    Hello, Has anyone been able to create an assembly that references Microsoft.SQLServer.ManagedDTS in a CLR When I try to do a CREATE Assembly [Microsoft.SQLServer.ManagedDTS] it sets off a chain of dependencies a mile long, (system.windows.forms, system.drawing, accessibility, system.runtime.serialization.formatters.soap, microsoft.sqlserver.msxml6_interop and the list goes on). I have tried creating assemblies for these manually, but they keep referencing more. I have seen a number of posts that talk about using the manageddts in a CLR, but none have mentioned this issue. When I did manage to get all of the assembies created then I got a failure in my CLR procedure because some of the assembly signitures don't match what's in the GAC, e ...Show All

  • Visual Basic retrieving domain user info

    Hi, I just successfully created a login box that validates users via Active Directory/their network login. However, I would like to retrieve the full name of the user and put it on a form and dialog box. Here's what I mean: The user's login Username is JohSmi (Username is first 3 letters of first name and first 3 letters of last name) Full name: John Smith (As entered in Active Directory) When the user logs in, a label on the second form changes to John Smith. How can I accomplish this Hi Try something along these lines ... dim at as authenticationtypes = authenticationtypes.secure or authenticationtypes.sealing or authenticationtypes.serverbind dim de as new directoryentry(& ...Show All

  • Visual Studio Tools for Office Big Issue with Action Pane disabling textboxes

    Hi there, I have an excel workbook which on startup sets a login user control onto the task pane.  The user enters their username and password to login and then has access to some data.  This works fine normally. However, if Excel is already open with another spreadsheet (can be non-vsto) often the textboxes on the user control in the taskpane are locked/disabled.  I currently have been working on a different normal excel spreadsheet and have found if I try and run the VSTO-Enabled workbook with it open, 100% of the time the textboxes in the taskpane are locked.  Usually they are 'dim' showing disabled, but sometimes they look normal but just won't accept input.  And sometimes they even look as though they ar ...Show All

  • Microsoft ISV Community Center Forums Need direction on using code instead of VLOOKUP

    Hi, all. I've been looking through the forum, and there's a lot of great info here. I'm learning VBA, but I'm running out of time on a project that I'm working on, and would like help if anyone can offer it. I use a spreadsheet that contains a lot of VLOOKUP functions as well is the Excel IF function. Currently I paste two reports into two separate blank worksheet tabs, and the first worksheet uses the VLOOKUP to import the data needed. It's cumbersome and I run into errors once in a while because some yahoo has added a column to one of the reports. I would like to be able to add a macro that searches for a column by header name on a worksheet, then copies the data from that column into a specifed column on another worksheet. Can anyone gi ...Show All

  • SQL Server Extended Properties

    I am having some wierd behavior that I can't seem to correct regarding exteneded properties. Via a T-SQL statement, I have added several exteneded properties to a table, for example: exec sp_addextendedproperty N'AP121ID', @value = 'AP121 Primary Key', @level0type = N'Schema', @level0name = dbo, @level1type = N'Table', @level1name=ap121, @level2type = N'Column', @level2name=AP121ID; GO This statement runs successfully. I can even query the sys.extended_properties table and see the entries. However, if i look at the properties of teh table to which I added the exteneded properties, they are not listed. Nor does it allow me to add one via that properties page. Any ideas Thanks... Scott Looks like you are adding extended propertie ...Show All

  • Visual Studio 2008 (Pre-release) Returning Files as a Stream

    I have a WCF contract that returns a stream. I am normally returning an XML file. This works fine, but whenever I return a 'null' or binary file, the WCF comm seems to get hosed. This is a self-hosted console app. Here is my app.config. <endpoint address="net.tcp://localhost:8002/ProLab/" binding="netTcpBinding" bindingConfiguration="" contract="NCRx.ProLab.Common.IProLabServer" /> The interface is set up as a duplex interface as follows. [ServiceContract(Namespace = " http://NCRx/ProLab/Server ", SessionMode = SessionMode.Required, CallbackContract = typeof(IProLabWorkstation))] interface IProLabServer { /// <summary> /// Notifies the ...Show All

  • .NET Development ConnectTimeout doesn't seem to be working right

    Hi I wrote the following sample code ... SqlConnection sqlConnection = new SqlConnection(); SqlConnectionStringBuilder sqlConnectionStringBuilder = new SqlConnectionStringBuilder(); string name = Assembly.GetExecutingAssembly().GetName().Name; sqlConnectionStringBuilder.DataSource = "ServerName" sqlConnectionStringBuilder.UserID = "UserId"; sqlConnectionStringBuilder.Password  = "Password"; sqlConnectionStringBuilder.ApplicationName = name; sqlConnectionStringBuilder.ConnectionReset = true; sqlConnectionStringBuilder.Enlist = false; sqlConnectionStringBuilder.IntegratedSecurity = false; sqlConnectionStringBuilder.Pooling = true; sqlConnectionStringBuilder.ConnectTimeout = 5; sqlConnection.ConnectionString = sqlConnec ...Show All

  • Windows Forms Customer Name in Registry

    I am using Visual Studio .Net 2003 Setup and Deployment Project I have a Standard Customer Screen in the User Interface Menu Can we save the Customer Information in Registry / .INI file TIA That dialog sets the COMPANYNAME and USERNAME properties (case-sensitive) so if you just create registry items in the IDE with the values [COMPANYNAME] and [USERNAME] the actual values will be stored. ...Show All

  • Visual Studio Team System How can I manege my project to becomes

    I have the following doubt, I have several problems to find out to me when to generate a project that this becomes, then I look for a tool within team system that again administers to the entrances projects before being created in team system, a tool where it can consult each area which corresponds to him and to initiate with the generation of the project in team system, to that I go with this to have a better control, not if system is something in team where it can control this. I do not look for a project if not something that marks status of the project before generating it. Any idea TKS As I understand your question, you want to know if there is a way to enforce users to check a specific place (not inside a ...Show All

  • Visual Studio Express Editions Uninstall VC++ 6

    I have VC++ 6 in my pc. I have to uninstall it before download and install VC++ Express Is possible to have they together in the same computer  If I cancell all the SDK files, VC++ Express reinstall automatically they I have to uninstall only beta version of . net frameworks What is the difference from the professional version (if exist) You will not need to uninstall. The VC++ Express version is designed to work side by side with previous Visual Studio products. The SDK files are only installed as a seperate download. You can view the features available in the higher versions here: http://msdn2.microsoft.com/en-us/vstudio/aa700921.aspx ...Show All

  • .NET Development Custom SoapFilter for WSE 3

    Hello I'm developing custom SoapFilter for WSE 3.0. Is there a way to find out the type of exception occurred during the execution of WebMethod. The SoapEnvelope parameter of ProcessMessage method has a Fault property, but this fault property always contains SoapException, not the original type of the exception. How to find out the original type of the exception Best regards Stephan Zahariev Hi Stephan, I have bad news for you, it is not possible to get the original exception from a WSE filter. I had the same problem when I was trying to implement an exception shielding solution for the Patterns & Practices team. (Web Service Security Patterns). Regards, Pablo. ...Show All

©2008 Software Development Network