Search:

Type: Posts; User: MrPolite

Page 1 of 13 1 2 3 4

Search: Search took 1.73 seconds.

  1. Replies
    3
    Views
    931

    Re: Sockets - receiving a large buffer?

    no.... no indication of when i've received the whole buffer

    see, on the server side I'm sending the data in small buffers (using unix sockets), so a call to Receive from the .NET client app might...
  2. Replies
    3
    Views
    931

    Sockets - receiving a large buffer?

    (First time trying to do socket programming :) )
    I'm trying to read a large buffer using sockets. Is there anything wrong with this psudo code?


    DO
    mySocket.Receive(buff) ' temporary...
  3. Replies
    0
    Views
    454

    itunes, getting the location of tracks

    anyone familiar with the itunes COM interface?
    Given a IITTrack object, i can't figure out how to get the location of it on disk.
    Anyone knows how?
  4. Replies
    10
    Views
    915

    Re: Weird display problem... help! :)

    hey thanks again
    come to think of it, this laptop had gotten wet at some point too :P so it's probably the corrosion as you mentioned. I can't find a way to get rid of the corrosion though :S
  5. Thread: Post Race!

    by MrPolite
    Replies
    68,909
    Views
    18,138,069

    Re: Post Race!

    and there was blood
  6. Thread: Post Race!

    by MrPolite
    Replies
    68,909
    Views
    18,138,069

    Re: Post Race!

    please press ALT + F4 together now for a prize
  7. Replies
    10
    Views
    915

    Re: Weird display problem... help! :)

    oh also it looks fine if i reboot! until another few minutes after reboot and it's all messed up again
    It can't be a pure software issue since the weird lines go away when i press on top of the...
  8. Replies
    10
    Views
    915

    Re: Weird display problem... help! :)

    Thanks for the replies everyone.
    I'll try to look into a replacement, but before spending so much money on this old laptop i thought i'd ask more: when i press the keyboard really hard, right above...
  9. Replies
    10
    Views
    915

    Weird display problem... help! :)

    could you look at the screenshot attached?
    This is from a Dell 5100 Inspiron, with ATI mobility 7500c graphics card.
    The screen looks fine for a minute or two but then goes bad, as you can see in...
  10. Re: [RESOLVED] Making a usercontrol property editable at design time?

    hmm thanks again
    i can't think of any easy way to do this :(
    do i need to make my own custom List<> class that would raise an event when someone adds/remove items?
  11. Re: [RESOLVED] Making a usercontrol property editable at design time?

    hmm but i guess a question that remains is how to you figure out if the property was updated? (it if an item was added to the List ?)
    (I need to update the UI items based on what's in that List...
  12. Re: Making a usercontrol property editable at design time?

    cool works! thanks!!! :) :) :)
  13. [RESOLVED] Making a usercontrol property editable at design time?

    Hi...
    i have a property in my user control that is a collection of objects. How can i make it so the users can edit the collection at design time (just like how you can edit the Items property for...
  14. Excel app closing but locks the last saved worksheet. HELP!!

    I'm releasing all the COM objects and the Excel app I'm using closes (from the list of active processes i mean). However the file that I saved using that Excel object remains locked until I close my...
  15. Re: Saving an Excel 2007 worksheet but in 2003 format?

    aah i see
    well thanks for your help!
    hopefully this works fine for now
  16. Re: Making a listbox highlight items as you type?

    grr i thoguht there'd be a nice way :(
    thanks wy124... i changed yoru code a bit to do the same thing. It clears the "search" after 2.5 seconds, and it also keeps this in the list boxs tag....


    ...
  17. Re: Saving an Excel 2007 worksheet but in 2003 format?

    this works so far, but it seems more like a "hack" to me... anyone can tell me why this is failing depending on what version of office I'm running?


    if (app.Version == "11.0")
    ...
  18. Re: Saving an Excel 2007 worksheet but in 2003 format?

    hmm yea i have acrobat reader... why?
    Funny thing is using this format works fine: xlExcel9795
    Is there any particular reason why that version would work and excel 8 wouldnt work? is there any...
  19. Re: Saving an Excel 2007 worksheet but in 2003 format?

    nope it's a plane installation
  20. Re: Saving an Excel 2007 worksheet but in 2003 format?

    Hi Rob,
    for some reason it crashes when i try that. It works if I try xlWorkbookNormal, but if i try xlExcel8 it throws:
    {System.Runtime.InteropServices.COMException (0x800A03EC): Exception from...
  21. Saving an Excel 2007 worksheet but in 2003 format?

    Hi all
    I'm creating a new worksheet using Excel 2007 and then i save it to file. How would i be able to specify the format to be compatible with Excel 2003?
  22. Re: Making a listbox highlight items as you type?

    haha yea sometimes more coffee helps.
    Thanks for the tip, I'll try it out if i don't find anything else, because I'm almost certain the listbox itself should support that, but alas no one seems to...
  23. Re: Making a listbox highlight items as you type?

    Hi,
    thanks for your reply. I'm talking about a ListBox control however, not a ComboBox ;) those properties you mentioned are for combobox
  24. Making a listbox highlight items as you type?

    Hi!
    How can i make the listbox highlight the item as the user types the item text?
    ie, if there is an item called "Apple" in the list and the user clicks on the listbox and starts typing "app..."...
  25. Replies
    2
    Views
    650

    XmlSerialization Questoin

    I have a class that contains several string and integer fields. I can serialize this fine using XmlSerializer.
    Now I've added an object array as a field to my class (the object being a user defined...
  26. Re: Loading the correct MS Office references depending on the Office version?

    I guess I'm a confused person! :afrog:
    i was talking about project properties, but it also worried me thinking that i need to have 2 separate versions of hte program for office 2003 and office 2007...
  27. Loading the correct MS Office references depending on the Office version?

    Hi,
    I was using Office 2003 with a C# project, and after installing Office 2007 i realized that in the References section of the project, the Office 2003 items were invalid and would no longer work....
  28. Replies
    0
    Views
    491

    [RESOLVED] Office 2007 Dilemma! help

    Hi
    I have a project referencing "Microsoft.Office.Core" and "EXcel"
    I upgraded from Office 2003 to 2007 and now when i open up my C# project those 2 references are invalid and i can't find anythign...
  29. Replies
    3
    Views
    1,463

    Re: lockwindowUpdate equivalent?

    aah okay
    well I'm populating a list... was there an easy way to do this? maybe create the collection first and then add it to list :D?
    I find it inefficient to add items one by one ... and ...
  30. Replies
    3
    Views
    636

    Re: detecting CTRL+A in a user control?

    hey thanks
    I'm trying to use this on a list box to select all items
    I'm kind of confused. After detecting CTRL+A i select all items in a listbox and then set e.Handled to true.... but if there is...
  31. Replies
    3
    Views
    636

    detecting CTRL+A in a user control?

    Havent used .NET in a while...forgetting everything :D i cant even get the keydown even :(

    How can i detect CTRL+A key combo in a user control? (some other control inside the user control might...
  32. Replies
    3
    Views
    1,463

    lockwindowUpdate equivalent?

    Is there a way in .NET 2.0 to disable the control's UI updates, kind of like the LockWindowUpdate API?
  33. Replies
    3
    Views
    5,533

    Re: make a user control not resizable?

    thanks mate! I shall give that a try . Sounds familiar :afrog:
  34. Replies
    3
    Views
    5,533

    make a user control not resizable?

    How can i do that? I want my user control to have a fixed size
    havent touched C# in a while, cant remember what to override to disable user control resizing
  35. Replies
    3
    Views
    1,501

    Re: [2.0] pdf metadata

    take a look here maybe?
    you want to use IExtractImage (COM??)
    http://www.tek-tips.com/viewthread.cfm?qid=1377157&page=1
  36. Replies
    5
    Views
    1,809

    Re: Lyrics plugin for itunes

    cool thanks for the reply!
    do you know if it also scrolls the lyrics like MiniLyrics does? (ie, does it show the current line of lyrics the artist is singing? probably not :D it's a neat feature...
  37. Replies
    5
    Views
    1,809

    Lyrics plugin for itunes

    Anyone knows any good lyrics plugins for itunes (to automatically download and show the song lyrics as you play them)
    I've been using MiniLyrics but I dont like their lyrics database. Anyone knows...
  38. Replies
    3
    Views
    1,501

    Re: [2.0] pdf metadata

    ah i cant remember what it's called...i havent used C# in a few years... but i think windows provides certain things like the PDF thumbnail and etc
    I know I'm not helping you, but I'm just saying...
  39. Replies
    3
    Views
    1,420

    Re: converting many mp3's to 128kbps?

    :afrog:
  40. Replies
    3
    Views
    1,420

    converting many mp3's to 128kbps?

    Hi guys!
    i have a 1000+ mp3 files that i want to downgrade to 128kbps bitrate (the files are almost all high quality so they dont fit in my ipod and i want to have a low quality copy for the ipod :)...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width