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...
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...
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...
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...
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...
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...
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
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...
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
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...
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...
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 =...
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...
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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.