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 Rhinorhino 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: subra
  • Content: Threads
  • Order by date
  1. subra

    keyboard stuffing

    how do i do this? I am using turbo-c 3.0 and working on DOS platform only. is there some way i can stuff the keyboard with some characters as if the characters have been entered at the keyboard itself? How do i do it? thanks
  2. subra

    where can i download java webserver 2.0 from?

    i am a newbie. can anyone point me to a site of Java WebServer 2.0. thanks
  3. subra

    can some one point me to a tsr utility/help/skeleton? Only C Gurus!

    I want to write a program to periodically transmit a message. I have a program which already checks whether any thing is there in the outbox and if there is, it transmits the file. I want to write a program which will automatically create and send a file to the destination at fixed time...
  4. subra

    how to write a scheduler program for dos using turbo-c?

    i am using dos operating system. I use turbo-c to write my c programs. I want to write some sort of scheduling program, a tsr program, which will check for a condition say, every 10 minutes, and then execute a program as a result of the check. for example, i am trying to download a file. I do...
  5. subra

    newbee problem

    I have just started learning java. I installed j2sdk1.4.0 on my pc. when i try to run the jdb (using jdb -launch <classname> it first gives and error box, [unsupported configuration] Windows Sockets 2 (Winsock 2.0) run time components are missing. Can anyone tell me how i should solve the...
  6. subra

    object appears and disappears from monitor's connection information.

    i am using a server running novel 4.11 (primary server). we also have another server running novel 5.0. both the servers are under a single tree. until recently thing were okay. now, the connections to the server from the nodes get disconnected abruptly. the server itself is okay. The physical...
  7. subra

    going crazy using sizeof. what could be wrong?

    i am using DOS and Turbo-c 3.0 I have two small programs, i. to create a data file ii. to read and index the data file. the structure of the data file and the offending code is as below. typedef struc { char custno[7]; char custnm[31]; char amtnum[3]; } CUSTOMER; CUSTOMER cust; void...
  8. subra

    how to pass a function as a parameter?

    is it possible to do this? I work on DOS and i use turbo-c. i have a function say void abc(void); i have a second function say void xyz( p1, p2, ..); { abc(); } my question is, how can i pass the function abc as a parameter to the function xyz. is it possible to do this? more...
  9. subra

    how to amend a field of a record in a data file

    I work on the DOS platform only and I use the Turbo-c ver 3.0 compiler I have written the following code: # include <stdio.h> # include <conio.h> # include <string.h> typedef struct { char custno[ 7]; /* customer no */ char accnum[14]; /* account no */ char acdesc[31]; /* account...
  10. subra

    printf problem

    this is the code printf(&quot;%5s&quot;,&quot;abcd&quot;); is there any way in which that &quot;5.2&quot; can be replaced by a variable so that formatting can be done on the fly? like int a=5; printf(&quot;%as&quot;,&quot;abcd&quot;); subra if you find this useful let me know at...
  11. subra

    cprintf and printf - how to?

    I am using the DOS OS. I am working with Turbo-C only. i have code like this: textattr( ); // set to reverse video-black on white // background cprintf(&quot; &quot;); prints a reverse video bar However if i use printf instead of cprintf (everything...
  12. subra

    General Failure Reading device network

    I have been getting this error on my Netware 4.11 Novell network. I have about 50 nodes connected to the server through 3Com Switches. I have Groupwise 5 running on the server. I also have a Vsat connected to this network and groupwise uses this to send messages automatically. The network has...
  13. subra

    detecting size of volumes

    Is there someway in which I can detect the following using a single command: i. The name of the server(s) ii. The sizes of volumes on each of the servers ii.a Total size in bytes or Kbytes ii.b Total used space ii.c Total unused space I know i can use filer to detect the volume...
  14. subra

    Help with clipper tools needed. Please help

    CA_CLipper tools provide the following functions: nnetvolnum(), nnetvolnam(nVolume), nnetvolmax(nVolume) and nnetvolfre(nVolume). While these functions work correctly, they get foxed when the volumes exceed 1GB. Are there any patches, or solutions available which can help in correctly...
  15. subra

    netware volumes, sizes, names clipper tools query

    CA_CLipper tools provide the following functions: nnetvolnum(), nnetvolnam(nVolume), nnetvolmax(nVolume) and nnetvolfre(nVolume). While these functions work correctly, they get foxed when the volumes exceed 1GB. Are there any patches, or solutions available which can help in correctly...
  16. subra

    need help from a c guru on use of structures

    I am a new C programmer. I use turbo c on a DOS operationg system. Please restrict your replies to Turbo C on DOS. Thanks. My problem. I have two databases which differ slightly but significantly. The databases are defined as struc which gives the field description. My program essentially...
  17. subra

    stand alone to network environment

    I am a newbie c programmer. I have written an application using turbo-c which runs well on a stand alone DOS machine. I now want to enable it so that it can run on a network using Netware 4.11. The program opens the data files in read only mode. So that file locking etcetera should not be a...
  18. subra

    Printing received messages

    The print button prints individual messages on separate pages. This wastes lots of paper, especially if the messages are very short. Is there any way I can print several messages on the same sheet of paper? I am new to groupwise. Subra if you find this useful let me know at vksubra@icenet.net
  19. subra

    Printing BMP files on Laser printers

    Can anybody tell me how to print BMP files on a laser of deskjet printer through clipper. (Clipper 5.2e) i am using the DOS OS. thanks subra if you find this useful let me know at vksubra@usa.net
  20. subra

    how to display a graphic ?

    i would like to know how i can display a graphic using c. i am a new c programmer. i am writing a program to search a database containing records and i want to display the scanned vouchers pertaining to the record selected by the user. Is there some library where such a feature is available? It...

Part and Inventory Search

Back
Top