CFIG's Q&A profile
Internet Explorer Development IE7 Problems with Active-X
IE 7 is a great creation by microsoft but still contains a lo of bugs. I've been having a problem from the begining. I've been unable to view FLASH files in web pages (flash and webpage hosted in different servers) or when I'm able to see it, the IE gets partially hanged after loading the page. I've been havin prob especially with my profile: http://xsumitx.hi5.com Can anyone tell me what to do. The page works aweome in IE6 and Firefox Thanx All of my problems began with You Tube after I viewed videos the first time there. Nearly every web site I go to now has formatting(scripting) issues, maybe Java, maybe ActiveX. I'm ready to blow up my machine and F disk this thing just so I can read the NYT o ...Show All
Game Technologies: DirectX, XNA, XACT, etc. hey can some one help?
hey guys im new at at all this code stuff what code does it use to make a game on xna and can u make a first person type of game on the xna ... and could i do this if i can Thanks to all.. Also check out some of the tutorials on this forum: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=690814&SiteID=1 ...Show All
Visual Basic Find all JPG and Convert to TIFF
Hello Everyone, I have a folder which it have about 200 files of both JPG and TIF format. I want to write a application that loop to that folder and find all JPG file and convert it to TIFF but I don't know where to start. Can someone help or point me to any thread that could solve my problem Thank you Something as simple as this seems to work ok. Dim I As Image For Each Filename As String In My.Computer.FileSystem.GetFiles("d:\temp", FileIO.SearchOption.SearchTopLevelOnly, "*.jpg") I = Image.FromFile(Filename) I.Save("d:\temp\" & IO.Path.GetFileNameWithoutExtension(Filename) & ".tiff", System.Drawing.Imaging.ImageFormat.Tiff) Next ...Show All
.NET Development selecting a child
Hello, I want to find a single node by name. I'm using the SelectSingleNode method of the XmlDocument object the problem is that when the XML contains child elements of type comment this method does not work. Is there a way to find a node by name if there are comments node in the xml Thanks, How about showing the exact XPath expression you are using With the XPath expression XML/Child[@name = 'firstChild'] this C# sample using your XML as the input finds the element without problems: string xml = @"<XML> <!--Comment--> <Child name=""firstChild""/> <!--Comment--> <Child name=""secondChild""/> </XML> "; ...Show All
Visual Studio Team System Team Foundation Server & Web Project
Hello ~. I've installed Visual Studion 2005 and Visual Studio Team Foundation server. After I installed VSTFS , I cannot build any web Project using VS 2005. Help me~ ...Show All
.NET Development Web service and SOAP
Hi, I am very new to web services so please excuse my ignorance, I have created and deployed a web service that is able to handle SOAP requests i.e. < xml version="1.0" encoding="utf-8" > <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <TransactionRequest xmlns="http://xxxxxx.co.uk"> <CustomerAccount> string </CustomerAccount> <ReferenceNumber> int </ReferenceNumber> <shop> int </shop> <Amount> double </Amount> </TransactionRequest> </soap ...Show All
Visual Basic compile both dll and exe
how can i set up vb.net to create both a dll AND exe on the same compile and then also have the install project recognize both dll and exe and register (with COM) the dll on install at the users computer not only is it a pain to continually switch between the two types of projects for each update, but also a pain to maintain two install packages. thanks This what a solution is. A solution consists of may projects. To compile a dll with you project simply add the dll project to your solution. Be sure to set to identity the application as the Startup project in the solution explorer. Why are you doing this as COM Aslo did you know there is a component in VS2005 that will pack dlls into th ...Show All
SQL Server Password Encryption
Hi I want to encrypt the password. Can u suggest some Encryption algorithms for Password protection Thanks There are several option based on the SQL Server Version you are using, SQL 2k5 has built in ecrypting mechanisms, SQL Server 2000 does not. What are you using HTH, Jens K. Suessmeyer. --- http.//www.sqlserver2005.de --- ...Show All
Game Technologies: DirectX, XNA, XACT, etc. General strategy question about XNA
What is MSFT's strategy with GSE I mean, is it a stripped-down version of GS Pro meant to spark interest in GS Pro Is it actually going the core of GS Pro, and the hobbyist/student community is acting as both first adopters and beta (or even alpha) testers of the product Is it a way for MSFT to foster some kind of indie/small game shop Xbox360 game development (The latter would seem to be slightly odd: the actual dev kits, I gather, are not a minor expense, in addition to what I'm assuming are certification and any other testing expenses; I would think that releasing an alternate path for Xbox game development might cannibalize an existing revenue stream...) It would seem to me to be just simpler to wait for GS Pro to come out, and l ...Show All
Visual Studio 2008 (Pre-release) Pixel manipulation
How do I change pixels in a bitmap I've only seen examples of creating new bitmaps from an array of values, but I need to be able to set pixels in an existing bitmap without the overhead of re-creating it from scratch every time. Can I lock bitmaps like with System.Drawing.Bitmap and manipulate memory directly Not in XBAPs of course, but for desktop apps I think you want System.Windows.Media.Imaging.WriteableBitmap I've never personally used it so I can't give you much more advice than that. David ...Show All
Visual Studio Team System Major Modifications of Task.xml cause project creation failure. (process template is uploaded without errors)
I am beginning to think that there are limits to the extent that the task.xml WORKITEM can be modified; I am guessing the problem resides in the generic tasks that TFS places in your "todo" list at the creation of your project. There seems to be no way to turn off the creation of these assignments when you create your project. My experience is that I can modify Task quite a bit; but as soon as I make too many modifications to the <TRANSITIONS> I will get an Exception (see below). I can even cut and paste from "Bug.xml" all my states and transitions that work just fine in Bug, but fail when imported into Task.xml. Additionally I have found that if I try to make my own field (MPRI.Common.EstimatedHours) requi ...Show All
.NET Development 64bit Office Interop ...
Hi all I have some trouble with Office (Excel) Interop integration ... I have a x64 Windows Server System. I have some applications and they are written in C# 2005 and some of them use excel Interop. The applications wont run the Interop.Excel Code on this system. Error message: Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046} failed due to the following error: 80040154. I guess I need a 64bit Interop.Excel.dll. Am I right If yes, where do I find it Thanks for any comments! Best regards Frank Uray Hi Ken Thanks for your answer! I did compile already for x64, it does not help. The file Interop.Excel.dll is still the same ... Best regards Frank Uray ...Show All
Windows Forms Typed dataset code change
Hi, I have a typed dataset for which the code is auto-generated fortunately or unfortunately (not sure).... When I explicitly change the generated code, say I change an input parameter type of a method from int to string, the same doesnt get reflected in the .xsd which is the designer. Is it because of the GeneratedCodeAttribute Thanks, Shyam ...Show All
Gadgets Error using System.Network.Wireless
Hello, I'm trying to develop a Winows Vista SideBar Gadget using the System.Network.Wireless Object. When I try to get the Wireless-connection-information the first time, everything works well, but when I try to read the data again, an error occurs. MyCode: function getwlan( ) { try { wlanip.innerHTML =System.Network.Wireless.address; wlandns.innerHTML = System.Network.Wireless.primaryDNSAddress; wlansec.innerHTML = System.Network.Wireless.secureConnection; wlansignal.innerHTML = System.Network.Wireless.signalStrength; wlanssid.innerHTML = System.Network.Wireless.ssid; } catch (e) { wlanssid.innerHTML = "Fehler"; } } As I said, when I call the getwlan-function again, wlanssid.innerHTML gets "Fehler" from ...Show All
Windows Forms Parameter Query in TableAdapter assigns wrong type to parameter
I have created a TableAdapter in the designer, and I have named parameters in the query. But the Fill and GetData methods that are generated are using the wrong datatype for one of my parameters. The query is in this form: select * from invoice where (@InvoiceDate IS NULL OR (DateAdd(d, -14, @InvoiceDate) < invoice.InvoiceDate AND DateAdd(d, 14, @InvoiceDate) > invoice.InvoiceDate)) The generated methods see @InvoiceDate as an int, not a DateTime. Is there a way for me to force it to recognize this parameter as a DateTime ...Show All
