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

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

Mayero

Member List

Beetle54
srinivasintouch
Lojikl
Folyjon
Glint
Euclidez
PikachuTrAiNeR
NagySaNa
PublicError
Richard Russell
palestine
a.s.viswa
Mike Teperman
mcdonaldn
tarponboy11
frank chen
Ram v
JasonG271009
zhang_honggang
steff111
Only Title

Mayero's Q&A profile

  • .NET Development XML recursive parsing

    Hello, I am new with xml parsing, maybe what I am going to ask is very simple but I don’t know how to do it. I know to parse simple XML documents but I don’t know how to parse documents with a second XML structure inside some names: Here is my example: <SERVICEINFO> <LAYERINFO name="200.000" id="9" > </LAYERINFO> .... <LAYERINFO name="Provincia" id="2"> <FIELDS> <FIELD name="TERRITORIO" /> <FIELD name="TERRITORIO2 /> <FIELD name="TERRITORIO3 /> ... </FIELDS> </LAYERINFO> <LAYERINFO name="Poblacion" id="1"> <FIELDS> <FIELD n ...Show All

  • SQL Server Can't Install Express because .Net Framework 2 is installed! I'm going around in circles.

    I'm new to SQL Express and from the SQL Express DOWNLOAD page you need to install .NET Framework 2 then install SQL Express. After installing .NET Framework 2.0 I then attempt to install SQL Express and I get a message that SQL Server 2005 Setup has detected incompatible components from beta versions of Visual Studio, .NET Framework or SQL Server 2005. I used the Visual Studio removal tool and it took out .NET Framwork. I re-installed this and did a reboot and get the SAME ISSUE! CAN ANYONE GET ME OUT OF THIS MS loop nightmare. Thanks! Jeff Make sure that you uninstalled any beta-versions of SQLServer 2005 / VS / The Framework and other beta products that might have shipped the .NET 2.0 beta along w ...Show All

  • Visual Studio Retrieving a CodeElement for a local variable or parameter.

    Hi, I’m wondering if it is possible to retrieve a CodeElement for a local variable inside a method and also for the parameters of a method. I need a CodeElement representing the variable and parameters, in order to call the RenameNoUI of the ICSCodemodelRefactoring interface. I have tried alot of different approaches, like the following: CodeElement element = fileCodeModel.CodeElementFromPoint(editPoint, vsCMElement.vsCMElementVariable); Unfortunately nothing works... Any clues / Joel You can retrieve the parameters of a function casting the CodeElement to CodeFunction and using its Parameters property. You can't get a code element for a procedure variable, it is not supporte ...Show All

  • SQL Server Deserialization Failed: Parent Columns and Child Columns don't have type-matching columns.

    After about an hour and a half of validation, my Analysis Services database has been migrated from 2000 to Analysis Services 2005. I am now receiving the error in the subject any time I try and access the Data Source View that was created. All dimensions and cubes cannot be processed. I have tried editing the xml manually to no avail. Any ideas would be much appreciated! I have exactly the same problem (Migration : all OK but I can not open the dsv properties ) I don't understand your resolution. The migration generated a file .dsv.xml What "Id" did you rename I tried to rename the data source view ID but still cannot open I cannot open the databases through Visual Studio. Same error message. ...Show All

  • SQL Server Transaction is working but with one problem

    sp to update inventory working great(a little too great) update set instock=inventory.instock-invoicedetails.qty if i set the join to the itemno, then i can call tableadapter.updatequery("itemno") when I do this it subtracts the qty entered in invoice details everytime on all rows. need to add a filter to the query but how if i add where InvoiceID=@InvoiceID then I can't seem to call it because I get an error converting string to Int. I'm obviously not entering something right. Thanks. You are right; the variable should be @invoiceNo and not @itemNo: DECLARE @invoiceNo <dataTypeOfInvoiceNo>; SET @invoiceNo = 1000; -- Or whatever the invoice number that was i ...Show All

  • Visual C# how to put a bitmap into a printjob or document

    Hi there, I have to create a bitmap from a byte array and put this bitmap into a printjob or a document like PDF. How can I do this Can someone help me Greets sirithvasa This may help you in getting a Bitmap object from a byte[]: Stream stream = new MemoryStream (myByteArray); Bitmap bitmap = ( Bitmap ) Bitmap .FromStream(stream); I'm not to sure about printing as I've never done it myself, but here are some open source pdf libraries http://csharp-source.net/open-source/pdf-libraries . My personal preference is the sharpPDF http://sharppdf.sourceforge.net/ ...Show All

  • Visual Studio Error Logon

    I have read a lot of posts on what people did but it seems like everyone did the same thing but i dont understand any of it. I have VS 2005 and when devloping reports they run fine on the development machine but when moved to the server and accessed from a client machine inside the network a page comes up asking for login information. I have intergrated windows auth into the intranet site. How do i get rid of this page and just display the report here is the code to my file <% @ Page language ="C#" masterpagefile ="~/MasterPage2.master" autoeventwireup ="true" codefile ="closeouts.aspx.cs" inherits ="Closeouts" title ="Untitled Page" %> <% @ Regist ...Show All

  • Visual Studio Integrating external Editor like Notepad

    I would like to integrate an external editor like notepad or CodeWright to the IDE of Visual Studio 2005. I tried the examples from http://www.devx.com/vstudioextensibility/Article/31688 and they work fine, they are for custom editors. But I dont’t know how to do the same with an external editor. Where can I find an example of that . Any help would be very appreciated. Regards, Claudia. Hi Claudia, I am afraid there is no easy way to do this and Visual Studio does not support hosting other external editors. As the article suggests, you can only invoke external editors using your package. Do you have a specific scenario where you want this kind of functionality Thanks, Nitin ...Show All

  • Visual Basic Problems with streamread

    I discovered a really great problem when using streamread function in visual.... The special characters, such as a, e, i, o, u, €,.. etc are not even readed from the file i try to read from... so, a line like this: I want to be a great programmer is transformed to this: I want t be great programmer Does anybody know why this happens and also if there is some other way to read and write from simple text files that dont reperesent this problem Thanks I put this before the class starts: Imports System.Text Then i did this: srInput = New StreamReader( "C:\test.txt" , System.Text.Encoding.UTF8) I still get the same problem, the special chars are not processed properly ...Show All

  • .NET Development Need suggestions as to the best approach for populating a Dataset based on an XSD...

    Here's my requirement. I have a LARGE XSD that defines the data to be passed to an integration partner. I'm trying to get all the applicable data from the database in the format the XSD outlines taking into account any abilities .Net and SQL Server 2005 have to offer. So far I've taken this approch. I have created a typed dataset based on the XSD via the xsd.exe tool. The dataset created is large with numerous tables such as customer, vehicle, vendor, provider, financing, and on and on. Now that I have the dataset I need to be able to populate it by pulling info from various tables in the database. One possible way to do this is to use custom table and column mappings. This will result in a lot of coding though as there are at least a f ...Show All

  • Smart Device Development Device Emulation Manager does not see Emulator for Windows CE

    I am running Visual Studio 2005 (version 8.0.50727.42) and have installed the Emulator for Windows CE (version 5.3.0.26). Both run fine, but the Device Emulation Manager in VS does not list the emulator so I cannot run any programs on the emulator. I have also installed the Standard SDK for Windows CE 5.0. Any ideas why the manager does not recognize the emulator It seems like I must be missing a step that links the device to the tools. Sorry, but the Device Emulator Manager manages only Device Emulator configurations. The DeviceEmulator is the new ARM-based emulator in Visual Studio 2005, and is very different than the x86-based emulator you're used to from Platform Builder 5.0 and eVC. VS 2005 does n ...Show All

  • Visual C# No Overload error help

    I'm creating a TreeView at runtime. This tree loads, the app populates it from a database and the child nodes are updated correctly. However, I'm currently getting this error after adding a line of code that would handle any node selection: Error 1 No overload for 'OnTreeView_AfterSelect' matches delegate 'System.EventHandler' I've created an instance of the TreeView at the class level and added code to create it and add it to the form at run time. The error occurs when the build gets to the highlighted line in the code below. I have read thru the MS online help concerning this and I'm very confused because according to all of the samples I've come across, I'm doing everything right. I know there must be something I've missed. ...Show All

  • Smart Device Development Frames of the Camera...

    Hello Everyone... well i think first i must explain what i actually want ... the thing is when we start the native camera on any device ... it display a screen to us .. but when we press capture button.. it waits for a while .. resizes the picture to make it of any specific size (say 1.3 MP or 2 MP) .. and then display the preview .. now i want to get the frames that the camera was actually showing to us .. not the frames that it display after resizing the image .. I hope everyone understand what i actually want to say .. i already tried CeCamera application (i.e. in the sdk sample).. but in that application SHCameraCapture function is used .. this function just enable the camera .. we cant get any frame until we capture any photo o ...Show All

  • Visual Studio Adding more data to Disassembly Window

    How do i add data to the Disassembly window Our team develops a microprocessor simulator. We translate guest x86 code to host code and run from the translated copy (pretty much like jvm). Our tool is very similar to VMware. On occasions we need to debug our translated code and to do that we break into the Disassembly window to study it. It will be useful if we can display corresponding guest code and some additional comments in the disassembly window. Please see below for an example of what i am looking to develop. The code on the left is translated code which is currently displayed in the disassembly window. The comments in the middle and guest code on the right is what i am looking to add to the disassembly window. We have both ...Show All

  • Windows Search Technologies WDS 2.6.6 doesn't find everything

    I have been playing with WDS 2.6.6 for a few days now but have noticed that when searching something specific some documents cannot be found. When I generalize the search query it does find the right documents together with documents I'm not looking for. Is there a problem with indexing with this built I also noticed that when searching .msg files you can't search by subject. Have you try using double quotes to enclose Microsoft.com when searching the dot you mentioned would be considered as a file extension when you did the search. As for .msg files, have you installed the add-in to search .msg files http://gallery.live.com/liveItemDetail.aspx li=71ffbf5d-9595-457f-9463-db5dd0fd781e&l=3 . ...Show All

©2008 Software Development Network