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: *

  1. Casbah

    Arrow Keys with TabControl & TextBox

    Simply running the application and clicking into the text box. I am then monitoring the keydown event... When I press arrow up or arrow down it fires and works ok. When I press left or right it doesnt fire but rather the tabcontrol switches tabs.
  2. 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...
  3. 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...
  4. 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...
  5. Casbah

    Forms jump and jitter

    Hi thanks for your reply. Some of the forms have a lot of controls, others only 5 or 6. I have tried the suspendlayout and resumelayout before and it made no difference at all. I dont override the paint event at all. I have thought maybe it's something to do with my machine, but this is a...
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. 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...
  12. 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...
  13. Casbah

    Strange graphpics behaviour...

    Im running from the command line and from an executable jar file with the same results. i wrote the GUI by hand which could be my problem. but it does seem like it needs time to refresh.
  14. 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...
  15. 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
  16. Casbah

    XP - 2K Home Network

    Thanks a million people, Jmaddone you were closest, I had to rename the workgroup network on my win2K machine to the same as the XP one and then create identical logins for both. Working something beautiful now. Thanks everyone Conor
  17. 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...
  18. Casbah

    Excel Macro - FormulaR1C1

    Sweet, thanks
  19. 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...
  20. 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

Part and Inventory Search

Back
Top