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

Software Development Network >> cxroh's Q&A profile

cxroh

Member List

Jason Seel
Alexander Stoyan
bitem2k
StephanieR
steveareno
D W
Paul_G
Mukesh Karir
Peto_SVK
gpetrosh
Bapa
Radomiak
ReneeC
YYC
LSS
winprock
Tammt
tkohrs
Anthony_HK
arc_dev
Only Title

cxroh's Q&A profile

  • Visual C++ System namespace ambiguity problem

    Hi, I'm new to Visual c++ and can't solve this problem. I'm writing a Windows Forms application and also have to use FMOD library to process audio data. This Library has a class called System. Unfortunately, System is also a global namespace which I have to use in Windows Forms. If I use, in the same file, the FMOD and System namespaces I get a lot of ambiguity errors (error code C2872) telling me that System is an ambiguous symbol because it could be System or FMOD::System. How can I resolve this problem You're just inheriting. //using namespace FMOD; // don't do this anymore class FmodSystem : public FMOD::System { // no need to add anything extra }; I also like Jonathan's idea of prepending a ...Show All

  • Windows Forms Generic base for UserControl do not work

    Hello everybody, I use many UserControls doing quite the same stuff all the time. Now I wanted to code a generic base for all this controls. So I defined public partial class ManageItemPanelBase<T> : UserControl Now my "real" panels inherit from this Class. public partial class UserControl1 : ManageItemPanelBase<ItemClassNameGoesHere> VS do not allow me to use the visual designer anymore. I get the message: The designer could not be shown for this file because none of the classes within it can be designed. The designer inspected the following classes in the file: UserControl1 --- The base class 'ManageItemPanelBase' could not be loaded. Ensure the assembly has been referenced and that all projects have been ...Show All

  • SQL Server VARBINARY(MAX)

    Hi all, Could anyone let me know whether VARBINARY(MAX) or File system is BEST for storing large files Any pros & cons Also , whether SSIS can pick a file from a table with from a VARBINARY(MAX) column and process it Thanks in advance, DBAnalyst That highly depends on the use of the files stored in SQL Server. Are they either small or big, are they retrieved often or seldom.... HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Microsoft ISV Community Center Forums One COM Add-in for all versions of Office (2000 and up)?

    If I create a COM Add-in for Office XP, will it also work for Office 2000/2003 Or do I need to create a new Add-in for different versions of Office Is there any reason to use COM Add-in vs. traditional XLA or DOT file beside having one dll that works for both Excel and Word My add-in does implement the IDTExtensibility2 interface. What I am worried about is that in my project, I have to refernce Microsoft Office 11.0 Object, Microsoft Word 11.0 Object, and Microsoft Powerpoint 11.0 Object. Now if I deploy this add-in to a user that doesn't have Office XP, they won't have those reference. I could deploy the referenced dlls with my add-in but will that violate Microsoft licensing ...Show All

  • Visual Studio 2008 (Pre-release) Custom Popup Placement in control template

    Hi I am developing menu control template and I need to position menu popups in a custom way. Popup supports CustomPopupPlacementDelegate property which can be used for this purpose. But the problem is I cannot set the delegate value in XAML because there is no type converter for it (i wander why it was not done using RoutedEvent). The MSDN sample tells about procedural usage of this delegate (i.e. in popup started button click, or Window.Initialized() etc), but I dont know how to do it in a control template. Any ideas of how to do that One way to do it is to add a static property on some class that returns a CustomPopupPlacementCallback public class MyPlacement { public static CustomPopup ...Show All

  • Windows Forms Deployment Package Developer please help

    Hi All, I need to create a deployment package with the following requirements Place a folder and files under wwwroot folder, and create a virtual directory that maps with the folder with “Read”, “Run scripts” and “Execute” Virtual Directory Access Permissions. Give Internet User Account “List Folder Contents”, “Read” and “Write” permission to a specific folder. Give Internet User Account “Read” and “Write” permission to an .ini file which will be in an virtual directory. Run an SQL script located in the same folder. Check if the OS is Windows 2003, if yes add a web service associate it with a dll file within the folder and set to “Allowed”. Add the file path of the dll into environmental system variab ...Show All

  • Visual C# Asian characters in a rich edit text box

    In my C#, VS2005, app, there are labels and three rich edit text boxes. Chinese, Korean, and Japanese characters are being displayed on the labels, but " " show up on the rich edit controls. Operating System being used: XP, SP2, US version. I have gone into Control Panel \ Regional and Language Options and 'Installed files for east asian languages' and also 'Install files for complex scripts...". Do I need an Asian operating system to see the characters instead of the " " on a rich edit control This is the code I'm using that works for labels. m_rtfDesc.Rtf = @"{\rtf1\ansi \nowwrap " + prodDesc + "}" ; Thanks in advance. Thanks for the quick re ...Show All

  • Visual C++ URGENT!! New using VS 2005!! Problem on releasing...

    Hello, I have a question like I have two computers at home, one loaded VC++ 2005 Express and the other one with nothing but a clean Windows XP. I am working on a little project on the computer w/ VC++. After I compiled the project by using either (debug/release), when I try to run the exe file over the other computer (I copied the whole folder to the other computer already). It shows an application error. Is there anything I can do Thank you!! Luis All the links you have mentioned above are actually working perfectly fine - at least on my end. Perhaps, you need to check your proxy and it's configuration. Also, when stuff doesn't work on your PC when it is supposed to, it helps to check on one more ...Show All

  • SQL Server Using Multiple Versions of SQL Server in a Replication Topology

    Hi there, I have one publicacion on ms sql 2005 Enterprise w.sp1/MS Windows 2003 Enterprise w.sp2 and one subscriber on MS sql 2005 Enterprise w.sp1/MS Windows 2003 w.sp2, but I have also 3 subscriber on MS SQL 2000 w.sp3/MS Windows 2000 advanced server w.sp4. They replicate the same database with a publication compatible with 80RTM, All works fine with data replication, but I can't replicate DDL to MS sql 2005 suscriber, I don't care that don't replicate DDL, but I want manually alter triggers at MS sql 2005 suscriber, but I get this error at the subscriber on when I run the ALTER TRIGGER statement : Msg 21531, Level 16, State 1, Procedure sp_MSmerge_altertrigger, Line 67 The DDL statement cannot be performed at the Subscribe ...Show All

  • Visual Studio 2008 (Pre-release) Configuration help.

    I am having some configuration problems and I would like to solicite some help from this group. I have tried reading "Programming 'INDIGO'" on configuration but it seems that many of the tag names and configuration sections have changed so that it is very hard to take samples from the book and apply them. Is there a better reference on configuration of server and client Where would be the best place to go for samples At a very basic level I would like to configure a client and server to use or listen on an HTTP address and a TCP address. This seems simple enough but the configuration has me tripped up right now. Thank you. Kevin If you have a working ‘programmatic’ CustomBinding, you can a ...Show All

  • .NET Development How to run 32 bit windows forms application on 64 bit environment?

    Hi, I am working on porting my 32 bit windows form application to 64 bit Vista OS. But I got an BadImageFormatException when launching interop dll which is written in Managed C++. The application is written by using C#, and it depends on an interop dll(managed C++) to call a win32 dll(C++). I trace the program execution by using Visual Studio 2005, and then found an BadImageFormatException is thrown when the application is trying to load the interop dll. The same interop dll is also used in another ASP.NET webform project, initially I got the same exception as windows forms, then I found from http://support.microsoft.com/kb/894435 , I can set a property( Enable32bitAppOnWin64 ) of IIS to make my 32 bit web application runnin ...Show All

  • SQL Server Regarding Collation for mirroring & Error 1418

    Can I know is it possible that if the database servers' collation in both principal and mirror server might unable to get the mirroring Because one of database collation is Latin1_General_CI_AS while another server (mirror) is SQL_Latin1_General_CP1_CI_AS . I did several type of troubleshooting but still unable to solve the Error 1418. All the ports are stated as started, able to use telnet to connect to the server's port but still unable to get a connection for the database mirroring. I do really need help on it. Thx for the assistance and kindness. Best Regards, Hans Oic, means Collation will not causing the problem then. Domain account Is it 'Log on as ' Local Systemn, Local Service and ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Brand new to XNA

    I've used Visual Basic before and have done some developing in Visual C# 2005 Express and found many beginner tutorials for that, but not all of the information can be appied to XNA, more specifically the design ability. Are there any completely basic video tutorials for XNA Like just something 2d and making a box move or something. Xbox 360 would be prefered if possible. I've found some text ones online but they weren't easy to follow. Thanx -Joe Glad to see you making the jump to C# There are a couple of very cool tutorials that come with the built in help in Game Studio Express. Start with the 2D ones, this is some of the best out of the gate help I have seen in a MSFT product so make sure and give it a browse... ...Show All

  • SQL Server Import\Export Wizard Feature?

    A new developer tried to import a data file using the Import\Export wizard. Unfortuantely, the file had several format errors and the process aborted after reading one bad line. (I imported it using a BIDS package with error handling. The file had 454 bad rows.) Are there any options in the I/E Wizard to log\skip errors but continue processing After all, the I/E Wizard is designed for quick-and-dirty use and if it can't "handle" erroneous data "gracefully", it is not a very practical tool. TIA, Barkingdog That's an interesting request - could you log it through the feedback site I can see a ton of difficult questions around how we would implement it to ensur ...Show All

  • Visual Studio Team System MS Project and TFS questions

    Here are some more issues that my client has encountered while using MS Project with TFS. Are there any work arounds 1. TFS seems unable to deal with special characters such as brackets ' [' e.g. Smith, John [ABC Company]. When synchronizing Project after making changes on TFS, it doesn seem to be ok with special characters like commas and parentheses ',' and '(' e.g. Smith, John (JohnSmith) 2. When changes are made to Remaining Work and completed work, how does MS Project interpret those updates It seems that the finish dates are dependent on the values entered in TFS. There is no easy way to 'approve' the changes before the update is done ( like with PWA). hey...i am sorry i missed out...one info.. ya you are correc ...Show All

©2008 Software Development Network