Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by voodoojon

  1. voodoojon

    ssrs 2005 can see home screen but I have no options

    Hi Everyone, I am trying to set up SQL Server Reporting Services on a client's server. In the reporting services config app all the categories claim to be set up correctly. but when I try to view localhost\reports\ the home screen I see only shows Home My Subscriptions and Help, and nonoe of...
  2. voodoojon

    find all implementors of a class

    find all implementors of ITestCase within my project that is, if I am not being clear enough Jon One day I will find a signature worthy of this space. That day has not yet come.
  3. voodoojon

    find all implementors of a class

    Hi All, I've got a class: ITestCase (referenced from a dll outside the project), and a whole bunch of other classes that implement it. Is there a way of, when running in design time, getting a list of all the implementors? My only real idea so far is to inspect the .cls files as text files...
  4. voodoojon

    project to learn multithreading

    Hi everyone, I am trying to teach myself C#, and I want to learn how to use C#'s multithreading capacities. I have looked on the web for example projects, but they are all incredibly simple, for example a console app which creates a few threads, starts them and outputs some text. This still...
  5. voodoojon

    cycle through all control instances

    I'd just to add: since the code I wanted to do was specific to PaintControl, I also needed to cast the object as a PaintControl within the conditional: foreach (UserControl uCtl in this.Controls) { if (uCtl is PaintControl) { PaintControl pCtl =...
  6. voodoojon

    cycle through all control instances

    Cheers, Geert. That was just what I needed. Jon One day I will find a signature worthy of this space. That day has not yet come.
  7. voodoojon

    cycle through all control instances

    I have a class that extends usercontrol called PaintControl. I dragged a few of these paintcontrols onto my form. When I wanted to run the same bit of code, I used foreach( PaintControl ctl in Usercontrols){ ctl.dosomething(); } This worked fine, but when I dragged another control (a button)...
  8. voodoojon

    J2me font sizes

    Does any body know how to find out the size of fonts in J2me ie how high they are in pixels? for example I have Font f1 = Font.getFont(Font.FACE_SYSTEM, Font.STYLE_PLAIN, Font.SIZE_LARGE); in my midlet. there are three sizes avaliable. I want to know how large the text is when I use it with...
  9. voodoojon

    displaying variable values when hovering over in debug

    These posts don't quite give me the answer I want, I'm afraid. I often have variable which have values in the watch window, and gives me its value when i type debug.print varName in the immediate window, but nothing when I hover over them. Typically when this happens none of the variables on the...
  10. voodoojon

    displaying variable values when hovering over in debug

    Hi guys, here's a general VB question. When I am debgging code in Visual Studio, sometime when I hover my mouse above a variable in the code, a little tooltip textbox tells me its current value. Some times however, this does not show at all for any of the variables on the page. Does anyone...
  11. voodoojon

    plsql confusion

    Mufasa, your explanation was useful too Jon One day I will find a signature worthy of this space. That day has not yet come.
  12. voodoojon

    plsql confusion

    cheers BJCooper, that sorted it Jon One day I will find a signature worthy of this space. That day has not yet come.
  13. voodoojon

    plsql confusion

    the if statements in my code appear not to be working dbms_output.put_line('other = '||greportinfo.Other); If not greportinfo.Other = '' then vsql:= vsql||'where portfoliotype = '||greportinfo.Other ; dbms_output.put_line('first if'); if not greportinfo.Owner = '' then vsql:= vsql||' and...
  14. voodoojon

    suppress all but the last group

    Cheers bdreed35 for the quick, correct, concise answer. If only I could defer all my thinking to Tek Tips! life would be so easy Jon One day I will find a signature worthy of this space. That day has not yet come.
  15. voodoojon

    suppress all but the last group

    I need to suppress everything but the last group footer on the report. Alternatively is there a formula I could make that, say returns 1 if it's the last group, 0 otherwise. Jon One day I will find a signature worthy of this space. That day has not yet come.

Part and Inventory Search

Back
Top