Search:

Type: Posts; User: Radjesh Klauke

Page 1 of 13 1 2 3 4

Search: Search took 0.46 seconds.

  1. Replies
    2
    Views
    1,833

    VS 2010 Re: send email with vs 2010

    http://stackoverflow.com/questions/18153542/how-do-i-send-a-gmail-email-in-vb-net
  2. VS 2012 Re: Get linenumber and position from standard XML validation

    heya kevin. Thanks for the info. The issue here is that i only want to return (when we take your example) "line 5, position 4". The rest is not really interesting for me.
  3. Re: Mozilla Firefox / Gecko Xulrunner in VB.NET (versions 14 and up)

    @Zeev. Sorry, can't explain that. Try a newer version from Bitbucket: https://bitbucket.org/repo/all?name=geckofx
  4. VS 2012 Get linenumber and position from standard XML validation

    Now, you would say that this is simple, but in this example the validator returns 2 linenumbers and positions. And guess what!? I need the first linenumber and position in the message. I can only get...
  5. Re: How do I add an "Enter" hotkey in the browser application?

    You can also use the Enter_event to set the default button and release it on the Leave(whatever)_event.
  6. Replies
    4
    Views
    858

    VS 2013 Re: Calculating Total Duration for DB

    Not 100% sure, but something like: SELECT SUM(....) FROM... WHERE...
  7. Re: Connecting to Godaddy Server - "Direct Access" is enabled, Connection String Issu

    Your code doesn't make any sense to me. Try somthing like this:


    Dim conn as New MysqlConnection("Server=servername.com; Port=portnr; Database=databasename; Uid=databasename; Pwd=password; Allow...
  8. Re: Connecting to Godaddy Server - "Direct Access" is enabled, Connection String Issu

    As far as I know GoDaddy does not support connection to database from external application.
  9. Re: Trying to embed GoogleEarth in a VB app

    http://www.codeproject.com/Articles/101367/Code-to-Host-a-Third-Party-Application-in-our-Proc
  10. VS 2010 Re: How to publish your application with documents and created files and folders?

    You are missing the point completely. But sometimes people need to see an example. See attachment on this post below.

    109507
  11. VS 2010 Re: How to publish your application with documents and created files and folders?

    What jm is trying to tell you is that the file isn't a richtextbox-control, but a textfile. You want to read the textfile and put that information into the textbox.

    Something like:...
  12. VS 2010 Re: How to publish your application with documents and created files and folders?

    Seems you are using a hard-coded path. Try to use something like application.startuppath & "\folder\...."
  13. VS 2010 Re: Change listbox part of text color for all items only part of them in vb.net

    How about trying the treeview ;)
  14. VS 2012 Re: XML Validation - e.exception.lineposition/number

    Sorry m8, was not my intention to be rude. If I offended you, I sincerely apologize.
  15. VS 2012 Re: XML Validation - e.exception.lineposition/number

    Hahahaha. No problem. I added the errors in previous post. I'll check it later again. Really need a break, but I can't let it go. I know where close to a solution.
  16. VS 2012 Re: XML Validation - e.exception.lineposition/number

    Yeah, I'm looking at the workaround, but don't get it how to implement it. Already converted it to vb.net btw, but to many errors in the code.



    Private Shared Function GetSchemaErrors(stream As...
  17. VS 2012 Re: XML Validation - e.exception.lineposition/number

    Getting closer:...
  18. VS 2012 Re: XML Validation - e.exception.lineposition/number

    Thanks. I started a new search on the internet and found a solution probably....
  19. VS 2012 Re: XML Validation - e.exception.lineposition/number

    I've attached a zip with a small XML-file and the schema. Hope you can figure why it doesn't return any position.

    109021
  20. VS 2012 Re: XML Validation - e.exception.lineposition/number

    @FunkyDexter: You are 100% correct!
    You need anything from me to check it?
  21. VS 2012 Re: XML Validation - e.exception.lineposition/number

    Please stop talking about the standard XML validation! I beg you! The whole point of my question is about the xsd validation. Why are we still talking about the standard XML validation?
    (on the...
  22. VS 2012 Re: XML Validation - e.exception.lineposition/number

    Sorry, I thought it was clear with the images I uploaded. Okay, let me try again:

    In this image I typed "supetip", which is wrong, cause it should be "supertip":...
  23. VS 2012 Re: XML Validation - e.exception.lineposition/number

    Am I going crazy here? Or I'm talking/typing in a strange language to you guys or I simply don't get it.

    As you can see that the XML-exception itself does return the correct positions. It...
  24. VS 2012 Re: XML Validation - e.exception.lineposition/number

    Here's my code:


    Try
    Dim x As New XmlDocument
    x.LoadXml(myxml)
    validateschema = x.DocumentElement.NamespaceURI.ToString

    Select Case validateschema
    Case...
  25. Replies
    25
    Views
    3,545

    Re: Tapatalk

    I don't know what all the fuzz is about the adds. People who use Firefox with the adblock don't see any ads on this forum and millions use it. Even considered that?
  26. VS 2012 Re: XML Validation - e.exception.lineposition/number

    I think I'm not very clear in explaining my issue. Let's try again. :P

    The validation itself works. If there are no errors in the document nothing is thrown. If the document has any error it does...
  27. Replies
    5
    Views
    6,097

    VS 2008 Re: Running a complex query in VB

    Aaaaah... overlooked that part.
  28. VS 2012 Re: How do I convert list items to their lower case equivalent?

    Turn "Option Strict On".
  29. VS 2010 Re: Conversion from DBnull to Integer is not valid?

    Can you specify where the error occurs? to lazy to read all of the code. Please post only which part is important and where the error occurs.
  30. Replies
    5
    Views
    6,097

    VS 2008 Re: Running a complex query in VB

    Well, since you "DROP TABLE" on the end of the query it will never show any result. But have a look at this:...
  31. VS 2012 Re: XML Validation - e.exception.lineposition/number

    Heya,

    Thanks for the reply.

    Here's the (partial) code:


    Dim x As New XMLdocument
    x.Loadxml(myrichtextintextbox)
  32. VS 2012 XML Validation - e.exception.lineposition/number

    Hi,

    I'm validating an XML in my textbox against an xsd. This works fine, but it doesn't return the line-position(s) and number(s) where the error occurs.

    I simply use:

    Private Sub...
  33. VS 2012 Re: Validate XML-text from (Rich)Textbox against XSD

    Think I got it. Need to test it properly...
  34. VS 2012 Re: Validate XML-text from (Rich)Textbox against XSD

    I'm getting close to solve this, but I'm getting an error in the following code:


    dim ns as string = "http://schemas.microsoft.com/office/2009/07/customui"
    dim xsdschema as string =...
  35. VS 2012 [RESOLVED] Validate XML-text from (Rich)Textbox against XSD

    Hi there,

    I've been looking for a method to validate my xml(string) in a (rich)textbox against an .xsd. The best sample I've found is:...
  36. VS 2012 Re: My software does not open in other PC - the only way is compiling in window safe

    Without knowing which files your computer depends on, I can only ask: Are you using 3rd party controls (.dll)? If so, make sure you include them in your installer.
  37. VS 2012 Re: Write to existing XML (that has namespace)

    Wait.... I didn't look proper. Seems all the links look-a-like when coding and staring after more then 10 hours...
    Your solution works. +REP!
  38. VS 2012 Re: Write to existing XML (that has namespace)

    Wouldn't that add the URI? Let me try.

    EDIT: Yes, it adds the namespaceURI. I don't want that.

    Here's my full code



    Dim xdoc As New XmlDocument
    xdoc.Load(xmlpath)
  39. VS 2012 Re: Write to existing XML (that has namespace)

    Heya. Thanks for a solution. However, the node returns: <Relationship Id="test" xmlns="" />. It shouldn't add the "namespace".
  40. Re: puzzled by object reference not set error

    I really don't understand why you can't simply add the value of the listbox2 only. Really don't need to do anything with listbox1 to add a value. (I'm a bit puzzled). What are you trying to create?...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width