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 SkipVought 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. bajdev

    SMS Number & SMS Gateway

    Good point. You might be right. I'm not sure, I'm still looking into it.
  2. bajdev

    SMS Number & SMS Gateway

    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...
  3. bajdev

    Store Font in the registry

    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...
  4. bajdev

    passing a string to function!

    Interesting. Glad you figured it out! Thanks for the explanation too.
  5. bajdev

    passing a string to function!

    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...
  6. bajdev

    Tooltip on a Usercontrol shows up behind the form

    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...
  7. bajdev

    Tooltip on a Usercontrol shows up behind the form

    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...
  8. bajdev

    get the contents for a datatable into an array

    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...
  9. bajdev

    get the contents for a datatable into an array

    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...
  10. bajdev

    get the contents for a datatable into an array

    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...
  11. bajdev

    More DateTime 'Fun'

    Can you set it to DBNull.Value? System.DBNull is the class, but DBNull.Value is the actual value. bjordan
  12. bajdev

    WM_DRAWCLIPBOARD Clipboard monitor call question

    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...
  13. bajdev

    WM_DRAWCLIPBOARD Clipboard monitor call question

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

Part and Inventory Search

Back
Top