Search:

Type: Posts; User: BrandonTurner

Page 1 of 8 1 2 3 4

Search: Search took 0.19 seconds.

  1. Replies
    6
    Views
    801

    Re: Challenging Coding

    just look at how the IDE creates the controls using the designer, it is really rather simple.
  2. Replies
    4
    Views
    870

    Re: string/html parsing in c#

    I dont think converting html to xml is really a good idea... or even going to work for that matter. Why not use normal string functions like IndexOf and SubString?
  3. Replies
    10
    Views
    1,381

    Re: C# Shell Replacment

    In general the API i was looking for SystemParametersInfo(), and I found an exmaple of it being used here: http://www.csharphelp.com/archives3/archive578.html
  4. Replies
    9
    Views
    996

    Re: Determining if a log file is filled

    If you never write an empty log... then just check file size.
  5. Re: [2.0] Most efficient way to output 20 or so textboxes+labels

    Yeah, you need to do this with a loop, or else you will end up with a ton of copy and paste. I suggest and Array list of a a control that has both a textbox and a label.
  6. Re: Displaying my c# application on the upper Kiosk Screen

    there is two ways to do that that come to mind, one is probably the wrong way, more of a work around. and the other which i dont have code to help you is more correct.

    option #1:



    //
    //...
  7. Re: Creating an event handler for a keyboard character

    Youre welcome, dont forget to mark it as resolved. ;)
  8. Re: Creating an event handler for a keyboard character

    //
    // In the constructor
    //
    AddEvent(this)

    private void AddEvent(Control control)
    {
    control.KeyDown += new KeyEventHandler(control_KeyDown);
    foreach (Control co...
  9. Re: Can I get the original string from a HashCode?

    You could override GetHashCode() with your own hash function that you know how to do forward and backwards(there are very limited ways to do this). But then your hash table would have to save the...
  10. Replies
    3
    Views
    971

    Re: [2.0] DataGridView -- Select Items

    foreach (DataGridViewRow dgvr in ConcernTableView.SelectedRows)
    {
    //
    // You can do it by cell index number
    //
    ...
  11. Replies
    2
    Views
    748

    Re: [RESOLVED] [2.0] Max Length, eh?

    Might want to look into a masked textbox with a mask of "########" or something along those lines.
  12. Replies
    6
    Views
    977

    Re: Plz Send eBook link

    This page might help you:
    http://www.microsoft.com/mspress/findabook/list/title.asp

    you actually have to buy them though... no one can just email them to you. :rolleyes:
  13. Replies
    6
    Views
    1,008

    Re: length of source code line

    Sure it is. I mean it isnt something that everyone follows. But in general people follow it. My university enforces it pretty strictly. My work asks it of all the employees. And most open source...
  14. Replies
    4
    Views
    716

    Re: Best Obfuscator

    wow, thats really scary. I dont know how I feel about that.
  15. Replies
    6
    Views
    1,008

    Re: length of source code line

    you should really try to limit your lines of code to 80 chars. its just standard to do that.
  16. Replies
    10
    Views
    1,381

    Re: C# Shell Replacment

    yes, awkard, but i think they do it out of speed.


    They are different. For example, kill explorer and open notpad and maxmize it. it will not fill the whole screen, it leaves room for the old...
  17. Replies
    10
    Views
    1,381

    Re: C# Shell Replacment

    Lol, that would horrible to keep checking for that. There is a way using win32 api to tell win32k.sys what size your tool bar is so that it knows how big to make the windows when they are max. That...
  18. Replies
    10
    Views
    1,381

    Re: C# Shell Replacment

    I know... but I want an example of one that actually talks with win32k.sys. For example, when I make a taskbar in my program, I dont want apps to maximize over top of it(assuming mine is bigger then...
  19. Replies
    10
    Views
    1,381

    Re: C# Shell Replacment

    Sorry I wasnt more clear. An explorer replacement, not a cmd replacment. :)
  20. Replies
    10
    Views
    1,381

    [RESOLVED] C# Shell Replacment

    I have been searching high and low and cant find any examples of a basic C# shell replacement. Anyone seen one?
  21. Replies
    3
    Views
    1,030

    ShellExecute to a file

    i cant get this to work for anything, my final goal is to have this work:


    error = ShellExecute( NULL, "open", "C:\\windows\\system32\\cscript.exe", "eventquery.vbs /l system >> mylog.log",...
  22. Replies
    1
    Views
    450

    symantec ghost ntfs write support

    how come symantec was able to have their booting o/s that will ghost machines write to ntfs before linux did? i mean, linux still has problems doing it. did symantec and microsoft make some kinda...
  23. Replies
    0
    Views
    347

    Running vbscript on a server

    ok so i have www.example.com/showresults.html which will have vbscript in it. but i need it to read www.example.com/contest1.html and www.example.com/contest2.html then do come calcs and display the...
  24. Replies
    3
    Views
    409

    oh yeah... great idea. thanks.

    oh yeah... great idea. thanks.
  25. Replies
    3
    Views
    409

    wallpaper

    is there anyway to find the file that is the current windows wallpaper, or maybe save the wallpaper in some way. the best thing i can think of is disable icons and then take a printscreen, but that...
  26. Replies
    1
    Views
    453

    Shell Problem

    ok i have an command line exe that i can drag a txt file onto and then it outputs a mdofiied version of that txt. I write a txt file in my program and then i want to send it into my the other exe...
  27. Replies
    4
    Views
    651

    thanks for the help guys. Brians worked good.

    thanks for the help guys. Brians worked good.
  28. Replies
    4
    Views
    651

    ok... yeah that works good. i go into the...

    ok... yeah that works good. i go into the command prompt and type "ipconfig >> lol.txt". but how do i do this in vb and how do i know where it outputs it to in vb?

    edit: i think i got it...

    ...
  29. Replies
    4
    Views
    651

    Find IP without winsock

    is there anyway in vb to find the computers ip without using winsock? i search but everything i found is for winsock.
  30. Replies
    18
    Views
    881

    i did pascal in highschool and then i learned...

    i did pascal in highschool and then i learned delphi by myself. Mehhhh, it made it eaiser to go onto C++ kinda gave me a basing but that was about it. I like C++ better.
  31. Replies
    19
    Views
    970

    did you get one yet, i have one if you didnt.

    did you get one yet, i have one if you didnt.
  32. Replies
    53
    Views
    1,652

    one of the thing i thought about to logically...

    one of the thing i thought about to logically prove my point was the fact that there is such a thing as PHP injection exploits. If it was compiled putting code into the program would just mess up...
  33. Replies
    53
    Views
    1,652

    ahhh. why did he pay for the SA account, you...

    ahhh. why did he pay for the SA account, you like being a Goon?
  34. Replies
    53
    Views
    1,652

    yeah, i did that afterwards to prove it to him. ...

    yeah, i did that afterwards to prove it to him. As a side note... are you from genmay?



    allnighte
  35. Replies
    53
    Views
    1,652

    google really isnt giving me a straight answer. ...

    google really isnt giving me a straight answer. thanks for yours though.
  36. Replies
    53
    Views
    1,652

    Is php compiled?

    my friends says that php is compiled. I think it is just intercepted by the server and changed(rendered) into html and then your browser shows it to you. He thinks it compiles the source and the...
  37. whats in the doc files that you need to change...

    whats in the doc files that you need to change them to txt for?

    would this work:

    name "blah.doc" as "blah.txt"
  38. Replies
    1
    Views
    472

    how you will make it animated will be a different...

    how you will make it animated will be a different story. you might have to make gifs for it and find a control to play gifs. make transparent background gifs. here is a post on how to make the...
  39. winsock can be fast, i know a lot of people say...

    winsock can be fast, i know a lot of people say it is slow. But it isnt like it has limits that are small. If you really wanted to you could use inet to upload it and then have the client download...
  40. Replies
    7
    Views
    835

    how to kill html...

    how to kill html
    http://www.vbforums.com/showthread.php?s=&threadid=234562
Results 1 to 40 of 310
Page 1 of 8 1 2 3 4



Click Here to Expand Forum to Full Width