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

  1. rk0000

    Wordpress: Unable to view icons next to “Hide Controls” in admin customize.php

    Hi, I have installed wordpress 5.3.2 on my localhost and everything was fine for 1 month. Suddenly the Mobile view and Desktop view icons are missing from http://localhost/WordPress/wp-admin/customize.php I have disabled all the plugins and deleted unused themes but still no use. have updated...
  2. rk0000

    Free monitoring dashboard for HP-UX server

    I am looking for a server and network monitoring dashboard (free software)for my HP-UX server machine. 1). Which one is the best open source software for this?
  3. rk0000

    insert *char type variable in vector object

    Hi, I have changed the m_InstancedIds definition. STD::vector<STD::string> m_InstancedIds; I have created str1 of type STD::string Read the *char type return in to str1. str1 = GetChar(" ", ""); STD::vector <STD::string>::iterator v1_Iter; for ( v1_Iter = m_InstancedIds.begin( ) ; v1_Iter !=...
  4. rk0000

    insert *char type variable in vector object

    My m_InstancedIds is declared like this STD::vector<char> m_InstancedIds; I just need to insert *char type variables into this vector m_InstancedIds.
  5. rk0000

    insert *char type variable in vector object

    am using visual studio 6 on Windows Xp. I have problem while using Vector class: I am reading a char* from the user input for say 10 times (num_InstanceIds = 10) char* tempPtr ; for(unsigned int i = 0; i < num_InstanceIds; i++) { fprintf (stdout, " Enter the...
  6. rk0000

    Log4j issue

    Thanks a lot... It is working with quotes.
  7. rk0000

    Log4j issue

    I tried the following options: 1). C:\Program Files\Java\test>java -classpath C:\Program Files\Java\j2sdk1.5.0\lib\log4j.jar Log4jDemo Exception in thread "main" java.lang.NoClassDefFoundError: Files\Java\j2sdk1/5/0\lib\log4j/jar Problem still persists 2). Set the Classpath first C:\Program...
  8. rk0000

    Log4j issue

    I am new to Java programming. I have J2SDK1.5.0 in my machine I was able find C:\Program Files\Java\j2re1.5.0 and C:\Program Files\Java\j2sdk1.5.0 and their respective folders with file. I was trying to compile some java file which has log4j calling The file Log4jDemo.java contains the...
  9. rk0000

    Writing data to file

    Note: this command is works fine for windows (activePerl) for unix: ` should be used in place of " perl -pe `s/^/#define /;s/\s*?$/ $./` f1 > outfile
  10. rk0000

    Writing data to file

    The following command is working fine: perl -pe "s/^/#define /;s/\s*?$/ $./" f1 > outfile
  11. rk0000

    Writing data to file

    I have ActiveStatePerl5.8.6 installed in my machine. I want to do the following. I have a file namely "f1" which contains the data like below: attribute01 attribute02 attribute03 attribute04 Now i want to open the file "f1" and read the each line and output to some other file say "outfile"...
  12. rk0000

    How to run simple select statements in VBA (MS Access)

    I am very new to VBA and MS Access. I need run a select statement and get the data into some string. SQL = "Select CustomerName from Customers" SQL = SQL & " WHERE CustomerID = '" & StrCustID & "' " I need to run this query and get the value of CustomerName in to some string say (strName)...
  13. rk0000

    Unable to append &quot;.txt&quot; to a string

    Hi, mstrFileName = Left(mstrFileName,InStr(mstrFileName,Chr(0))-1) & ".txt" is doing th ejob well. Thanks a lot.......
  14. rk0000

    Unable to append &quot;.txt&quot; to a string

    I need to write data to a text file. I am able to open the save file dialog box. I need to append the .txt for file name if the user has not given the extension the code i have is : Dim lngFormHwnd As Long Dim lngAppInstance As Long Dim strInitDir As String Dim strFileFilter As...
  15. rk0000

    parsing appledouble format file for getting finder info

    Actually i have to get the Mac file information(dates). When i use the stat(), i am getting the input file info. i added a line $file = $ARGV[0]; in the begining ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,$blksize,$blks)= stat($file); ($sec, $min, $hour, $mday, $mon...
  16. rk0000

    shell script for parsing appledouble format file

    structure of the file is binary.
  17. rk0000

    parsing appledouble format file for getting finder info

    i tried  $foo->get_entry(8) print  &quot; entry is : $foo->dump_entries()\n&quot;; It is printing as Mac::AppleSingleDouble=HASH(0x6590)->dump_entries() I am new to perl. Am i using wrong sytax? tried with stat()function also. I think we have to pass the file handle for it. i did the following...
  18. rk0000

    parsing appledouble format file for getting finder info

    I have written the following perl script: #!/usr/bin/perl use Mac::AppleSingleDouble;      $foo = new Mac::AppleSingleDouble(shift);      $finder_info = $foo->get_finder_info();      print &quot;The file Type is: $finder_info->{'Type'}\n&quot;;      print &quot;The file Creator is...
  19. rk0000

    parsing appledouble format file for getting finder info

    Hi, I am using MAC OS X. I have perl loaded in my machine. I have a appledouble format file(.adf). I want to parse this file to get the finder info. How to do this in perl script? Thanks Rk
  20. rk0000

    shell script for parsing appledouble format file

    Hi, I am using MAC OS X. I have a appledouble format file(.adf). I want to parse this file to get the finder info. How to do this by using shell script? Thanks Rk

Part and Inventory Search

Back
Top