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 Mike Lewis 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. pukiamak

    Memory Latency Program

    yes the program should be able to measure the elapsed time for the addresses in the primary level cache, secondary, main and so on. the user will supply the address or it should have the default address to start from. Thanks
  2. pukiamak

    Memory Latency Program

    anyone please ??
  3. pukiamak

    Memory Latency Program

    Hello Guys, I am wondering if any of you guys have the example code for memory latency program in C? I am thinking to develop it in Linux using Gcc. Thanks
  4. pukiamak

    Calling function defined in DLL lib

    hello xwb i have tried using __declspec but still Visual Studio does not see it..it is giving me error saying unresolved external symbol..any idea?
  5. pukiamak

    Calling function defined in DLL lib

    Hello guys, How can I call the function defined in Dll in Visual Studio? I have tried using this macro #define DllImport __delspec(dllimport) DllImport FunctioName but visual studio say it's unresolved external symbol. I have tried to go to the project's setting and include the additional...
  6. pukiamak

    converting linux driver to win driver

    never mind guys..i figured the problem out. it seems i need to use extern instead of the include. Anyway I have question do you guuys know how to parse the command line argument. Suppose if I type -a 64, How can i take the 64? In Linux it is easy, we can use getopt() or optarg option. But how...
  7. pukiamak

    converting linux driver to win driver

    alright guys so I developed my code in Visual Studio..but i got this stupid error saying that error LNK2005: int a bla bla already defined in *.obj..I have two files of code that link together..any ideas?
  8. pukiamak

    converting linux driver to win driver

    what should i define WIN32 as? I am confused about this one.. what should i write in the header file? Thanks,
  9. pukiamak

    converting linux driver to win driver

    Hello Guys, I am trying to convert linux driver written by someone to win driver. The final code should be OS independent in other words it should know which enviroment it is running on. Should I declare #ifdef __WIN32 in the header file or it is built in? I am not too familiar with driver...
  10. pukiamak

    Split content of the cell

    Hello guys, I have excel rows with the following format Row 2:" 120 250 700" Row 3:" 120 250 700" I want to split the content of the cell into Column 1: 120 120 Column 1: 250 250 and so on the delimiter is the space. Thank you guys, Tony
  11. pukiamak

    Save each column into .text file

    Hello guys, I am wondering is there any way to save 600 columns of Excel data into one text file without disrupting the column format? Thank you, Tony
  12. pukiamak

    Save each column into .text file

    Hi guys, I am back with more question :) so now I have everything working but I have problem in saveas. I wish to save the 1st column as "new1.txt" 2nd column as "new2.txt" 3rd column as "new3.txt" and so on I can not figure out anyway to give different...
  13. pukiamak

    Save each column into .text file

    Hi guys, Does anyone know how to select particular column in Statistica using VB macros. I have 10 columns and I want select one column at a time, copy and paste into new Sheet. Thx, Tony
  14. pukiamak

    Save each column into .text file

    thanks for the reply. How can i count the filled column in my sheet? the reason is I do not have fixed amount of column everytime. Thanks, tony
  15. pukiamak

    Save each column into .text file

    Hello guys, I have 10 columns in Sheet 1. How can I save each column into .text file so that I have total of 10 different .text file? Thank you, tony
  16. pukiamak

    Hidden values in cell

    Hello Phv, Well, here is my code. Sub Macro1() Dim row As Integer Dim shtrow As Integer row = 2 Dim working_dog_str As String Dim working_paul_str As String Dim working_morlet_str As String Dim working_haub_str As String Dim working_daub_str As String Dim working_dog_str2 As String Dim...
  17. pukiamak

    Hidden values in cell

    its macro that i wrote. well, do you know how to make the replaced cell start from the leftmost of the cell? i try to use left indent but it does not work. thx, Tony
  18. pukiamak

    Hidden values in cell

    Hello PHV, Yeah it contains some space. Well actually i wrote replace macro in which it commpares the content of the cells in three sheets. after i run the macro, the replaced cell have spaces. Any idea? Thx, Tony
  19. pukiamak

    Hidden values in cell

    Hello SkipVought, Thanks for the reply. Before I did the replace, inside the cells are all string data. Here is what found after i press F2 key to the replaced cell. It blinks in 3rd space from the left not from the left most of the cell. This should have tell me something but I do not know. Do...
  20. pukiamak

    Hidden values in cell

    Hello guys, I have supposedly empty cell, where I have used Replace function to replace some of data. When i try to check if it's empty, its returning false. How do i check hidden values in cell? Thx, Tony

Part and Inventory Search

Back
Top