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 strongm 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. halfbarrel

    resize term-ncurses

    Yes, I would actually like to resize the terminal, but I'm kind of lost on how to do it. I tried playing around with the resizeterm function, but didn't have any luck(tried all different sizes from small to big). If you have any ideas let me know. Thanks, Chris.
  2. halfbarrel

    resize term-ncurses

    Hello, Is there a way to resize a terminal in ncurses? I know that there are functions like resizeterm which I believe tries to handle resizing the windows within a term when a resize event happens, but what I interested in is actually resizing my current term which is about 150X40...
  3. halfbarrel

    Retrieve pixel color

    Hello, What I would like to do is pass an image file into a c program as an argument on my linux box and then loop through it's pixels to see what color they are. Does someone know what the code is to get a pixel(specifically the pixels color) and what header/s would have to be included. Thanks,
  4. halfbarrel

    Open url in same browser everytime

    Bob, Thanks, that code looks great. I had came up with something pretty similar today, but I like what you've done better. I know it kind of seems confusing, but the page that is getting opened is basically just a launcher window that does a window.open to open another named window. The...
  5. halfbarrel

    Open url in same browser everytime

    One question that may help me is can I use the return value from shellExecute to close the window or identify if the window is still open? Thanks again, Chris
  6. halfbarrel

    Open url in same browser everytime

    Bob, That's correct, I would if possible like it to open a browser if the app hadn't open one yet, and if it had reuse that browser. Yes, I am okay with end users opening other browsers. I haven't done much so far just a little research. Thanks, Chris.
  7. halfbarrel

    Open url in same browser everytime

    What I mean is that I would like it to open in the same instance everytime. So for instance if they click the button twice they would still only have one browser open it would just get reloaded. I thought it might be important to say how the programmer is currently opening the window so if...
  8. halfbarrel

    Open url in same browser everytime

    Hello, Can anyone tell me how from a vb app you can open a url into the same browser window everytime, or if it is possible? At work a programmer from one of our vendors is using ShellExecute currently to open the browser, and I've done some searching, but am not that great of a vb...
  9. halfbarrel

    Output to Excel

    Basically what I would like to do using Oracle Xsql is have multiple xml recordsets and if possible use it's xsl page to put them on different sheets. Thanks, Chris.
  10. halfbarrel

    Output to Excel

    Hello, Not sure if this is the right area to post, but maybe someone can help. I was wondering with xsl if it is possible to output multiple sheets in Excel. Let me know if you can offer any help. Thanks, Chris.
  11. halfbarrel

    Difference of two datestamps

    Hello, In MySql 4.1 how do you find the difference(preferrably int hours/minutes) of two dates? I see in 5.0 there is a timestampdiff function. Thanks, Chris.
  12. halfbarrel

    Setting focus to iframe

    Thanks for the help guys. One more question. If the source for the second iframe is set and a value is clicked in the table at the top I would like to set the source for the second iframe to nothing and shrink it back down to make it invisible. I can set the source to nothing but when I try...
  13. halfbarrel

    Setting focus to iframe

    Hello, I'm currently creating a web page with a table of data at the top, and iframe below that, and then a second iframe below that. When a hyper link from the table is clicked it changes the source of the first iframe, then when a hyper link is clicked from that iframe it sets the source...
  14. halfbarrel

    moveFile overwrite

    longhair, That works. I knew I had seen an overwrite option somewhere. Thanks, Chris.
  15. halfbarrel

    moveFile overwrite

    Hello, Is there a way with moveFile to overwrite the file if it already exists? Thanks, Chris.
  16. halfbarrel

    Access Report to Adobe/Email Problem

    M8KWR, I can print it currently to a pdf, but I need to be able to email it right away too. The problem is that when the report is sent to the spooler it returns control to the vba module and the code that I have to email the job blows because it doesn't see the file yet(the pdf spooler...
  17. halfbarrel

    Access Report to Adobe/Email Problem

    Hello, I'm working on coverting an access report to a pdf and then I would like to email it. I set report's printer to the Adobe Writer, and open the report to print. My problem is, I believe that the report is submitted to the Adobe printer queue and then the next line of code to email the...
  18. halfbarrel

    Simple c Character manipulation question

    Hello, I was wondering if someone could kind of tell me what the second line bellow would be outputting: x=(char) *myinputval++; /* get input char */ x=x * x; The first line I know pulls just a character for example 'P', but I don't understand multiplying a character by...
  19. halfbarrel

    sqlplus column formating question

    Have you guys ever seen it where SQL*Plus put extra spaces in front of a number field so that the field in the spool file is as long as the field's name in the sql. Thanks for your help, Chris.
  20. halfbarrel

    sqlplus column formating question

    Hello, I have a question about sqlplus. It seems whenever I run and sqlplus and spool out the file the number fields have a preceding space. This is even if I format them like: column MPI_NBR format 09999999999 It will then look like this in the spool file. 00000001111 Does anyone have...

Part and Inventory Search

Back
Top