Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
Y

Yosh_

@Yosh_
About
Posts
82
Topics
39
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Validation for a Currency textbox
    Y Yosh_

    Try it this way:

        \*
    

    He who goes for revenge must first dig two graves.

    ASP.NET sysadmin help tutorial question

  • Dataset to defined XML schema
    Y Yosh_

    Thanx a lot. I think LINQ will help us achieve it.

    He who goes for revenge must first dig two graves.

    C# database xml help tutorial question

  • Dataset to defined XML schema
    Y Yosh_

    Cumbersome. We've got little time for pilot mode so i guess i'll try it. Thanx a lot.

    He who goes for revenge must first dig two graves.

    C# database xml help tutorial question

  • Dataset to defined XML schema
    Y Yosh_

    Rob Philpott wrote:

    but then apart from that you might want to look at the XSD tool which could generate business objects from the schema which you'll have to populate manually through code.

    I'm sorry i don't know about this.

    He who goes for revenge must first dig two graves.

    C# database xml help tutorial question

  • Dataset to defined XML schema
    Y Yosh_

    Ouch. Harder than i thought.

    Pete O'Hanlon wrote:

    Your choices are either to serialize your different objects out to a temporary location and then use Xslt to convert them

    i'm sorry, how do i do this? U mean i should write the data into an xml file, then manually use the xsl tool to conform it?

    He who goes for revenge must first dig two graves.

    C# database xml help tutorial question

  • Dataset to defined XML schema
    Y Yosh_

    Rob, Yes, i'm using SQL Server. The problem is that i'm supposed to pull several data from various tables, and the schema has been defined by my clients in one cumbersome XML schema file. The data includes names, addresses, sales agents (which could be multiple), contacts (phones and emails, which could also be multiple), and so on. So i'm supposed to bring all data relating to one person into an XML file. That's my problem.

    He who goes for revenge must first dig two graves.

    C# database xml help tutorial question

  • Dataset to defined XML schema
    Y Yosh_

    No problem, Pete, just a misconception.

    He who goes for revenge must first dig two graves.

    C# database xml help tutorial question

  • Dataset to defined XML schema
    Y Yosh_

    Pete, i went over to Q&A, and that wasn't me. Besides, the questions are quite different. He's trying to export to an XML file, while i'm trying to export data to a Typed XML Schema file. I can do the former, but have problems with the latter. I've seen the responses to that, and they aren't helpful to mine. I humbly ask, pls is there any1 with a solution to my problem?

    He who goes for revenge must first dig two graves.

    C# database xml help tutorial question

  • Dataset to defined XML schema
    Y Yosh_

    But i have posted this nowhere else. Of course i know how the site works!

    He who goes for revenge must first dig two graves.

    C# database xml help tutorial question

  • Dataset to defined XML schema
    Y Yosh_

    I've had no answers. I wouldn't be posting here if I had an answer to this. Pls can u help me out?

    He who goes for revenge must first dig two graves.

    C# database xml help tutorial question

  • Dataset to defined XML schema
    Y Yosh_

    Hi guys, i have a project in which I'm supposed to retrieve data from the database and put d data into an XML file (with a defined schema), and send that file encrypted and all. My problem, however, is getting the data into XML. Please anyone knows how to achieve this?

    He who goes for revenge must first dig two graves.

    C# database xml help tutorial question

  • Multy threading question
    Y Yosh_

    Pasan,

    Pasan148 wrote:

    I want to increase progress bar value within separate thread. When i run this code it wasn't run as i suppose and it threw Invalid operation exception. It's message is "Cross-thread operation not valid: Control 'ProgressBar1' accessed from a thread other than the thread it was created on."

    You can achieve this very easily using the background worker class (http://msdn.microsoft.com/en-us/library/system.componentmodel.backgroundworker.aspx[^]). Just enable progress change and supports cancellation on the background worker object. Then, in the Do_Work sub, report progress, and you can easily update your progressbar in the progresschanged event. Hope this helps.

    He who goes for revenge must first dig two graves.

    Visual Basic question

  • List of SQL error codes
    Y Yosh_

    Hi guys, does anyone know where i can get a list of mssql error codes. i need to enumerate the errors and treat anyone specifically. For ex: if it generates a unique key violation or foreign key violation, i could work on that. Thanx.

    He who goes for revenge must first dig two graves.

    C# database sql-server help

  • Problem with FormClosing event
    Y Yosh_

    Hi Guys, Every time I try to verify if the user wants to exit the app, the question box comes out twice. I do it like this: Private Sub Register_FormClosing(ByVal sender As System.Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles MyBase.FormClosing Dim exitChoice As Windows.Forms.DialogResult exitChoice = MessageBox.Show("Are you sure you want to exit?", "Exiting?", MessageBoxButtons.YesNo, MessageBoxIcon.Information, MessageBoxDefaultButton.Button2) If exitChoice = Windows.Forms.DialogResult.Yes Then Application.Exit() Else e.Cancel = True End If End Sub It comes out twice even if yes is clicked the first time. How do i make it come out only once?

    He who goes for revenge must first dig two graves.

    Visual Basic question help

  • SQLEXPRESS silent installation.
    Y Yosh_

    Thanx. Was quite helpful.

    He who goes for revenge must first dig two graves.

    Database csharp database sql-server question

  • SQLEXPRESS silent installation.
    Y Yosh_

    Hi Guys, I've just finished a .NET application that uses MSSQL EXPRESS as its local temp DB. I just wanna ask, for convenience sake, is there a way i can put SQLEXPRESS into the installation such that it installs "silently", with the other app? I mean, without the user having to run the .exe by himself.

    He who goes for revenge must first dig two graves.

    Database csharp database sql-server question

  • Bundle SQLEXPRESS with application
    Y Yosh_

    Hi Guys, I've just finished an application that uses MSSQL EXPRESS as its local temp DB. I just wanna ask, for convenience sake, is there a way i can put SQLEXPRESS into the installation such that it installs "silently", with the other app. I mean, without the user having to run the .exe by himself.

    He who goes for revenge must first dig two graves.

    C# database sql-server

  • Create constraints for lastname, firstname and middlename
    Y Yosh_

    Hi guys, i'm kinda new in using MSSQL. I'm using MSSQL Server 2005. I've created the primary key on a field that auto generates. However, i need to disallow the same name inputed again. I think i might have to write a t-sql statement on the table. But i really don't know how to go about it. Pls help. How can i achieve this?

    He who goes for revenge must first dig two graves.

    Database question database sql-server sysadmin help

  • How to Send SMS with Sender Name ?
    Y Yosh_

    U say u are using AT commands and C# to send a message. Actually, this is what i want to achieve. Pls can i see an example, or a source code, showing how to achieve this? Pls. quite urgent.

    He who goes for revenge must first dig two graves.

    C# csharp tutorial question

  • Capture images via webcam
    Y Yosh_

    Thanks. But this article of yours, how can i see it? Besides can i get a good tutorial on this?

    He who goes for revenge must first dig two graves.

    WPF database question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups