Jump to content
Xtreme .Net Talk

NK2000

Avatar/Signature
  • Posts

    166
  • Joined

  • Last visited

Everything posted by NK2000

  1. ok no problem, but really a big thanks for your time :)
  2. the MSDN is the april 2003 version for vs2003
  3. i did that 3-4 times it seems that this msdn is a bit buggy, perhaps another release would work, i dont know, i try to get another one if possible, but i think at the moment i will use the internet msdn :( but i thank everybody who can give any hints here!
  4. uhm thanks, but they only got installing problems or problems to burn in to cd, my problem is that msdn doesnt register the indexes "No table of contents has been defined for the current Help collection"
  5. I finally got VS2003, but unlike VS2002 MSDN i always got "Empty Index Entry" usage, does anybody know a fix or anything which could be helpful here? the MSDN is the april 2003 version
  6. oh you mean diskspace i talk about memory.. in memory everything is bmp so ... :) uhm your custom picturebox would have to only read the current needed data and not alle data of the picture..i think, maybe with some caching for a smooth scrolling
  7. that is just kind of fun, i dont know if you know what localhost means but it points to your pc like the url 127.0.0.1!
  8. for fullscreen i would use DX definitely! if you want to use SEVI's method then you have to set the WindowBorderStyle to no border You can easily get all the gfx card settings by using of DX, just look at some samples, shouldnt be difficult to understand
  9. i think for such files you have to create your own "picturebox", 8000*4000 is about 92mb if it is 24bit
  10. as far as i know you can change how the app paints everything on screen, but i dont have the variables in mind at the moment, i just can tell you if you want to have fast graphics there is no way around dx, but normally you should also get it to work with gdi+ just use doublebuffering, so create a bitmap with same size as your drawing surface and then just draw all in that hidden bitmap at the onpaint you just draw this one bitmap
  11. i dont know what ReadOnly has to do with the method we showed you ReadOnly tells the application that this Textbox wont write the letters, which were typed by user
  12. yes you have to use the dllimport attribute to get the sendmessage this might help: http://msdn.microsoft.com/netframework/default.aspx?pull=/library/en-us/dndotnet/html/win32map.asp
  13. i searched for some tutorials: http://www.google.be/search?sourceid=navclient&hl=de&ie=UTF-8&oe=UTF-8&q=%22c%23%22+%2Btutorial i think it is the best to give you just the link you can then pick the best site out http://directory.google.com/Top/Computers/Programming/Languages/C/Tutorials/?tc=1
  14. i think you have to use document.location.href = "yourfile.htm";
  15. oh i was irritated by " I'm trying to capture the tab key in my ASP.NET app" <script type="text/javascript"> <!-- window.captureEvents(Event.KEYPRESS); window.onkeypress = Input; function Input(event) { alert("You pressed: " + event.which ); } //--> </script> maybe this helps to get the name for tab only
  16. string text = " .... "; for (int i=0; i < text.Length; i++) { if (text.Chars[i] == '~') text = text.Substring(0, i) + values[i] + text.Substring(i+1); } i didnt test it, but tell me if any error occurs
  17. you can do that with javascript, you definitely need a clientside language, so use javascript to update frames, i frames and so on can help you very much need html help? just ask or try to find it via google..
  18. as far as i know is javascript clientside language und asp (active SERVER page) a server sided page.. so you still have to use javascript, java applet, flash, which are all clientsided
  19. first look at the String class, it would be really helpful if you give me/us an example so we can tell you an algorythm, if you dont want to use replace then you have to work with substring i think
  20. i never tried mySQL in connection with .net but with php normally you have to use strings to insert.. string SqlQuery = String.Format("INSERT INTO TestTable(`{0}`,`{1}`,`{2}`) VALUES ('{3}','{4}','{5}',) ", Key1, Key2, Key3, Value1, Value2, Value3);
  21. maybe you show us your existing phone class then we could add it
  22. where is the problem just insert the .exe in the same folder as your vb.net tool
  23. maybe you have to tell the constructor the format of the image? did you test that?
×
×
  • Create New...