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

    Word 2010: Issue with text on image not appearing after emailing doc

    Hi everyone, Currently, I have a Word document in 2010. Within the document is a background image with a floating text box with text. In Word 2003, after emailing the document from Word using the Outlook mail recipient function, the recipient would have no problems seeing the text on the...
  2. drrep

    Excel - converting time to actual hours

    Hi, Ok, I have a spreadsheet that has a cell that has a time entry (ex. 150:42:19) but in the formula bar, it's displayed as 06/01/2005 6:42:19 AM). I want to convert that entry to actual hours. I tried using =(A1-INT(A1))*24 where A1 is the entry but to no avail. I had gotten that off...
  3. drrep

    Want to catch before Assertion Failure occurs...

    Well, I hope my topic made sense. I have a program that opens files of some type and of a certain format (data is structured in a certain format) to be used in my program. These files contain simple text data. Now, if I try to open a corrupt file, it will crash (Assertion Failure) because the...
  4. drrep

    Parsing a Cstring?

    Hi everyone, Anyone know how to parse a Cstring given this data is from a file delimited with ';'? In other words, I am using the Cstdiofile class and a ReadString for each line in my file. I wanna be able to cut the line in appropriate pieces and assign it to the appropriate variables. I...
  5. drrep

    Using wildcard * in a combobox on form to generate report

    Hi, I have a combo box in my form. Now I have 5 values in there including a value called ALL. I want that ALL to display all the data in a table, and not filtered by a specific value. (like saying SELECT * from table) Problem is that when I select ALL from the combobox, I change the value...
  6. drrep

    Loading bitmaps into an array of int

    Hi, How do I go about loading the pixel values of a bitmap image into an array declared in C++? Thanks
  7. drrep

    Combining multiple records into one report....help!!

    Hi, Ok, so here is the situation. I got a case where I have a table which has employee information along with an employee rating. Each rating is flagged either three ways with the use of a seperate field in the table: dinosaur, previous and current. The rating field is of type text. I...
  8. drrep

    Combining multiple records into one report....help!!

    Hi, Ok, so here is the situation. I got a case where I have a table which has employee information along with an employee rating. Each rating is flagged either three ways with the use of a seperate field in the table: dinosaur, previous and current. The rating field is of type text. I...
  9. drrep

    Printing Legal sized report but don't want blank pages!!!

    Hi everyone, I want to print my reports on legal sized paper. I changed the settings in page setup but now the problem is that since MS Access notices that the fields/labels on the report are exceeded the allowed width, blank pages are getting printed out If I reduce the width, I will lose my...
  10. drrep

    Want to update image in imagebox at click of a button

    Hi everyone, I want to have a button that will, when pressed, ask for a filename of an image (bmp file) and then update the image box that I have on my form thereafter. I know I can use an inputbox to get the filename but how do I update the imagebox after that with the new filename?
  11. drrep

    Wanting to print a form in landscape

    Hi, I want to allow users to print a certain form in landscape format. Problem is that I do not want to change that option through page setup as it will then become default for every other object to be printed. I tried using PrtDevMode but it didn't seem to work. Any suggestions other than...
  12. drrep

    No data displayed if Memo field is blank

    Hi, I have created a keyword search form. In this, I allow users to enter keywords and dates to bring up data in a report Problem is that say if the user enters nothing as a keyword for a Memo field, eventhough I added the following in that memo field's criteria: Like "*" &...
  13. drrep

    Want to store/print binary values with 8 characters (bits)

    Hello everyone, I am using the following code to transfer bytes to binary: char szByte[9]; int i; BYTE bArr[400]; // Read Bytes into array here for (i=0; i < 400; i++) { cout << &quot;Byte #&quot; << itoa(i, szByte, 10) << &quot;: &quot;; cout << itoa(bArr[i], szByte, 2) << endl; }...
  14. drrep

    Problems declaring a BYTE array

    Hi, I am trying to declare an array of bytes but am having compiling errors. BYTE array[100] Is there a header file of some sort I need to include?
  15. drrep

    Transferring contents of array of 8-bit bitsets to an array of bool

    Hi, I am handling bits with the STL bitset class. My code sets up an array of 8-bit bitsets, the byte data coming from a file. The following is the code I am using....now, how can I get the contents of my array of 8-bit bitsets into an array of boolean since the content is either 0 or 1...
  16. drrep

    Reading a binary file and putting the data into an array

    Hi everyone, Ok, I have a binary file which has 400 lines and contains 50 bytes per line. Problem is of course, the file is in binary and when I open it in a regular text editor, it's all garbage that's displayed. Apparently, that's because, from what I understand, the data is compressed...
  17. drrep

    Reading a binary file and putting the data into an array

    Hi everyone, Ok, I have a binary file which has 400 lines and contains 50 bytes per line. Problem is of course, the file is in binary and when I open it in a regular text editor, it's all garbage that's displayed. Apparently, that's because, from what I understand, the data is compressed...
  18. drrep

    No headers wanted when data exhausted

    Hi, I have a report with a few subreports in it. When the main report is displayed, it looks fine on the first page. On the second page, since all the data has already been exhausted and displayed on the first page, only the headers are there and then the subreports appear but it looks odd...
  19. drrep

    Fputs and boolean outputting

    Hi, Just wanted to know if there was a way to use fputs to output a boolean value (1 or 0) to a file. I seem to be having trouble with that Thanks in advance
  20. drrep

    Getting differences between two dates in years AND months

    Hi everyone, Well, I know how to use the DateDiff() function but now, if I want to get the leftover months from the diffenrence between two dates on top of getting the difference in years, how do I approach it? Thanks in advance

Part and Inventory Search

Back
Top