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

    ICON on laptop desktop not recognizeable (See Attachment Pic)

    An icon only shows up on the desktop of a Laptop when docked. The attached pictures shows the icon on one of the two dual monitors when docked. Take the laptop off the docking station and the icon disappears from the desktop. The laptop is a T420 Lenovo with Windows 7 and docked in a T420...
  2. briprogram

    The use of % and / Arithmatic Operators

    Hung up on this... Maybe not seeing it, I don't know. This Java Loop: for ( int count = 0; count < deck.length; count++ ) deck[ count ] = new Card( faces[ count % 13 ], suits[ count / 13 ] ); In a book that goes with this code above. Pg 310 Dietel, Java How to...
  3. briprogram

    If condition statement &quot; ';' expected syntax error &quot;

    Working on piece of code for awhile but do not see why I am getting the ';' expected, syntax error for the if statement. package squaresdialog; import javax.swing.JOptionPane; public class Main { public static void main(String[] args) { String amount =...
  4. briprogram

    Streamwriter writes to text file..start writing at end of file

    Hi I have information from textboxes that are being placed into a textfile from a streamwriter but I want it to write to the end of the file, like add on to what is already there. How can I do that? Private Sub btnSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)...
  5. briprogram

    Make lines in picture box

    Just an amateur programmer here. Trying to on mousemove event to draw a picture with the mouse. Nothing fancy. See where the question marks are in the code? That is where I need to draw in the picBox. [Private Sub picBox_MouseDown(ByVal sender As Object, ByVal e As...
  6. briprogram

    For Loop does not Display Text for each Iteration

    I want the For Loop to display an answer on each line of the textbox but it never happens. Only the final answer shows up in the text box. What am I doing wrong? Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click 'Dim counter As...
  7. briprogram

    document.write

    I am coding in XHTML 1.0 strict format. The code below-> <script type="text/javascript"> document.write("<h1>Brian's Supermarket Order Form</h1>") </script> While coding in Dreamweaver CS3 keeps giving me this validation response. The code is focusing on the < in the </h1> tag...
  8. briprogram

    Reading Text File into Structure Array

    I am trying to read a text file which has been read by a StreamReader and get the info into a Structure Array. There is a catch. The text file has no delimted characters and has a Carriage Return/Line Feed at the end of each line. The first line is Someones Name, The second line is the...
  9. briprogram

    Format Function in VB 2005

    I am sending a string value to a function and using the value in this Format Function within the called function DollarAmount = Format(DollarAmount, "000000.00") During debug I notice it changes DollarAmount variable for instance from "120.00" to "000000.00" instead of "000120.00" like it...
  10. briprogram

    Decimal.TryParse not working right

    By looking at the following code can anyone tell me why 5 typed into txtNorthCurrent.txt returns true and 5.0 returns false? Dim isconverted As Boolean Dim currentSalesNorth As Decimal isconverted = Decimal.TryParse(txtNorthCurrent.Text, NumberStyles.AllowCurrencySymbol...
  11. briprogram

    Excel, Word closes when pasting into Outlook 2003

    There is a user who is using Office 2003. When selecting anything on an Excel worksheet including just a cell with text. The user then opens up a new email or reply email and the Excel will just close. It literally just closes. It happens everytime. The user can take text in a word document...
  12. briprogram

    File does not exit: Mail.Box

    A user is in Lotus Notes pointing to a Server working on work requests. He is making changes on the work request and what is supposed to happen is that changes that are made are supposed to be emailed out to users that are listed in the work request as soon as the user hits the save button...
  13. briprogram

    Excel Numbers One Cell to individual cells

    I have these numbers pasted from another source into one cell 45 66 83 71 76 64 59 59 76 82 80 81 85 77 82 90 87 72 79 69 83 71 87 69 81 76 96 83 67 94 101 94 89 94 73 99 93 85 83 80 78 80 85 83 84 74 81 70 65 89 70 80 84 77 65 46 80 70 75 45 101 71 109 73 73 80 72 81 63 74 How do I without...
  14. briprogram

    Adobe Standard Print Preview

    A user has an access document opened up in access. Adobe Standard is installed. The user goes to File / Print then chooses Printer name of Adobe PDF then click OK What happens next the user does not want to happen. A save dialog window opens. The machine she used to have before reimage...
  15. briprogram

    What is &quot;&quot; equal to? Nothing?

    In the following example the table of column converted.ndcnum is checked for a value. In one particular row of data in the table just this value is missing which causes the fputs not to write to the text file any further in the do while loop. lc_lastndc = ALLTRIM(converted.ndcnum) equal to ""...
  16. briprogram

    Parse Text file extract to table

    I am new to Foxpro and I am using VFP7. I want to extract tab delimited data all with code from a text file that looks like the following and move it into a new table. First I dont need line numbers 1- 10. Line 11 and 12 will be column headings. After that is the days of the month which I want...
  17. briprogram

    Text Box no Editing

    Have a text box which is auto populated at runtime with information. Would like it so that no one can place a cursor inside the text box and change the information. Viewable but not editable. What ways in properties or code can this be done. Thanks [smile]
  18. briprogram

    Unable to read project

    When opening a solution with a .sln extension. VStudio 2000 opens and the project starts to open then every file in the solution .vbproj, vdproj will not open. Each file I get the message similar to Unable to read the project nameoffile.vbproj. The system cannot find the specified path. How...
  19. briprogram

    Text File shown on Web Site

    I am using Frontpage 2000. I am adding a link to a text file which gets updated daily. This text file is located on the remote server. I want to add a link to my web page to view this text file. What are the easiest ways to do this. Thanks Brian
  20. briprogram

    Printing out Table Fields only

    Is there a way to print just the fields from a Table and none of the information in the Table? What would be the code that would be used? Thanks

Part and Inventory Search

Back
Top