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!

Search results for query: *

  • Users: bobo12
  • Content: Threads
  • Order by date
  1. bobo12

    WRITE statement ?

    hi, just wondering if someone one plz tell me what this does... WRITE (11,FMAT3) (ITEM(I), I = NSTAR,NSTOP) so i realize there is an int array ITEM[] 11 is file descriptor for file, CHARACTER*127 FMAT3 but i am not sure what is being written to file? is it FMAT3 or ITEM[]? how what is the...
  2. bobo12

    file output garbeled!

    hi, i am quite puzzled, the following trivial code prints 0 to file. any suggestions! try { BufferedWriter out = new BufferedWriter(new FileWriter(outputfile)); out.write("ITRS SYSTEM"); out.newLine(); out.write(" (ITRS) ")...
  3. bobo12

    xml web services?

    just wondering why someone would want to use xml web services instead of regular web services provided by iis?
  4. bobo12

    asp.net 2.0

    is windows server 2003 or iis6.0 compatible with asp.net 2.0.
  5. bobo12

    simple infinite for loop

    hi all, i've been stuck on this for hours... ok so consider the following code segment, there is code before and after it, but i DON'T understand the last line(20 NS = NS - 1) can ever execute. it seems to me that this code just is a while loop that keeps on repeating 8 NS = NS + 1 and never...
  6. bobo12

    e-commerce site using asp.net

    hi all, are there any resources online that have complete or comprehensive descrriptions of how to build e-commerce sites using asp.net? we also need to implement searching functionality through some db, are there comprehensive docs that will explain both in theory and in code how to do this...
  7. bobo12

    e-commerce site using win server 2003

    hi all, so the hosting company is using win server 2003 servers for an e-commerce site that we will launch eventually. the site will be done using asp.net with backend dbs. here is my ?, do hosting companies take care of the security issues as far as firewalls, and all that stuff? we are...
  8. bobo12

    e-commerce site using asp.net

    hi all, so the hosting company is using iis6.0 servers for an e-commerce site that we will launch eventually. the site will be done using asp.net with backend dbs. i expect a majority of the work to be the coding aspect in asp.net but i want to know how much or what do i need to do as far as...
  9. bobo12

    e-commerce site using asp.net

    hi all, so the hosting company is using win2003 servers for an e-commerce site that we will launch eventually. the site will be done using asp.net with backend dbs. i expect a majority of the work to be the coding aspect in asp.net but i want to know how much or what do i need to do as far as...
  10. bobo12

    flash remoting

    hi, just wondering if any of u have worked with flash remoting with asp.net on iis? what are some difficulties with the integration of the two?
  11. bobo12

    implementing file menu operations

    can anyone plz recommend actual source code in java for open, save, saveas functions in the file menu
  12. bobo12

    flash remoting with asp.net

    hi, just wondering if any of u have worked with flash remoting with asp.net on iis? what are some difficulties with the integration of the two?
  13. bobo12

    parsing contents of files

    hi ppl, i am used to using StringTokenizer in Java to help me parse for certain phrases and look for certain substrings within contents of file. I was wondering if there are built in classes in c that will allow me to do the same thing. suppose I want to count the # of times a particular client...
  14. bobo12

    reading/parsing file content in an easier way

    hi ppl, i am used to using StringTokenizer in Java to help me parse for certain phrases and look for certain substrings within contents of file. I was wondering if there are built in classes in c that will allow me to do the same thing. if not in c, what about c++? suppose I want to count the...
  15. bobo12

    automatic internet illegal application detection

    many universities, are deploying automatic artificial agents that can spot illegal software on users on their networks. any idea how this is done? i mean how would you distinguish from the same serial # that may be used by 1000 ppl around the world. who's the real purchaser assuming they...
  16. bobo12

    backing up?

    relatively simple ?, just wondering how i can make a complete copy of my hardrive in win xp. iow, suppose something wrong occurs, i want to be able to recover from it. this is a trivial ?, but i am new to microsoft products...
  17. bobo12

    checking 2 c if another ie window is open

    hi, how can i check 2 c if a ie window is open in vb? iow, suppose i want to know if a user is browsing using ie? also,suppose i want to execute a certain action every 3 to 4 hours, how can i do this? i don't even know what to google for and this is why i ask it here.
  18. bobo12

    Character input

    i am puzzled, if only 1 char has been written to file NEWT, how can i read read 127 chars, won't all the values be ' ' assume FMAT is character*127 which holds a fortran-type format like 40F1.0, and FMAT1 is char[127] OPEN (11,FILE='NEWT',STATUS='NEW') WRITE (11,'(A)') FMAT CLOSE...
  19. bobo12

    f77 ide

    can someone plz recommend a good f77 ide & debugger? i tried force, -but doesn't allow multiple files, or if it does plz let me know how -gave wierd errors, i have a feeling its not complete
  20. bobo12

    hWnd not a member of?

    Option Explicit On Public Class Form1 Inherits System.Windows.Forms.Form Public Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hWnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal...

Part and Inventory Search

Back
Top