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 TouchToneTommy 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 noka

  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

Part and Inventory Search

Back
Top