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. dcelso

    bug with embedded TCL in C using package require

    Hello to all, I m trying to run serveral TCL commands inside C++ source code and when I show the information of the auto_path it is empty. If I put the same command in the tclsh interpreter it runs well. What Am I doing bad? in tclsh I insert: puts $auto_path puts hola package require Tk...
  2. dcelso

    debian + cisco switch + virtual pcs

    Hello again, I have done the same configuration using virtualbox instead of kvm and it works well. ¿What can be the trouble?
  3. dcelso

    debian + cisco switch + virtual pcs

    I says that if I put in the debian host this configuration. auto eth0 iface eth0 inet static address 192.168.1.10 netmask 255.255.255.0 broadcast 192.168.1.255 network 192.168.1.0 gateway 192.168.1.1 auto eth0.4 iface eth0 inet static address 192.168.4.10 netmask 255.255.255.0 broadcast...
  4. dcelso

    debian + cisco switch + virtual pcs

    hello, sorry for my english, when i said "guess" i would want say "guest
  5. dcelso

    debian + cisco switch + virtual pcs

    The switch port is correctly configured because if i put the interfaces configuiration of the guess in the host, the host can access correctly to the three networks.
  6. dcelso

    debian + cisco switch + virtual pcs

    Hello to all, i need help configuring a network virtual pc. All PCs have debian SO. I must connect a phisical PC with two virtuals pc to a switch. The switch have two vlan networks. in total there are three nets (192.168.1.0,192.168.4.0,192.168.101.0)...
  7. dcelso

    How to use Tuxedo + Service Builder in AIX

    Hello I would like know the necessary libs and flags to compile a service. I am using AIX with Tuxedo 8.0 Service Builder 2.8 Oracle DataBase 9 Visual Age Actualy I have this options: OTHER_CC_FLAGS="-qstaticinline -DTKT_BIG_ENDIAN -D_DEBUG -DPLATF_AIX -DUNIX_64 -D__SERVIDOR__...
  8. dcelso

    Change the palette of a Bitmap

    The image is a windows bitmap.My program will be an palette editor for images in 256 colors, but i need know how i can change the palete of a TBitmap. Too i need know how access to the array of color dates, where sais what color of the palette must be painten in each point.
  9. dcelso

    writing a formula in c++

    all the variables must be doubles: k=H(i/(1-pow(1+i,-t)). Do you must included the math library. <math.h>
  10. dcelso

    Converting AnsiString to Char......

    Those code doesnt run, because in the c_string, the asign doesnt copy the string, only point to the fist character of the memory that have the string. YOU MUST USE THE strcpy(), of the string library <string.h>. The correct mode is: AnsiString AString = &quot;A String&quot;; char cString[50]...
  11. dcelso

    Change the palette of a Bitmap

    Hello, i have a TImage, and i have loaded an image of 256 colors. I have an array of 256 TColors, and i want put this as the new palette of my TBipmap of the TImage. But i don´t know how do it. The CreatePalette() API, Does run correctly.

Part and Inventory Search

Back
Top