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 SkipVought 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: *

  • Users: noka
  • Order by date
  1. noka

    LSI 20320-R Raid 1 Out of sync

    Hello, can please anybody give me a hint why my secondery disk is always "out of sync". I never got it "optimal". Using the CIM browser software I can see only one disk. Is this ok if I have two? If I disable the mirroring in the controller bios I can use both disks perfectly without problems...
  2. noka

    HOw to forward IP addresses? for Routing and Internet Sharing?

    put in your rc.conf: gateway_enable="YES" start your ppp: ppp -auto -nat pppoelabel you should configure a firewall and a nameserver on the gateway. noka
  3. noka

    pthread problem

    simple said: objects that may be changed by different threads have to be protected against concurrent access. this can be done i.e by a mutex. if you don't use threads than you don't have to use this protection and you can increase the perfomance by disable this. compiling your program with...
  4. noka

    pthread problem

    http://www.mit.edu:8001/people/proven/IAP_2000/index.html hth norbert
  5. noka

    Simple code - but not working now !

    rec should be declared as a pointer in that context.
  6. noka

    Simple code - but not working now !

    ooops ... LaurenK is right. the '&' is wrong. norbert
  7. noka

    Simple code - but not working now !

    brave compiler! make a cast. if( status ) format_agent_code( ( unsigned char * ) &rec.agent_code ) ; hth norbert
  8. noka

    500 Internal Server Error

    try this http://www.webdeveloper.com/cgi-perl/cgi_idiots_guide_to_perl.html and please don't be offended by the title ;-) norbert
  9. noka

    fastcgi - could be a faq

    hello, i am trying to understand fastcgi. using the example "echo" from the fastcgi - devkit the counter always is "1" and the process id changes. why? webserver is apache. thx noka
  10. noka

    GUI or Advice?

    If you are developing in a commercial environment don't forget to pay for qt! http://www.trolltech.com/products/purchase/pricing.html ;-) noka
  11. noka

    automatically show a form after mdi - startup

    now i used another way: the application starts with a main-function, not with a form. inside this i load and show the forms. mdiform.show form.show vbmodal, mdiform the background is that an mdichild can not be modal which is important in this case. the application handles some different...
  12. noka

    automatically show a form after mdi - startup

    ok - have it done by myself. set the second form as an mdi-child and use it as startform. the only problem was the positioning. i used scaleheight and scalewidth of the mdi-form and centered the startform. Me.Top = MDIForm.ScaleHeight - Me.Height / 2 Me.Left = MDIForm.ScaleWidth - Me.Width / 2...
  13. noka

    automatically show a form after mdi - startup

    I want to show a form after starting an mdi-form. If I put the show method in mdiform_load() then it will proceed with loading the mdi-form only after the other form is closed. any advice? thx noka
  14. noka

    3-button-mouse

    i have problems using a serial 3-button-mouse under linux. i already read the 3-button-mouse-mini-howto and put pin 3 of the HT6510A - chip to ground. the microsoft-mouse now works with mousesystems-protokoll ... but the middle button is always pressed. that's not what i wanted. any advice? thx...
  15. noka

    Need the function of strcat using pointers??

    hey jude, your function works. but i think you should tell cina how dangerous it is. bye noka
  16. noka

    problem in assigning 15 digit numner - pl help

    The following works on my machine: #include<stdio.h> main() { double fld1; fld1=229959542012345; printf(&quot;\n passed field value is %.0lf &quot;, fld1); } Maybe you have forgotten to pass fld1 to the function printf.
  17. noka

    GUI or Advice?

    For getting good results very soon you should take a look at http://vtcl.sourceforge.net/ If you want to program in C you have to learn as much as you are used to in &quot;Visual C++&quot;(tm). There are some graphic libraries available under the different unix-flavours. Gtk and Lesstif are...
  18. noka

    How do I clear the screen?

    sorry folks, thought everybody would know all about curses and slang. try the excellent 'Writing Programs with NCURSES' by Eric S. Raymond and Zeyd M. Ben-Halim for a start with curses. S-lang is a C-like programming language, designed to be embedded in programs. It provides standard screen...
  19. noka

    How do I clear the screen?

    if you won't use curses or slang for a better formatting of output, you can go by \n and \t to the place you want to fprintf the numbers and sleep( 1 ) between each call of showing the time. noka
  20. noka

    Please Help! a.s.a.p!!!!!!!!!!!!!!!!!!!!!!!!!!

    hello timtiny, i think you should do your homework by yourself. these are exercises from the very beginning of c and you can find the solutions in nearly every beginner - c - tutorial. download some an you will drag and drop and never learn how to program i c. ;-) noka

Part and Inventory Search

Back
Top