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 strongm 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. realace112

    Setting breakpoints freezes .net

    I am working on enhancing an application and am encountering this quite frequently and randomly: I set a breakpoint in the code. Run the app in debug mode, Press F10 to step through, and if I leave the the yellow marker at a line of code for more than 30 seconds, .NET just freezes. I cant...
  2. realace112

    Displaying a string with proper alignment

    Basically, I'm doing token processing. I insert a token on the page that maps to this script that I am writing. The script in fact is stored in the database and it runs client-side. The output of this script (the string) shows in place of where the token is when the form is opened. Changing it...
  3. realace112

    Displaying a string with proper alignment

    The contents of the string are going to be inserted into a Word document form. Nothing real fancy but the string needs to be aligned properly to be easier on the eyes. I thought about using tabs but the problem is that the data values need to be right justified.
  4. realace112

    Displaying a string with proper alignment

    I am getting the values by parsing through an xml collection. Here is the psuedocode XmlDOM = xmldoc.selectsinglenode(//some xml path) String = "" For each Node in XMLDOM String = String & "ID: " & Node.GetAttribute("ID") String = String & "Value: " & Node.GetAttribute("Value") String =...
  5. realace112

    Displaying a string with proper alignment

    Suppose I have a long character string like this: "ID: 4343 Value: $4,234 Method: App; ID: 23 Value: $350 Method: Val; ID: 232 Value: $250,000 Method: Seg;" the fields are all out of alignment. here is what I am trying to make it look like. "ID: 4343 Value: $4,234 Method: App; ID: 23...
  6. realace112

    Displaying a string with proper alignment

    Suppose I have a long character string like this: "ID: 4343 Value: $4,234 Method: App; ID: 23 Value: $350 Method: Val; ID: 232 Value: $250,000 Method: Seg;" the fields are all out of alignment. here is what I am trying to make it look like. "ID: 4343 Value: $4,234 Method: App; ID: 23...
  7. realace112

    Using Mod operation without integer rounding

    I'm trying to get the fraction part of a number. For example, if x = 115.5, I need 0.5 . What I tried using was a Mod operation to get the remainder however it converts and rounds the answer to an integer. Instead of getting 0.5, I get 1. Is there a way I can use Mod and get a decimal value...
  8. realace112

    Project Load Error

    I'm trying to open a database programming .vbp project file and I get an error during loading. The name of the project is APA.vbp and contains only one form, APA.frm. When I load APA.vbp I get an error saying APA.frm could not be loaded. I attempted to open up APA.frm but what comes up is a...

Part and Inventory Search

Back
Top