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

    Vbscript Outlook email

    The following is a script I have written to text message me a text files contents. My problem is that my phone doesn't recognize the vbcrlf. Can anyone pleas help. Dim Filename Dim FSO Dim TextStream Dim file dim SafeItem, oItem Const ForReading = 1, ForWriting = 2, ForAppending = 3 Const...
  2. Brenton

    Execute Code From edit box at runtime

    I have an edit box that I am trying to put code in at runtime. I am running into the following. edit1.middlclick event Public EditStr EditStr = this.value edit1.middleClick event strtofile(EditStr, &quot;c:\program.prg&quot; this.value = EditStr do c:\program.prg <-- this is where I get...
  3. Brenton

    Change current rows back color

    I need to change the current rows backcolor in my grid, but I only need to change 3 feilds backcolor not the whole row. Can someone help?
  4. Brenton

    Adding a Combobox to a grid

    I have searched through the archives and FAQ's and found some help that left me more confused than anything. I have a form with a grid on it. I want to change one of the columns from a textbox to a combo box, and fill the box with a certain feild in a table. So far I have had no luck, but...
  5. Brenton

    EOF encounter help

    I am searching through a table looking for jobs that match my discription, and I keep getting a End of file encounter error when I use skip. How can I get around this? workcenter = thisform.text1.Value SELECT 1 USE c:\vista\c11a SELECT 2 USE c:\vista\jjops SELECT 1 DO WHILE ! EOF(1) wrkce...
  6. Brenton

    Close a single table

    I have 3 tables open, but want to close just one of them, how do I do this? Brenton Pryer
  7. Brenton

    Shell32.DLL help

    I am trying to open a file through an API callout, and i am getting errors. Can someone help? Is there an easier way? Public Declare Function ShellExecute Lib &quot;shell32.dll&quot; Alias &quot;ShellExecuteA&quot; (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String...
  8. Brenton

    System Tray help

    How do you go about refreshing the system tray? I have an icon in the system tray, and when my app closes the icon stays there until I drag my mouse over it. Any tips or hints?
  9. Brenton

    PictureBox Graphics Help

    I am using a picturebox to set up a grid from -50 to 50. I use the following code to create the grid, but my vertical line 0 an the X axis is getting drawn over by the rest of my lines. can anyone please help For I = -50 To 50 Step 2 If I = 0 Then Picture1.ForeColor = &H80000012 If I <> 0...
  10. Brenton

    Graphics Help

    I am new to VB Graphics. I just bought the book VB Graphics programming. I am trying to set a picture box scale to 1 inch, I want a grid spacing of 1 inch, and have X Y zero at Picture box center. Is there a website someone can refer me to, or can anyone e lend me some of there expertise...
  11. Brenton

    Graphics grid question

    How can I set a coordinate system in a picturebox. For example: 0,0,0 would be center of picturebox.
  12. Brenton

    2 dimensional array help

    I have an array Pt(7,2). How can I make that one dimensional?
  13. Brenton

    Global declaration

    I have declared 2 objects globaly in my module. Global RhinoScript As Object Global Rhino As Object Sub Main() Set RhinoScript = CreateObject(&quot;Rhino3.Application&quot;) If RhinoScript.Visible = False Then MsgBox &quot;Rhino must be running to run this plug-in&quot;, vbCritical...
  14. Brenton

    Creating a stand alone toolbar

    Is it possible to create a stand alone toolbar? No form, just a toolbar. Any help would be appreciated. Brent Pryer
  15. Brenton

    Passing Strings Between Forms

    my problem is probably a simple fix I have 2 forms inside of FrmMain(MDI Form) Form1 & Form2 I have a RichTextBox in each Form I am trying to get the selected text from form1.richtextbox to form2.richtextbox my current code is very simple Sub form2_Initialize richtextbox.text =...
  16. Brenton

    Function help

    I need help with this function. I am trying to find certain string and change the forcolor. I was given this function to try, and i need someone to explain it better. Private Function FindIt(ByRef Box As RichTextBox, ByVal Srch As String, ByVal sColor As System.Drawing.Color, Optional ByVal...
  17. Brenton

    Changing Text color only on Certain Characters

    I am creating a notepad type application, and I need to change the foreground color of certain words. for example I would like to change all G00 to blue and all G01 to Pink, and so on. Can some one help. Thank you Brent Pryer
  18. Brenton

    COM4 ready to read

    How Can I get my Com4 ready to read. I am trying to hook a digitizer to my computer, so I need to hook it in using a com port. Can anyone help me. Brent

Part and Inventory Search

Back
Top