I have a couple questions regarding SMS and ASP.NET.
Does anyone have any information on how you get an SMS number (other then a cell phone) that user's can send SMS too. I'm looking to do something similar to Google's SMS service where you can text something to a number e.g. 12345 (google is...
Hey Guys,
I messed with this the other night, but ran out of time before I resolved it.
Does anyone have any advice on storing a user's font setting in the registry? I kept getting casting issues when I'd try to read it out. I'll check my code when I get home and post some code examples of...
It's hard for me to troubleshoot this problem without seeing your actual C# code or the SQL it's executing.
If I had to guess though I'd bet it's a problem with the SQL statement and not your C# code. It sounds like the C# code runs fine but SQL doesn't return the data that you are expecting it...
Thanks for your response.
Glancing on MSDN it doesn't look like a tooltop object has a parent property.
I see where you are going with it though. You might have me on the right track. I hope so. I'll try anything at this point.
I'm stumped and this is driving me crazy.
I'll try this, this...
I have a custom usercontrol that holds several labels and buttons. My usercontrol also contains a tooltip control. If I can set tooltips for the buttons on my usercontrol without any trouble.
The problem occurs when I place my usercontrol on a form and mouse over a button. The tooltips show...
Another approach would be to have your StoredProcedure return a comma separated string of OrderID's and split the returned string into an array.
Using:
String.Split();
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemstringclasssplittopic.asp
Just a...
Sorry I just reread your question and it cleared a few things up.
First off you'll need to get the total count of order id's that will be in the array before you declare it.
Example:
-------------
// After the line
dt = ds.Tables[0];
// Declare your array
int [] orders = new int...
Do you need the fields from the datatable in an array or the data from each row? Because if you need the data from the rows it's going to be a multi dimensional array.
If it is the data from each row in the datatable you may want to look at the ItemArray property of the DataRow...
To prevent it from firing is very obscure since there's a simple way:" ... Wow isn't that the truth! I was making the problem a lot harder then it needed to be.
I have no idea why that never crossed my mind. It was late and I had been coding for a long time so it was all a blur. That's the...
I have an application written in C# that monitors any clipboard activity. Everything works great as far as registering the application as a clipboardviewer, calling an event when a passing the clipboard chain on and then unregistering.
In a nutshell the application keeps the last 5 items that...
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.