Search:

Type: Posts; User: scootabug

Page 1 of 4 1 2 3 4

Search: Search took 0.03 seconds.

  1. VS 2008 Re: [RESOLVED] How do I get my output inside the table and not at the beginning of th

    @gep13. Only the one Response.Write for the total, so I'm pretty happy with that. I can't believe how dramatically different ASP.NET is to ASP 3.0, although I can't say I'm surprised. Slowly...
  2. VS 2008 Re: How do I add values together from my dataset (with a repeater)?

    Hey Gary,

    Thanks for the help and the reference to the ItemDataBound event.

    I managed to get the job done, mind you, it doesn't seem overly efficient!

    Protected Sub...
  3. VS 2008 How do I add values together from my dataset (with a repeater)?

    Alright, second blonde moment for the day!

    I've figured out how to use a repeater field, now what I want to achieve is a "total" figure for the column, and this figure needs to appear the footer....
  4. VS 2008 Re: How do I get my output inside the table and not at the beginning of the document?

    Nevermind, I found that the repeater component does exactly what I want. Grr, hate finding things the hard way! It's generally the way though, when I'm involved!
  5. VS 2008 [RESOLVED] How do I get my output inside the table and not at the beginning of the document?

    Hi everyone,

    Long time ASP 3.0 user, ultra n00b to ASP.NET. I've finally found an example of using an SqlDataReader on 4GuysFromRolla which is working a treat, I feel like I'm at home again (as...
  6. Re: [RESOLVED] [2008] Does anyone have the UltraID3Lib.dll

    It said it could? Do you mean it couldn't open the DLL?
  7. Re: [RESOLVED] [2008] Does anyone have the UltraID3Lib.dll

    Perhaps you have the wrong DLLs. This might seem like a waste of time, but have you been able to add DLL's to your projects previously? Aka - do you know how to do it, or is this the first time?
  8. Replies
    100
    Views
    76,947

    Re: Tabbed WebBrowser - a work in progress

    Hey JMC, how's this project coming along? You haven't been asked since 25-Aug-08...thought it'd be time to annoy you again! ;-)
  9. Replies
    4
    Views
    605

    Re: [2005] Form Display Problem

    Restore your backup!
  10. Re: [2008] Can't change Panel visibility?

    Well I finally figured it out. There wasn't really anything 'wrong' with what I was doing (but the combination of small errors did screw me over).

    In the end, I've resolved this by keeping my...
  11. Replies
    9
    Views
    987

    Re: sorting data in a row

    Yeah Shaggy, makes perfect sense if "BEL,CAN,DEU,USA" is the value of dr("COUNTRY").ToString for one record. It would have paid for me to have read the original post, but that code without syntax...
  12. Re: [2008] ActiveCaptionText FontFamily rather than ForeColor?

    lblHeader.Font = SystemFonts.CaptionFont

    BAM! Thanks John :thumb:
  13. Replies
    9
    Views
    987

    Re: sorting data in a row

    I still can't see why you can't 'ORDER BY country ASC'? Or whatever it actually is, my SQL is rusty, haven't touched it for a couple of years.
  14. Replies
    8
    Views
    1,036

    Re: [2008] Split a string into several pieces

    Sweet. Another small piece of knowledge in the bag. Thanks!
  15. Replies
    1
    Views
    546

    Re: [RESOLVED] [2005] Get IE Url

    What's the solution for future reference?
  16. Re: [2008] Link Image, Video, or text from Web to a Form

    Does YouTube have an API?
  17. Re: [2008] How do I compile a project into native code?

    Why is it that you want to do this, just out of interest?
  18. Replies
    8
    Views
    1,036

    Re: [2008] Split a string into several pieces

    Nevermind, found it. Seems a tad over the top when it "looks" like the same thing. "Z" vs "Z"?


    Option Strict On
    Dim charVar As Char
    ' The following statement attempts to convert a String...
  19. Replies
    8
    Views
    1,036

    Re: [2008] Split a string into several pieces

    Damn...see what happens when I try to help, John!

    I have never seen "|"c this before, so I shouldn't have assumed. I've just tried it again and yeah, I stand well corrected. All the same, my...
  20. [RESOLVED] [2008] Can't change Panel visibility?

    Yo!

    I've created a class, clsWizardStep, to hold the data for the 'steps' for my 'application configuration wizard' and one of the properties of this class is simply to hold which Panel will be...
  21. Replies
    9
    Views
    987

    Re: sorting data in a row

    I agree. It seems only logical to put it into your SQL command, then you don't need to reorder the output.
  22. Replies
    8
    Views
    1,036

    Re: [2008] Split a string into several pieces

    I'm assuming that the c) at the end of your Message.Split is a typo. Read this: http://msdn.microsoft.com/en-us/library/system.string.split.aspx

    Your method will return more than 2 strings, if...
  23. Replies
    8
    Views
    1,036

    Re: [2008] Split a string into several pieces

    Can't see you're code?
  24. Re: [2008] ActiveCaptionText FontFamily rather than ForeColor?

    Bump!
  25. [RESOLVED] [2008] ActiveCaptionText FontFamily rather than ForeColor?

    I can tell my application to use the colors of the system, but can I get it to use particular font styles?

    For example, my application has a "header" and I want the label in the header to use the...
  26. Re: [2008] Background Worker returning Array as e.UserState

    Ah yeah, that makes sense now. I'll keep her in mind in future. Cheers.
  27. Re: [2008] Background Worker returning Array as e.UserState

    Makes sense. Is it ever appropriate to use String.Concat?
  28. Re: [2008] Background Worker returning Array as e.UserState

    Yep I was doing it wrong. I was passing the ArrayList okay, but I was missing the DirectCast in the ProgressChanged event.

    So this is my new list:

    Dim...
  29. [RESOLVED] [2008] Background Worker returning Array as e.UserState

    G'day everyone,

    Part of my application scans about 3000 files (MP3). This process occurs in a Background Worker and I want to update the UI with various data on the progress of the BGW. For...
  30. Re: [2008] Does anyone have the UltraID3Lib.dll

    Well I'm having great success with TagLib#, thanks to a little much needed help from jmcilhinney. He helped me convert some C# to VB in another thread.

    For future reference, once you've added a...
  31. Replies
    6
    Views
    2,496

    Re: [RESOLVED] [2008] TagLib# - How on earth?

    Sounds great!

    I'm getting into microcontrollers, so I'll have to design a device with back-mounting microphones to record everything people say and interpret the meaning into smileys. And then...
  32. Replies
    6
    Views
    2,496

    Re: [2008] TagLib# - How on earth?

    Hehe. I've never liked the idea of a converter, especially when I don't know what I'm doing (with VB let alone the other language I am trying to convert from!).

    Well, as always John, you're the...
  33. Replies
    6
    Views
    2,496

    Re: [2008] TagLib# - How on earth?

    Thanks, you'll notice that I put it as "c# Code:". I had been trying to convert it to VB.Net, but I'm still a newbie so that was a hard task.
  34. Replies
    6
    Views
    2,496

    [RESOLVED] [2008] TagLib# - How on earth?

    So I've been wracking my little brain for about an hour. I can't figure out how you actually use this TagLib# dll to read the tags from an MP3 file.

    Would someone with a better understanding care...
  35. Re: [2008] Does anyone have the UltraID3Lib.dll

    Nevermind for now, I am trying to use another library called TagLib Sharp. It also supports many other formats, so it's a blessing in disguise. I'll post back again with my findings or further...
  36. [RESOLVED] [2008] Does anyone have the UltraID3Lib.dll

    I'm trying to get my hands on the UltraID3Lib.dll file. The web site is down, can't find it anywhere. Surely someone here has the file?

    It looks like it was included as part of the World of...
  37. Replies
    18
    Views
    28,735

    Re: VB.NET : ID3v1,v2 reader , ID3v2 Writer

    Does have the compiled dll for this UltraIDELib? The site is down and I can't find it elsewhere for the life of me. Help!
  38. Replies
    6
    Views
    751

    Re: [2008] All of a sudden I can't debug?

    I'll give that a try. Changing it to x64 as per my last post did not help. Thanks.
  39. Replies
    6
    Views
    751

    Re: [2008] All of a sudden I can't debug?

    I wish that were the case Matt (I think that's your name?). I'm definitely in the Debug configuration, "Define DEBUG constant" is checked etc.

    One thing that stands out to me, is that this seems...
  40. Replies
    6
    Views
    751

    Re: [2008] All of a sudden I can't debug?

    Thanks Pradeep but that doesn't work either.
Results 1 to 40 of 152
Page 1 of 4 1 2 3 4



Click Here to Expand Forum to Full Width