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 Wanet Telecoms Ltd 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: Casbah
  • Content: Threads
  • Order by date
  1. Casbah

    Arrow Keys with TabControl & TextBox

    Hi I'm noticing some really annoying behaviour with textboxes that are placed on a tab page within a tab control on a winform. When I press the left and right arrow keys whilst the text box is focuset rather than moving the caret left and right the tab page is changing on me. Is there anyway to...
  2. Casbah

    References Not Working

    Hi, maybe someone will have a better idea than me what's going on here. I have a project group containing many projects. When I try to compile or run I get the User-defined type not defined error. The class it is complaining about is in one of my other projects in the group. So going into...
  3. Casbah

    Using Javascript to update control values

    Hi, I have an asp.net 2.0 form. It is made up as follows It has a master page It has 2 custom controls. In one of the custom controls I have a read only text box I have a button here too that opens a popup calendar I want to populate the text box with the value from the calendar... My javascript...
  4. Casbah

    Forms jump and jitter

    Hi guys, I am developing a Windows Forms application in VB.net 2005, but I have also seen this problem with 2003. Basically its an mdi application and when I open and close different forms I am getting serious amounts of jumping around while the form draws itself to the screen. I have done...
  5. Casbah

    TreeView help?

    Hi, I'm using a tree view in a 2005 application. I need a way of displaying the treeview but making it read only. So when a user is looking at the form the treeview displays and I can programmatically select the correct node. Ive tried using the .Enabled property but when you do this the...
  6. Casbah

    DataGridView in 2005

    Hi, Im having a bit of trouble inheriting forms that contain a datagridview. Basically although I set the data grid view's Modifier's to public, and locked to false in the base form. When I create a new form that inherits from this the DataGridView is coming up as locked and I cant change any of...
  7. Casbah

    Checkboxes within user controls, within a form!

    Hi, I'm having a bit of trouble with a user control I have made. Basically each instance of this control contains a checkbox and a label etc... call it Option Then I have a second control that is made up of a group of of these controls... call it OptionHolder So in my form I add an OptionHolder...
  8. Casbah

    Searching string fields. OPENXML

    On a site I have a search box. Currently the way this works is the user enters a value and I append % to the start and end of the value and search against the appropriate columns. However this sort of basic search will miss a lot of values. For example a search of "term1 and term2" will miss a...
  9. Casbah

    Using XML and a Word Template to create invoices

    I am writing a program that generates and prints invoices automatically using MS Word, when a new sale has been complete. when an order is complete an xml file is created and stored creating all the details needed for the invoice. is there a way to get word to read and parse this and add the...
  10. Casbah

    sql server smallmoney conversion to c# type

    i have a sql server DB that uses the type "smallmoney" how can i convert this to a c# type, i have tried SqlMoney balanceDue = (SqlMoney)accountSet1.Tables["Account"].Rows[0]["Balance_Due"]; and double balanceDue = (double)accountSet1.Tables["Account"].Rows[0]["Balance_Due"]; but both of...
  11. Casbah

    Strange graphpics behaviour...

    I have written a program to demonstrate my solution to the UnisexBathroom concurrency program. My GUI has 5 areas, a counter which works fine and counts down the number of males and females waiting to use the bathroom. An input area for the user to enter how many males and females will initially...
  12. Casbah

    Passwords

    Im writing a simple java program that runs in the command window. At the beginning the user is asked to enter a username and password, is there a way to turn echo off for the password or make stars or something come up so that the password doesnt appear in the command window? Thanks, Conor
  13. Casbah

    XP - 2K Home Network

    Hey, Im wondering if anyone has successfully set up a home network between a W2K machine and an XP machine? If so, how? I ran the wizard in XP which created a "home" network for me and added my laptop. However I have not been able to add the W2K desktop to the network. I can access the shared...
  14. Casbah

    Excel Macro - FormulaR1C1

    ActiveCell.FormulaR1C1 = "=((RC[-1])/R19C2)*100" What I want to do is change this formula so that the "R19" isnt hard coded. I already have a variable called rowsnum which contains the value i want to use instead. ActiveCell.FormulaR1C1 = "=((RC[-1])/R[rowsnum]C2)*100" wont work for me, is it...
  15. Casbah

    Mozilla Alignment Issues

    Is there a standard format to satusfy all browsers? If you look at this site www.irishconsumer.ie it works fine in everything except Mozilla where the alignment is all screwed up
  16. Casbah

    Splash Screen At startu of word

    is there any way to disable this? or is there some setting somewhere that i could use to make word always open as a minimized screen. im using word 2003 and windows xp thanks Conor
  17. Casbah

    Running Word 2K3 in the background

    I have a program that makes a call to Word, opens it, does some stuff, closes it all automatically. In Word97 everything gets performed in the background and this is wat i want. Trouble is I need to run this on Word 2K3 too and this brings Word to the fore and makes it visible to the user. I...
  18. Casbah

    Mail Merge in WORD 97 vs. 2K & 2K3

    Apparently in word 97 the only acceptable delimiters in a header source and data source are comma and the tab char. However I have documents created with later versions of word that use the tilda char ~. Is there any way to set the default for Word 97 to accept ~ or must i deal with prompts...
  19. Casbah

    .exe files

    if i create e .exe program file using c++ and it works on one computer...why doesnt it work when i transfer it to another?
  20. Casbah

    Using ShellExecute

    What must I #include in my .cpp code to use ShellExecute? And do I need to link Shell32.lib? or anything like that? If so how do I do that? Thanks

Part and Inventory Search

Back
Top