Search results for query: *

  1. M

    Persistent MainMenu Mnemonic

    Thanks guys!
  2. M

    Persistent MainMenu Mnemonic

    Hi Everyone! So here's the issue I'm having, I have added a MainMenu compinent to my form and gave it a proper mnemonic (text = &Testing Item). This allows the "T" to be underlined when a user hits the alt key. Swell... In most professional apps I see the underlined letters are shown with out...
  3. M

    Controlling NIS from VB Code

    Damn, my posts never get any lovin'. Are you all Tyson Fans or something :D
  4. M

    Controlling NIS from VB Code

    Greetings, Ok, I've got this application that FTPs files to a directory based on if the file has been updated or not. The entire transfer is typically around 11 MB. The issue is when I enable NIS on my machine the FTP app slows to a crawl and my processor gets pounded like Mike Tyson. When I...
  5. M

    Creating a stored procedure from VB.net and runnning it

    Hmm...thanks! I totally forgot about how SPs work, DOH! Anywho...currently I am using datasets & the sqlcommand class so I guess I'll leave that as it is until our replication is fully operational. Thanks! M.Cold
  6. M

    Creating a stored procedure from VB.net and runnning it

    Greetings Peoples, My current project takes one tab-delim text file and produces several tab-delim text files (that are logically related); these files are formatted in such a way that each record--in each file--can be sucked into their related sql table without any modifications via a related...
  7. M

    dataview.sorted to datatable issues

    Hmm...I gave up on correctly storing the sorted dataview into a datatable and just processed the dataview due to time constraints. Though, I'm still interested in finding a solution that doesn't involve sacrificing a virgin pig to the ADO gods. =o)
  8. M

    dataview.sorted to datatable issues

    Hola peoples and peoplettes, So, I've been reading up on this way to store a sorted dataview in a new datatable, the steps taken below seem to work right (in the datagrid), yet when I start stepping through the sorted datatable the Accts aren't in order. Can someone tell me what gives? Thx...
  9. M

    Program Ideas?

    Yeah... I'd skip the animation and saving/loading games. Try a more complex game like poker, or if you do implement blackjack make sure you incorporate all the possible moves players can make (i.e. Double down, insurance, etc). Also, you could pay notice to positions like floaters or starters...
  10. M

    Crystal Reports: Report Per Account?

    Cool, let me go try that. Thanks!
  11. M

    Crystal Reports: Report Per Account?

    To elaborate on this a bit... In the SQL Table I have the following accounts: -> JRSCH1 -> GRSCH1 -> TMSCH1 Each Account has related records: -> JRSCH1 o-> Record 1 -> GRSCH1 o-> Record 1 o-> Record 2 -> TMSCH1 o-> Record 1 o-> Record 2 o->...
  12. M

    Crystal Reports: Report Per Account?

    Greetings, Our company is starting to use Crystal Reports in conjunction with SQL. Basically, I have a table with three accounts (x,y,z) and each account is related to bunch of records specific to that account. I'm trying to create a summary report for each account (like endofthemonth.rpt) in...
  13. M

    VB.NET - Multi-colored listbox

    Umm, I couldn't exactly figure out how to get this to work but with some research and experimenting I found that the DataMode property on your listbox will need to be set to either OwnerDrawFixed or OwnerDrawVariable. <example> listBox1.DrawMode = DrawMode.OwnerDrawFixed </example> I think...
  14. M

    help with arrays

    Hello, Just curious, how are you connecting to the text file, can you display more of your code? Thx, M. Cold
  15. M

    tooltip not working on a checkbox control with enabled = false

    Well, I think this is kinda extreme...but extreme can be fun...like binge drinking or compulsive gambiling. So! You can take a picture of your form with the checkbox control disabled (checked or unchecked) using ctrl+print screen (or shift+print screen), next edit your image to look like a...
  16. M

    tooltip not working on a checkbox control with enabled = false

    Hello, Hmmm...I don't think so. I read in the .Net docs that "ToolTip text isn't shown for controls that are disabled." Sorry 'bout that, M. Cold
  17. M

    Inserting DataTable Contents into SQL Table

    Thanks! I'll give that a go _milo
  18. M

    URGENT : Sorting a DataSet

    Hmm...is it possible to grab the rows from the dataview and add them to a new datatable? I don't have time to test it, but as soon as I do I will. _milo
  19. M

    Inserting DataTable Contents into SQL Table

    Hmm...no help huh. Well fine. I'm gonna have to run thousands upon thousands of ad hoc queries from my loader applicatoin. How does that make you feel, hmm!?! How can you sleep at night knowing some poor shmoe is inserting hundreds of rows from a datatable row-by-row via INSERT statements! For...
  20. M

    Inserting DataTable Contents into SQL Table

    Greetings, I have a created a datatable and have populated it with all sorts of goodies, but now I can't figure out how to insert this datatable into an already existing sql table. Can someone explain how this might be done? I'm not sure what additional info may be needed but for starters: ->...
Back
Top