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
D

deanoA

@deanoA
About
Posts
40
Topics
31
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Creating an XML File
    D deanoA

    Hi! How do you create an xml file using a C# windows forms? And also, please tell me to how to read and write on it. Thanks a lot! ps Is it possible to query an xml file using C# code? if yes, can you tell me how? "To teach is to learn twice"

    C# csharp database winforms xml tutorial

  • Renaming a File
    D deanoA

    Greetings! How do I rename a file using C#? Does Anybody know how? Please help. And also, how do I delete files or move them from folder to folder? Please help. "To teach is to learn twice"

    C# question csharp help

  • Template Columns in a DataGrid
    D deanoA

    Hi! I have a datagrid with two template columns. And I have 2 Arraylists. Can anybody please show me how to bind my 2 arraylists to their corresponding column? Please help me. :( NAME | ADDRESS A | AA B | BB C | CC D | DD Above is what I want it to look like. I A,B,C,D comes from the first arraylist and AA,BB,CC,DD comes from the second arraylist. Column NAME and column ADDRESS are template columns. Please help me. :( "To teach is to learn twice"

    ASP.NET help tutorial question

  • Unit test in ASP.NET
    D deanoA

    Hello! I am currently using NUnitAsp to test my asp.net webpages. Is there anybody here who is familiar with that? Anyway, Im trying to use it to unit test my app. But my problem is that its test page returns Server Error. My web app has a login page and its multilingual, supporting Japanese and English. But I don't know where the problem really is. My web page runs fine but I can't test it using NUnitASP. Can anybody help me? "To teach is to learn twice"

    ASP.NET help csharp asp-net sysadmin testing

  • Interfaces
    D deanoA

    I have already read that site. It doesn't answer my question. Actually the problem here is that, the classes are THIRD PARTY CLASSES. It already has existing methods that I need to use. Thanks anyway. :) "To teach is to learn twice"

    C# oop help

  • Interfaces
    D deanoA

    Hi! Please help me with this. I want to make a program that inherits from two third party classes. (Let's just call it ClassA and ClassB) I know I cannot do multiple inheritance so I need to use interface. But I don't know how. Please help. "To teach is to learn twice"

    C# oop help

  • Hostname
    D deanoA

    How do I get the hostname of the server from where the ASP.net application is running? Is that possible? "To teach is to learn twice"

    ASP.NET question csharp asp-net sysadmin

  • Control Key Combo
    D deanoA

    Hi! Im creating a game using C#. Now I need help on how to read combo keys. Like if the user presses ctrl-x, It would then exit the game. Please help. "To teach is to learn twice"

    C# csharp game-dev help tutorial

  • SQL Case Sensitivity
    D deanoA

    Hi! I am using sql server 2000. How do I make my DB case sensitive without reinstalling sql server 2k? Please help me on this. "To teach is to learn twice"

    Database database question sql-server sysadmin help

  • Keyboard in C#
    D deanoA

    Hi. I want to create a simple notepad. I used a multiline textbox. I wanted to create a shortcut for selecting all text in the textbox like pressing ctrl-A would select all text. Anybody knows how to do this? Please help me. "To teach is to learn twice"

    C# csharp help tutorial question

  • XML transfer
    D deanoA

    Hi. I am transferring an XML file to another PC's shared folder. I tried to use a File.Copy method but the XML file that has been transferred to the other pc becomes garbage. Is there another way of transferring the file that it won't become garbage? I used the ff code: File.Copy("\\\Data\\" + FileName, true); Where Data is a shared folder. The file got there alright but the content is just garbage. Please help. "To teach is to learn twice"

    C# xml help question

  • Delegates
    D deanoA

    Can anybody show me the shortest example on using a delegate? Im just trying to gather ideas on how to program in "keep it short and simple way" :) "To teach is to learn twice"

    C# tutorial question

  • Ref in C#
    D deanoA

    When would be the best time in your own opinion to use the ref in C#? :) "To teach is to learn twice"

    C# csharp question

  • GetHashCode()
    D deanoA

    Hi. I want to implement a program that sends 1 as a numerical value if a checkbox is checked and zero otherwise. So I read MSDN. I read from MSDN that: "The Boolean class implements true as the integer, one, and false as the integer, zero. However, a particular programming language might represent true and false with other values. " I did this in C#: Checkbox1.checked.GetHashCode(); I get the 1 and 0. But is this safe? I'm worried about the part where it says "However, a particular programming language might represent true and false with other values. " I'm afraid this might cause any side effect. Any ideas what Hashcode is? "To teach is to learn twice"

    C# csharp question

  • DataSet, DataRows etc.
    D deanoA

    Hi! I'm trying to print the values in my DataSet. It has a single row in it. I used this CommandText: "Select NAME from Authors" Now the query returns all the names. Now, I want to print the values in the dataset and I want to use foreach because I do not know how many names I might get. But the problem is, what do I use to traverse my set? I used this ff code but it generates an error: DataRow dr = dsDBData.Tables[0].Rows[0]; foreach (DataColumn dc in dr) { MessageBox.Show(dc.ToString()); } Please help. "To teach is to learn twice"

    C# help database question

  • Running webpage
    D deanoA

    How do I make my windows forms run a html page? Thanks! :) "To teach is to learn twice"

    C# question html winforms

  • Accessing Over A NETWORK
    D deanoA

    How do I transfer files across a network? Does anybody know how? Please help! :) "To teach is to learn twice"

    C# question sysadmin help

  • How would I implement this?
    D deanoA

    I have 20 textboxes. Lets say, they are txtbox1 to txtbox20 Now, I would like to check them one by one if their text is null. If txtbox1.Text is null, i would stop checking the other textboxes right away. I can easily perform this using an if-else but, its not gonna be that readable. So I want to use a switch statement. The problem is, how? Please help. :( "To teach is to learn twice"

    C# help question

  • Events
    D deanoA

    Hey, I am creating an alarm clock in c#. I want to create a event that calls a method to , lets say tell the user what time it is. I tried to read all tutorials on events and delegates. Still, I have no idea how to implement things. can anybody show me a very simple example? "To teach is to learn twice"

    C# tutorial csharp question

  • Print
    D deanoA

    If I have the code in my stored proc: print 'Hello' Is the string hello retrieved? in my case, does my asp.net code acquire the value 'Hello' when it calls the procedure? 'Hello World'

    Database csharp asp-net 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