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

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

Enix591

Member List

anglerdk
OasisGames
xochi
Jay Thomas
Webhostbudd
Dr. YSG
nychia2001
Nick Forte
Pooja Katiyar
SimonOng
Angry Coder
Danny Tuppeny
ryanlcs
LouisPeter
MattFletcher
AntonioMaia1
Thorri
tenchyz
imtaar
rako77
Only Title

Enix591's Q&A profile

  • Visual C# Q: Communication between a c# application and javascript

    Hello everybody. I have a question concerning c# and javascript. I have created a small c# application that applies the sepia effect over a certain picture. What I want to do is to be able to do this from a web page...I've read that this is done using web services All right, so what I want to do is to load a certaing picture in the browser, the browser to communicate with the server holds the c# application, the c# application to manipulate the image(apply the sepia filter) and then to return the ready image to the browser....I hope you get what I am saying so far.... So, could you please explain this to me, or just give me an idea how to achieve this....maybe if you point me what to read and where, I would be really grateful... well that ...Show All

  • Visual C++ Visual C++ 6.0 and Visual Studio .NET

    I have an old program (I programmed quite a long time ago with Visual Studio 6.0) that i want to transfer to Visual C++ .NET however, i have since lost the source code to it. Do you know of a de-compiler that i can use on the .EXE file that will give me that source code Thanks in advanced. D. Rux Dan Rux hi, I am afraid that there is not a way to get your source code from the .EXE file. The only thing that you can obdain from any .EXE file is only assembly language code (useless i think) and i am not sure if this can be done by Visual Studio. ...Show All

  • .NET Development Why does System.Drawing.Rectangle become ValueType?

    Hi all, I have a managed C++ class library I use from a C# program. All of the functions that take or return Rectangle, RectangleF, or other structs now take or return ValueType. Why is this and how can I fix it The Rectangle and RectangleF types are simple struct declarations. In the .NET CLR, structs are value types. They get allocated on the stack instead of the managed heap, giving Java a nice kick in the pants. Conversion to a reference type (or Object) is automatic through a process called 'boxing'. That has a few nasty side-effects that every .NET programmer should know about. Getting to the point: what is your problem ...Show All

  • .NET Development converting a normal xml to C#

    i m new to xml and am using c# to System.xml lib to generate an xml file as shown below i m not sure how to go about it. could any one explain the following and also a way to generatein C# <wap-provisioningdoc> <characteristic type="Sync"> <characteristic type="Connection"> <parm name="AllowSSLOption" value="1" /> <parm name="Server" value="\\testserver"/> <parm name="Domain" value="as-domain" /> </characteristic> </characteristic> </wap-provisioningdoc> my attempt : XmlTextWriter xmlWriter = new XmlTextWriter(xmlFName,null); xmlWriter.Formatting = Formatting.Indented; ...Show All

  • Visual Studio Tools for Office Excel automation question

    I am trying to programatically delete all rows that have been filtered out with an autofilter in an excel spreadsheet. I can find a lot of examples of how to delete rows that have not been filtered out, but I want all "hidden" rows deleted. Any ideas Hi Mike The best place to get help with a basic automation question is the excel.programming newsgroup. The folks there are VBA-centric, but they really know Excel inside-out. This forum is really dedicated to the VSTO technology, although object model questions do get answered, on occasion. But your request is so specialized, you should go right to the experts :-) If you're programming in C# and get some VBA code you can't get to work, feel ...Show All

  • Visual Studio Team System ASP.Net Templates?

    Hi There I installed VS.Net version 2 but I don't have the ASP or Web Service templates, can anyone tell me what I need to do, I have added added IIS to the machine but still no template, un-installed and re-installed VS but still no templates. HELP! Different versions come with different MSDN subscriptions. Did you check "Visual Web Developer" when you did the install Also, are you going to "New Web Site" and not "New Project" The web templates are not shown in the "New Project" dialog. ...Show All

  • Smart Device Development Does CF2.0 have a Diffie-Hellman key exchange protocol implementation?

    can anyone post some related materials or links about it many thanks! Hi AFIK the .NET CF 2.0 does not support this out of the box. But the underlaying Windows Mobile OS (part of the CryptoAPI) does support two Diffie-Hellmann protocols. Details see: http://msdn.microsoft.com/library/default.asp url=/library/en-us/mobilesdk5/html/mooriCryptographyForWindowsMobile-basedDevices.asp and http://msdn.microsoft.com/library/default.asp url=/library/en-us/wcesecurity5/html/wce50lrfALGID.asp And this might be helpful as well: http://www.mentalis.org/soft/class.qpx id=15 Michael ...Show All

  • SQL Server Accessing Variables in SSIS code

    Hi I am not able to access SSIS variables which are defined at Data Flow Task in a custom component. This custom component is developed by me in C#. How can i access these variables Please let me know if theres a way to access SSIS variables. Thanks, Vipul Hi Mike: Thanks for the reply. This is the my part of code which i m using. Microsoft.SqlServer.Dts.Runtime. Package pkg; Variables sourceIdVar = null ; Microsoft.SqlServer.Dts.Runtime. VariableDispenser vd; pkg = new Microsoft.SqlServer.Dts.Runtime. Package (); vd = pkg.VariableDispenser; vd.LockForRead( "System::PackageName" ); vd.LockForRead( "User::sourceId" ); // <---- accessing th ...Show All

  • .NET Development MSHTML problems.

    I wrote a program that crawls a particular webpage using mshtml.dll and interop.shdocvw.dll. It creates a web browser object and then navigates through a couple pages. It works on my computer and most other newer computers that I try it on, but on some computers it crashes near where it uses the web browser object. It crashes on a computer that is running XP, .NET 2.0, and IE 6.029. All of those specs are the same as on my dev computer (which it works on). I also include the shdocvw.dll with the program when I give it to people to try. Does anyone have any idea what is missing which is causing it to crash This forum is dedicated to questions about the System.Net namespace. Please see http://www.microsoft.c ...Show All

  • Visual Studio Team System How to Checkin all files in Source Control using TF Command Line Checkin

    I am trying to update my old files in the Source Control of Team Foundation Server use TF Checkin command. When I run the tf checkin command it returns 'Could not find file c:\ProjectFiles\1.cs. No files checked in'. I am using this command line:  tf checkin /recursive /comment:"New build" /notes:"Code reviewer=Cindy; Security reviewer=Cindy" /noprompt I verified the missing file in the project folder, this file has been deleted in the new build.  So how can I update all files in a project folder while some of them have been deleted in the new build Thanks,                       &n ...Show All

  • SQL Server Outer join problem

    Hi guys I have got two tables which I need to join table 1 DHBName DHBService PU Budget Admission ABC C1 M00 $200 Acute ADC C2 M10 $300 Severe Table 2 DHBService PU Admission Actuals ABC M10 Severe 412.88 ADD M12 Acute 333 The 'DHB Service ' , 'PU' and 'Admission' are common in two tables but 'budget' and 'actuals' are different I need to combine these two tables in such a way that I have all the fields from both the table The sample result should be like this DHBService PU Admission Budget Actuals ABC M10 Severe Null 412 ADC M00 Ac ...Show All

  • Internet Explorer Development using a scanner with Ie.

    I have a rather complex little problem facing me.  The company I work for implements a CRM application that is purely a web application.  We have clients that use a Card Scanning Solutions license scanner to gather information about the customer.   I need to make the following happen. User logs into an ASP or ASP.NET 2.0 site.(we have two versions of our application) User clicks a button on an IE toolbar and a dialog is displayed that prompts them to insert the license into a scanner. Clicking through this dialog makes a call to the Card Scanning Solutions license scanning SDK which is registered as a COM object on the user's system. The scanner returns information read from the license to IE and IE closes t ...Show All

  • Visual Basic save file on another have the same name :"overwrite"

    hi : how can i save file overwrite on the another have the same name When you are directly pointing the panel's backgroundimage to a file, then you are creating a connection between the two so when you then try to overwrite that file, you get an error because the panel is still using the file as backgroundimage. So you need to make sure that no link can occur - in the example, I use a copy of the bitmap-from-file and make sure that the bitmap-from-file is disposed (=destroyed in memory) before using the copy as the backgroundimage. I'm assuming you want to paint something onto the panel(and its background) and then use the BitBlt operation to copy the result to file, but you can do that with managed co ...Show All

  • Software Development for Windows Vista transactions and ExternalDataExchangeService

    I have a state machine workflow that represents my process. At a pre defined time, a bunch of instances get kicked off. Then individual users interact with specific instances to move them through their states. Finally, at another pre defined time, I need to complete all the instances, followed by running a stored proc. To complete the instances I can just iterate through all the active ones and raise my ThingyCompleted event in my ExternalDataExchangeService. The trick is that I want all the event raising and the execution of a single stored proc to all happen in the same transaction. Since the stored proc is basically a rollup and needs to happen after all my workflow instances complete, it has to be run from the host (as opposed to ...Show All

  • .NET Development Map a drive in dotnet 2

    I there really no way to map a network drive in the framework Do I really have to use the WNET API It is so unweildly. It seems like the IWshRuntimeLibrary.IWshNetwork_Class would be much easier to use. There must be a disadvantage to using the simpler scripting API. Any thoughts ...Show All

©2008 Software Development Network