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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  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.
  16. voodoojon

    numbers slightly different immediately after equal assignment

    cheers for the help, now I've got a few things to try. unfortunately this part of the code deals with showing the onscreen data for pretty much every datacontrol in the app(~100 front end forms), in any type or format so any changes to it could cause any amount in disruption somewhere else...
  17. voodoojon

    numbers slightly different immediately after equal assignment

    Can anyone explain this? I've been stepping thru my code (vb6)with f8 to find the source of a wrong value. here's the line where it's assigned variables before: temp: 100509.222 (type: variant) thecontrol: undefined (type: control) thecontrol = temp variables after: temp: 100509.222...
  18. voodoojon

    white background image changes after saving

    I got it by saving as a different format (tif), then resaving as a bmp. apparently crystal had a problem with the original bmp format. I avoid jpeg cos I worry that compression might have some adverse effects and size isn't an issue. Jon One day I will find a signature worthy of this space...
  19. voodoojon

    white background image changes after saving

    I set up some reports which included an image, imported from a .bmp of grey text on a white background. when later printing I noticed that the white image appears to be very light blue, despite it being perfect white in the bmp. I tried various resizing/importing options, and it appeared to...
  20. voodoojon

    what is slash / for?

    I've seen lots of scripts with the / character on its own line, but I can't find documentation on the internet to tell me what it's for. What's it for? thanks Jon One day I will find a signature worthy of this space. That day has not yet come.

Part and Inventory Search

Back
Top