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: *

  • Users: rstum2005
  • Content: Threads
  • Order by date
  1. rstum2005

    Double Inserts

    Just a quick question, I am trying to insert after another but I want them to be on the same rows. For Example, Insert into test (FILECODE) select filecode from tester Insert into test (KEYCODE) select keycode from tester When I do the above I get this... FILECODE KEYCODE a a a a B...
  2. rstum2005

    Mod

    Can anyone tell me what Im doing wrong here? Id like to take out every other '\n'. Also the "count" is the number of lines in the richtextbox. for (int i=0;i<=count;i++) { char t = '\n'; if (i % 2 == 0) { richTextBox1.Text.IndexOf(t,i,1); } } "Success consists of going from failure to...
  3. rstum2005

    Visual Studio's Mysterious Software?

    There are somtimes in which I will run into a message box not showing the text and today I created a test program with a listbox and added items to it and could not see them, yet I was definately adding them because the scroll bar would shrink. Whats going on? I sent my test program to another...
  4. rstum2005

    Case Statement

    If you were to want the ELSE [return value] to not show up at all what would you do? any tips? CASE [expression] WHEN [value | Boolean expression] THEN [return value] [ELSE [return value]] END "Success consists of going from failure to failure without loss of enthusiasm." Winston...
  5. rstum2005

    Remove Word Wrap

    I have a file with multiple lines and id like to remove every other lines '/n' for example change this- Firstname Lastname City State Address Homephone Workphone Josh Luis Deland OK 921 Golf Drive 7778888 9991234 to this- Firstname Lastname City State Address Homephone Workphone Josh Luis...
  6. rstum2005

    Create Table

    I have got a dts which runs and creates a table with a filename and a date stamp but it bombs everytime it goes to create another. If I run it 1 time it works fine. If I delete the xls file and try to run it again it wants me to go into the data pump and click "Create Table". any clues how to...
  7. rstum2005

    Automaticaly Click

    Is there a way to automatically click something?
  8. rstum2005

    using System.Runtime.InteropServices;

    I can use the sendkey class to generate automatic key strokes without user intervention but what about clicks? For example, If you want to goto a site and click on a button which isnt accessable through the tab & enter keys. Thanks
  9. rstum2005

    Rename CMD

    All I would like to do is , in the cmd prompt window "Rename" a file and place todays date in the file name. thanks.
  10. rstum2005

    dtsrun

    Ive created a stored procedure to do some joins and create a table in which I will use to produce a spreadsheet, on top of this I created a job to do this and for the second step ive added a xp_cmdshell 'dtsrun ect. script to run the DTS in which "should" create an excel spreadsheet onto my...
  11. rstum2005

    sysjobhistory

    Is there a way to restore sysjobhistory if you purge it?
  12. rstum2005

    xp_cmdshell

    I cannot see the program when it is executed, but I can see it running in the task manager? It there a different way I should go about running an executible through SQL? exec master.dbo.xp_cmdshell 'call c:\winamp.exe' Oct31 == Dec25
  13. rstum2005

    sp_start_job

    Hi. How would I go about finding out if a Job has finished by retrieving the Return Code Value 0 (success) or 1 (failure)? Thanks.
  14. rstum2005

    cmd.ExecuteNonQuery();

    I am executing an update command on a database and am wondering if this command finishes before it runs the next function or is it running the next function seconds after it starts the running the command. In other words I need the update command to finish before the next function starts...
  15. rstum2005

    Accessing another program?

    I have automated a program we use at work (program "A" we will call this) but if this program fails I want to make sure the next functions in my program (program "B") do not run. In program "A" there is a textbox that will display some words along with either the word "Finished" or "Error". Is...
  16. rstum2005

    Delete To Left of Character

    Im trying to delete 4 to the left of a certain character in a richTextBox along with the character. This is what im trying to work with... char[] trim = {')'}; int pos; while ((pos = this.richTextBox1.Text.IndexOfAny (trim)) >= 0) { this.richTextBox1.Text =...
  17. rstum2005

    Duplicates in a Listbox

    Im having problems removing dupes from a listbox. It seems to work well on smaller lists but for some reason on other lists it removes more than just dupes. if(dupes==false) { for (int i = 0; i < listBox1.Items.Count; i++) { for (int j = 0; j < listBox1.Items.Count; j++) { if...
  18. rstum2005

    Listbox Compare.

    Is there a way to do this in C#? http://www.tek-tips.com/viewthread.cfm?qid=634650
  19. rstum2005

    Richtextbox -&gt; ListBox

    I have a problem when I try to copy the richtextbox text to the items in a listbox. Is there a way to stop it from placing the entire richtextbox text as 1 item. below is an example of what I mean. http://img456.imageshack.us/img456/1223/listbox8al.png
  20. rstum2005

    Remove a Blank Line from Rich Text Box

    I tried doing a search but found nothing so far. I have a richtextbox and it looks like this. This RichTextBox Has Blank^ Lines

Part and Inventory Search

Back
Top