Search

You searched for the word(s): userid:685825

Matching Posts

  • Dataset ReadXmlSchema Errors

    How is it possible for this to be true XmlDocument d = BuildReportXML(schema); DataSet ds = new DataSet(); ds.ReadXmlSchema(schema); ds.ReadXml( new XmlNodeReader(d)); schema is the schema location that I apply to the xmldocument before I start setting data, assuring that all the columns are of the correct type. Then I set the schema to the dataset, and read the document into it. When I do this it throws an "Input string was not in a correct format." I have a few decimal variables in the
    Posted to XML and XmlDataSource Control (Forum) by Dested on 10/12/2008
    Filed under: c# datatable datasource readxml readxmlschema xmldocument
  • DataSourceConnections SetConnection for xml files

    How can I use SetConnection with an xml/xsd database? Ive tried ReportDocument rpt = new ReportDocument(); Load("Report.rpt"); rpt.DataSourceConnections[0].SetConnection("C:\\2\\abba4.xml C:\\2\\abba4.xsd", "", "", ""); rpt.Refresh(); But it doesnt point to it correctly, it asks me for a username password when I run the viewer. The Report.rpt already points to a datasource, but the location of it isnt the same in every enviorment, so I need to reset
    Posted to Crystal Reports (Forum) by Dested on 10/7/2008
    Filed under: setconnection, C#, Crystal, Crystal Reports, datasourceconnections, xml, reports, xsd
  • Re: A more sophisticated search query

    What you are looking for is %. Your sql query will go from select * from Users where FirstName='joh' to select * from Users where FirstName like 'joh%'.
    Posted to Getting Started (Forum) by Dested on 5/23/2008
  • Re: modify text style used for watermarking

    I recommend you take your Graphics variable and look at all the public methods. There is one for everything you want to do, things like rotatetransformation which will rotate the entire thing, also drawline. If you need more help refer http://www.codeproject.com/KB/GDI-plus/watermark.aspx
    Posted to System.Drawing/GDI+ (Forum) by Dested on 5/10/2008
  • Re: sql search query

    If you are just looking for the sql to return those rows it would look something like select Location from TableName where Location like VARIABLE+'%'
    Posted to MySQL (Forum) by Dested on 5/10/2008
  • Re: Regex for email

    Is there a reason you want such a limited regular expression for this? There is a very elaborate "standard" for email that will validate any feasible email address. You can find all that here http://regexlib.com/DisplayPatterns.aspx
    Posted to Web Forms (Forum) by Dested on 5/9/2008
  • Re: global.asax - breakpoint not working

    I have never heard of anything like this happening, but usually when I cant hit a breakpoint (it is usually hollowed out...) if you delete everything inside your obj/debug and obj/release folders it will normally work. Sorry I cant be more help.
    Posted to Web Forms (Forum) by Dested on 5/4/2008
  • Re: Iframe web service call

    I think that this will only work if I load the script in the beginning. I need to be able to make calls on the page asynchronously using this javascript api. I would still need to use a iframe to call the ashx page, although that would get me around my current problem of trying to post an iframe. I think I may try this. As far as a real solution to this problem, anyone else interested in writing a javascript api to access the .net webservices via iframe as to allow cross-domain access?
  • Re: Iframe web service call

    Its an api to make a series of calls, each returning an xml (or json) string to be interpreted. I currently have it all working as web service calls. What do you think is the best way to implement this?
  • Re: Iframe web service call

    I am writing an API that I need to be accessible outside of my domain, can you think of another way? Isnt this why google maps uses iframes?
Page 1 of 17 (167 items) 1 2 3 4 5 Next > ... Last »