Jump to content
Xtreme .Net Talk

Menge

Avatar/Signature
  • Posts

    108
  • Joined

  • Last visited

About Menge

  • Birthday 04/17/1984

Personal Information

  • Occupation
    Student
  • .NET Preferred Language
    C#

Menge's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. i looked into it, and it does support that. i was able to connect to the server as root (in the default configuration) and create databases/users. though i think it's inadequate. more of a hack. later on today i'll try to wrap the libmysqld.dll C library in C# so that i can have a serverless daemon running on my pc
  2. i dont like the paradigm of it that much. was looking for something more robust. i found out that MySQL has an embedded library for C/C++ available. i'm going to later on see how far i can get into wrapping it to C# since i couldn't find any decent libraries that wrapped that.
  3. looked into DDL, MySQL doesn't seem to support that (haven't found any specific documentation on it). i looked into the MSDE download... it's a 40MB download. i think it's a pretty hefty download there. and still would require some work on the user side (installing it and setting up part of it), no? know any other system that i could integrate? (cause those aren't really integrated, they're real life DB servers)
  4. thanks, i'm gonna research into what you said. when i said "database" i meant something like a library that would be a database engine and that could be integrated into the project so the user won't need to set up a server for it. and that the piece of software could access/configure/manage on its own.
  5. i've been developing an application that relies on a database to store data (just like any other catalog program). i wanted it to be of easy set up. but right now in dev i'm using MySQL to store stuff. my problem is that mysql seems to require you to manually open the console and create the database and user for the program to use. is there a way to circumvent this? allow the program to automagically create its own user/database without the need for the user to have to even open an MySQL admin window? if not, is there any good zero config database that could be tightly integrated to a C# project? because i wanted it to be basically able to be set up 100% by the program (remove the burden from the user i dont care if its kinda complicated to set up from code. but i dont want the user to have to do it). thanks in advance :D
  6. install IIS and open a website on localhost (theoretically, IIS already comes with one)
  7. since Doom3 has gone gold yesterday, we'll be able to review it in some weeks (Aug 3rd US/Aug 13th UK). about HL2.... i dont know how long.... but i guess i'll be busy playing Doom3 till them :P
  8. http://www.microsoft.com/downloads/details.aspx?FamilyID=d7158dee-a83f-4e21-b05a-009d06457787&DisplayLang=en there ya go. quick search at http://www.microsoft.com/downloads
  9. take a look at System.Runtime.InteropServices.Marshall.Copy() and see how that suits you :)
  10. i think PNGs are the best way to go.
  11. There's always [C#] public Bitmap( Image original ); btw... didn't know .Net could load TGAs
  12. Yes. sys admins of the clients would have to set up their machines individually to trust your assembly (or domain). about the network size, the apps will only get downloaded if: 1) the file the client has is outdated. (there's a new version out) 2) the client does not have the file. and the the client only accesses the server when first loading the assembly. once the file is downloaded, it's kept in cache. so theoretically, your client could even run the app if your server is offline or the client is offline if you want to know more about this, Google for "Smart Clients". there's plenty of information out there.
  13. Menge

    thumbnails

    you need to save them to disk in order to upload them to the client :\ either that or you could make a multipart/HTML file. but that'd be very complicated i guess.
  14. the way to run them on a local network is that you need to set up all the client machines by making them trust your assembly (or eventually trust all assemblies coming from your domain controller) and make the domain controller serve them via http. (that's the easiest way to do that that i can think of right now). Administrative tools > Microsoft .NET Framework 1.1 Configuration > My Computer > Runtime Security Policy > Enterprise > Code Groups > [create a new code group for your assemblies] right click All_Code > New... then you'll configure your rule for such assemblies. Name is the identification for your code group. Description is up to you too. on the next page you'll see the condition of belonging to this group. you may want to choose any condition you want as long as it provides the security level you want (i'd choose site since it will trust everything coming from your domain controller address). then enter the address from which your domain controller is serving the EXEs. after that you'll choose the trust level. if you want the code to be able to do anything, just choose FullTrust. that's it :)
  15. try the public static bool System.IO.File.Exists(string path) method.
×
×
  • Create New...