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

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

coppertopuk

Member List

lois_at_DEI
Handschuh
BenCh1
akjal
Muricy
greatway
angrypilot
Vasile
Stebane
EvilOneSD
Okugops
Babu Annamalai
Barry333
SoopahMan
GethWho
kesim
hazz
Dwz2006
langev
Sniper167
Only Title

coppertopuk's Q&A profile

  • Visual Studio How to auto-download binaries to device

    Im using VS2005 and debugging on the PPC device. Can i set up VS so i can automatically download rebuilt binaries to the device each time i start a debug session Currently i have to keep manually copying updated binaries before i start to debug. Thanks Sorry meant to say where to do that. Under Build Events on the properties for the project. Add your copy steps to your post-build events. ...Show All

  • Visual Studio Express Editions Power Point Show in WebBrowser Control ? can it be done ?

    how to view power point show inside a web browser control in an application form thank you ahmedilyas wrote: sorry whats the problem :-) you seem to have it right.... this.webBrowser1.Url = new Uri(@" file:///c:\whatever\yourpresentation.ppt ") it doesn't work with me , so i wonder is it something with the power point file extention , or is it something with the way to use the webbrowser control ...Show All

  • Visual C# Explicit Interface Methods Implementation

    In MC++, I can do the following: - MC++ Sample: __gc __interface ICloneablePerson { Person* Clone(); }; public __abstract __gc class Person : public ICloneablePerson { private: String* _name; protected: Person() :_name(String::Empty) { } Person(String* name) :_name(name) { } Person(Person* source) :_name(source->_name) { } public: __property String* get_Name() { return _name; } }; public __gc class Student: public Person { private: String* _id; public: Student(void) :Person() { _id = String::Empty; } Student(String* name) :Person(name) { _id = String::Empty; } Student(Student* source) :Person(source) { this->_id = source->_id; } Student* ...Show All

  • .NET Development How to notify changes in a DB table to a C# 2.0

    Hi everybody We are developing a application in C# 2.0 with M.Sql Server 2005. The application will run in multiple PC's linked by a INTRANET with a big bandwidth. In the application there are DataGridViews showing registers from a table and we want when a user create a new register in the table of the data base, all the DataGridView where the table is showing in all PC's of the net, refresh the grid in order of the new row appears. We are looking for any kind of trigger of the DB that notiffy to the app. when a new register was created, any configurable message of the database or any funcionality like this. Any Ideas Could you help us Thanks in advance. Are you using SQL Server 2005 or the Express edition ...Show All

  • Visual C++ MFC: Add line between menu and toolbar

    Hi Folks, Does anyone has an idea how do I insert a line between the menu and toolbar of my application. Please help me out on this as I am stuck :-( Thnx Prateek This is what I have done. I inserted a rebar just after menu, and then a toolbar. In the rebar I inserted a CStatic control and override the OnPaint of CStatic to that I color it red. It works, but the look and feel is not satisfactory :-( ...Show All

  • Software Development for Windows Vista WebPageRequest/Response activities for ASP.NET integration

    http://wf.netfx3.com/files/folders/control_flow/entry4354.aspx Package includes WebPage Request/Response custom activities: - WebPageRequest - WebPageResponse - WebPageTransfer - WebPageRedirect These activities will help integrate Workflow technology into your ASP.NET projects. Just derive your ASP.NET page from "WorkflowPage" and indicate which workflow to use. Features: - integration with Http Request/Response, ability to expose Http parameters in Workflow designer, ability to "Activity Bind" and use them in rules/condition expressions. - integration with ASP.NET WebControls and data binding sample - ability to use in both Sequential and StateMachine Workflows - includes extensible examples of work ...Show All

  • SQL Server Issues With SQL 2005 Encryption

    Are there any pitfalls i should look out for when using the encryption in SQL 2005 From the Managment Studio I open the Key and then run the statement Select * From sys.openkeys. and it does not show anything. as if no keys were ever created. I ran both statements from the server not from my workstation. Thank you for your help. Jeff Welch ...Show All

  • Visual Studio Team System Want just to see (not manage) work items from project portal

    Basically, I would like to see work items query results from the project portal. For example, I would like to see all scenarios for a certain iteration. I understand that I need to bring somehow TFS work items to SharePoint and the way of doing it is via reports. Is it right If it is, how do I achieve this Hello Eliyahu, Yes, that is correct. You can create reports and view them from the team portal. Here are a couple of links that might be helpful: http://msdn2.microsoft.com/en-us/library/ms244699.aspx http://msdn2.microsoft.com/en-us/library/ms244700.aspx Do let us know if you still have questions on building reports. ...Show All

  • Windows Forms deploy activex via msi instead of cab

    I have a old ActiveX that we deploy via a .cab file from our website. However, one of our customers needs a MSI so they can do a remote deploy to their workstations. The current .cab file has a .inf file which stores the classid and information about the files to be deployed. I can add those files to my current vs2003 deployment project, but how do I assign those files the classID specified in the .inf file please advise -Smit. If you add the OCX to the setup&deployment project, then in the properties you can just set the property to vsdrfCOM and it will collect the registration entries into the MSI file to add them during the install. Does the inf file name any dependent Dlls that need to be installed A .dep file Choose the ...Show All

  • .NET Development How can I parse an SQL statement into a canonical form ?

    Is there any class available (either in the framework or external and in that case preferably open source) that can be used to test whether two sql statements are equivalent or not (equivalent regarding irrelevant white space, parentheses, and upper/lowercase for keywords) Basically, what I would like to do is to find a class (below called SqlParser)that I can use like this: string sql1 = SqlParser.getSqlStatementInCanonicalForm("SELECT mycol1 FROM mytable where mycol2=1 and mycol3='abc'"); string sql2 = SqlParser.getSqlStatementInCanonicalForm(" sEleCT mycol1 frOM mytable where ( mycol2 = 1 ) and ( mycol3 = 'abc' ) "); NUnit.Framework.Assert.AreEqual(sql1, sql2); / Tomas Paul P C ...Show All

  • Visual Basic How to make a Timer and ButtonVisibility Question.

    Ok, I just got done with the Alpha and Beta stages of a really simple game I'm making and it's going out pretty good, but I wanted to add more interface so that it would actually be a fun game, so what I wanted to do was after an amount of turns I wanted my Button5 to become visible (I know how to make it visible the only thing I'm having trouble with is how to make it so after five turns it becomes visible.) and once it becomes visible you can click that button for about 10 seconds before it becomes invisible again, but I also needed to know how to make the timer and how to make it so that the time only starts once the user clicks it once. Anyways help would be greatly appreciated and thanks for the MSDN forums, whenever I have a VB relea ...Show All

  • Visual C# .Net2 Webbrowser control: detecting DOM modifications

    Hello everyone, I am toying lately with the new .Net 2 WebBrowser Control (I'm trying to do an automated Internet Explorer named automaton). I'm programming a automaton script editor. It works like a normal Internet Explorer, but it saves the user input on the DOM. When a user click on an element, the script editor stores this operation. To do this, upon document load, I add programmatically, for each element, a new function on the click event, which notifies my application which element has been clicked. It works somehow, but I have problems with recents websites, which are using extensive Javascript/Ajax: some Javascript modifies the DOM after the document has been loaded, so my application can't detect a click on those eleme ...Show All

  • SQL Server sql command oracle oledb connection - parameter issue

    I need to extract rows using date as parameter... where source contains millions of rows but few thousands per date. I tried using SQL command in data access mode in OLE DB Source Editor but having problem with passing parameter... Anyone has solution I tried with Oracle 10g Provider for OLE DB - It didn't work . I guess Microsoft has to fix this issue. Finally ended up using variable expression approach! Thanks ...Show All

  • Visual Studio 2008 (Pre-release) I hate June CTP

    While getting new releases of any software you may expect better experience. After Beta2 version of Windows SDK for Vista, former WinFX and Orcas beta 2 - I can see the situation which is not what I expected... First of all a lot of troubles with Windows SDK setup (which are now resolved) made me download DVD Image 3 times and finally I managed to get June SDK installed only using web-installer... And after all this what I really have I see that more than 50% of my projects I made with Beta2 don't work for a number of reasons: I get an error about mismatching version of PresentationCore.dll , I see that many things in the code are changed and I really dont understand why - for example I found this limitations for <Image Source ...Show All

  • Architecture have a problem with the 'GetFileInformationByHandleEx ()' function

    Distributive file :  "Win32 FileID APIs 1.1.EXE" Function :  'GetFileInformationByHandleEx ()' Requested :  'GetFileInformationByHandleEx (file_handle, FileNameInfo, buffer, BUFFER_SIZE);' After function request, in the buffer I have file name, but seems the function truncate 4 bytes of it's beginning, perhaps because it put file name not in the 'FILE_NAME_INFO.FileName', but exactly where points my 'buffer', and then overwrites first 4 bytes of it (in 'FILE_NAME_INFO.FileNameLength', where it (the length) is intended to be) with the value of string bytes in the truncated file name. So I got {0x00000036, "\WINDOWS\System32\ntdll.dll"}, instead of {0x0000003a, "C:\WINDOWS\System32\ntdll.dll"} (in Unicode). *'buffer' and ' ...Show All

©2008 Software Development Network