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

djkno3

@djkno3
About
Posts
76
Topics
18
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Autocomplete/intellisence in a multiline edit box
    D djkno3

    gah, I feel so dumb ;)I never even thought of that ;)

    C# tutorial csharp linux beta-testing question

  • Autocomplete/intellisence in a multiline edit box
    D djkno3

    Does anyone know how to do this? I'm trying to make a source code editing program and I would like intellisence/autocomplete intregrated into it. I have looked at the shell extensions example here and it will only work with the first word you type. The .net 2.0 Express beta only had auto complete for single lines (and only the first letter as well). I just had an idea to put the currently typed(ing) word into a buffer and use autocomplete on that. Can anyone think of a better way?

    C# tutorial csharp linux beta-testing question

  • AutoComplete in .net 2.0
    D djkno3

    Well I figured it out after a while, auto complete only works with single line edit boxes

    C# csharp dotnet beta-testing regex help

  • Export ms sql server 2005 to .sql
    D djkno3

    I have that but the problem is it's not in it yet... or if it is I haven't found it...

    Database database sql-server sharepoint sysadmin help

  • Export ms sql server 2005 to .sql
    D djkno3

    it has all the *funtionality* but not the tools ;) (oh and 1 gig ram usage is the other limitation)

    Database database sql-server sharepoint sysadmin help

  • Execute SQL file in Enterprise Manager?
    D djkno3

    I open up query analyzer and click the drop down up top to choose my db and then copy and paste the sql file into it and click the run button...

    Database database sql-server sysadmin question

  • Export ms sql server 2005 to .sql
    D djkno3

    that's the problem ;) the express version of 2005 doesn't have enterprise manager, it has a community built one that doesn't have much funtionality right now. The higher versions of 2005 are suppose to have this but not express (express is the msde of 2005)

    Database database sql-server sharepoint sysadmin help

  • Export ms sql server 2005 to .sql
    D djkno3

    Does anyone know how to transfer an entire database out of mssql server 2005 (express) into a .sql file so I can recreate it? I have looked though the TSQL commands on msdn and tried bcp (unless I'm missing somthing that will only do tables and I need the stored procedures as well) The reason for this is I want to export the data and put it into a ms sql 2000 database but dts won't work because the database is so different (neither will the sp_attach_db stored procedure (gives an error about indexes)

    Database database sql-server sharepoint sysadmin help

  • AutoComplete in .net 2.0
    D djkno3

    I am trying to use the new AutoComplete in the the .net framework 2.0 beta and I can't seem to get it to work, I have read the help files on it (man this beta documentation is almost just an ndoc output ;)) but I couldn't find any reason why it wouldn't work. I set a customCollection of words to match and set the auto complete collection to custom and set the auto complete mode to suggest and append but when I type in the text box nothing pops up. Anyone got any ideas?

    C# csharp dotnet beta-testing regex help

  • Problem in Uploading Project
    D djkno3

    not really ;) Is the dir that you uploaded your project into declared as a virtual app dir in IIS? this may also be a problem. If not get your webhost to make the dir with your asp.net app in it a virtual app dir and see if that helps.

    ASP.NET help csharp asp-net sysadmin tutorial

  • problems with free mail services reading my emails
    D djkno3

    I have a mail sending script setup to send e-mail (using the Net.Web.Mail class) with extra stuff for authentication message.Fields["http://schemas.microsoft.com/cdo/configuration/smtpauthenticate"] = 1; message.Fields["http://schemas.microsoft.com/cdo/configuration/sendusername"] = "user@domain.com"; message.Fields["http://schemas.microsoft.com/cdo/configuration/sendpassword"] = "***" it sends mail fine and Outlook can read the special characters but the problem comes with the free email sites reading the email I get funny characters in the mail. I have tried sending html mail and using the charset"" string and making an encoding-type-transfer "quoted-printable" but neither seem to work. Is there some special way that the free email accounts read the email? Some setting I have to set?

    ASP.NET workspace html com security tools

  • Penny Arcade
    D djkno3

    there is also http://www.ctrlaltdel-online.com/[^] and http://www.vgcats.com/[^] and for a bit older crowd (no nudity just mature subject matter) http://www.leasticoulddo.com/[^]

    The Lounge com question

  • looking for information on making "control panel"
    D djkno3

    I would like to try to make a sort of "control panel" for web hosting and am looking for information on it. In particular how I would go about making virtual app dirs and dns entries and stuff like that. The reason is because I'm cheap and I have the time so I thought I would try to make my own ;)

    ASP.NET hosting

  • how can I clear out null characters in a string var?
    D djkno3

    dammit I knew it was somthing simple like that ;) thanks

    C# question

  • how can I clear out null characters in a string var?
    D djkno3

    I read in a chunk of a file in bytes, converted it to ascii, made it a string and now I am trying to clear out the '\0' characters. Any advice?

    C# question

  • Google is Crazy
    D djkno3

    hell google.com for me (who is in Germany) but using the english search engine (not google.de) still shows it's valentines day... hmm did someone have too good of a night last night and not get to change it yet? Gotta get his secret and use it next year ;)

    The Lounge

  • backing up/moving mssql databases
    D djkno3

    ok I thought that's what it was but I got sidetracked on another project and never had time for it untill today (what good timing huh ;)) I am trying to do the backup command you showed me and I am delaring them like this SqlCommand cmd1 = new SqlCommand("EXEC sp_addumpdevice 'disk','localBackup','C:\\temp\\database.dat'",sqlConnection1); SqlCommand cmd2 = new SqlCommand("BACKUP DATABASE databaseName TO localBackup",sqlConnection1); I am calling them from within this try block try { cmd1.ExecuteNonQuery(); cmd2.ExecuteNonQuery(); //sqlBackup.Commit(); tbError.Text = "Finished"; } and running them as non queries (I tried them as transactions but it gave me this error "The procedure 'sp_addumpdevice' cannot be executed within a transaction") so I took them out and make them queries and now I get a problem with the Execute command saying I need a transaction property. "Execute requires the command to have a transaction object when the connection assigned to the command is in a pending local transaction. The Transaction property of the command has not been initialized." Now I am really confused :(

    Database database sql-server sysadmin help question

  • using CDOSYS
    D djkno3

    I am trying to use the smtp server of my webhost which I have to log on to to send email. I have to use CDOSYS to do it with. I was wondering if there is any ".net" way to do this.

    ASP.NET csharp sysadmin

  • backing up/moving mssql databases
    D djkno3

    I keep getting an error about an "Unrecognized escape sequence" this is the line SqlCommand cmd1 = new SqlCommand("EXEC sp_addumpdevice 'disk','databasedump','C:\temp\database.dat") What am I doing wrong?

    Database database sql-server sysadmin help question

  • backing up/moving mssql databases
    D djkno3

    thanks :) so I run this as a nonquery?

    Database database sql-server sysadmin help 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