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: kenbw
  • Order by date
  1. kenbw

    NAnt and Compact framework

    I am trying to automate my build and use Nant. I figured out to set the nant.settings.currentframework property to netcf-2.0 to use the 2.0 compact framework. However as soon as I do this I get an error about not being able to find System.Object. I did not include any references as it seems...
  2. kenbw

    Tab Control - Making Tab Pages Invisible

    Is the only way to make a tab page invisible to actually remove the tab? I've tried the enabled and hide properties but neither of these seem to work. Am I missing something else I should be using? Ken
  3. kenbw

    Comnand line vss

    Sean Thanks. Thats exactly what happened. All I had to do was set a property to say which database to use and I was fine. Ken
  4. kenbw

    Comnand line vss

    I am trying to use command line VSS to create a simple batch program that will let me do all my gets in the morning. The problem is that when I do the ss <command> I always get a User <myusername> not found. Even though I have done a set ssuser and also I can bring up the gui and see my user...
  5. kenbw

    Enumerated Types

    HTH, I figured out what I needed to do. HEre is the code I ended up using: Dim EmpType as Emp = Emp.Parse(GetType(Emp), "Director", True") Thanks for trying though. Ken
  6. kenbw

    Enumerated Types

    HTH, No I mean I want to take the string "Director" and figure out the enumerated type associated with that word. Basically I want to go backwards then most. Most of the times you can set a enumerated type by usign the int, but I want to use the string value because thats all I have. Ken
  7. kenbw

    Enumerated Types

    I have an enumerated type and I am trying to figure out how to Parse it so I get the integer from the string. For Examples Public Enum Emp Director = 1 Associate = 2 Grunt = 3 End Enum I want to be able to get at the number 1 by giving a string of Directory. I know I need to...
  8. kenbw

    CustomValidator

    Would you mind posting the code I can perhaps try it myself, and see if I can find a way? Ken
  9. kenbw

    CustomValidator

    LV, Have you thought about putting the validator on the check box instead? That way it will validate only when the box is checked and you can have it validate that textbox? Ken
  10. kenbw

    Backgrounds

    Is there a way to anchor the background of a page and just have the text scroll? I thought I've seen this before and would like to do it as I think it makes for a nicer presentation. Thanks for the help. Ken
  11. kenbw

    Where is the best place to start to learn .NET

    Gary, So much has changed that it might be best to try to &quot;forget&quot; what you know about old VB. When I find myself going back to older versions of VB now I'm kicking myself in the butt because of all the things that make it easier for me in the .Net version. There is so much good...
  12. kenbw

    Where is the best place to start to learn .NET

    Gary, There is a lot online if you want to do .Net programming. If you are specifically interested in web programming and are looking for tutorials then I'd try: http://www.asp.net/Tutorials/quickstart.aspx What exactly is your problem with the .Net framework. You should be able to...
  13. kenbw

    Drop Down Event Handling

    Does the event actually fire? In other words, whereever you are trying to catch the even does it get to this code. And if it does may we see it so perhaps we can tell you what's going wrong. Ken
  14. kenbw

    How can i call the variable out of the function

    Hlynur, Why not use the asp:image tag instead of the img tag. Your code would then look something like this: <script language=&quot;C#&quot; runat=&quot;Server&quot;> void Page_Load (object sender, System.EventArgs e) {     int picSize_width = 320; int picSize_Height = 215...
  15. kenbw

    Are Sessions OK?

    Rob, Unfortunately I think you have asked a questions that has as many answers as there are people on Tek-Tips. At my company we do use session variables for some things, but we try not to use them to much as they are still a memory hog. We have had not problems yet with session variables...
  16. kenbw

    Convert character to Ascii without ASC

    Everyone, Yes I'm sure using the ASC function that is part of the Visual Basic runtime environment left over from VB6 would be the easiest way to do this, but I don't want to use it. I want to find a better way, mainly because I want to be able to build using Nant and seem to be having...
  17. kenbw

    Asp Button inside of a datagrid

    That makes since, but how do you wire the button to the Handle_Grid_Event subrouting? I don't see the Handles portion? Ken
  18. kenbw

    Asp Button inside of a datagrid

    Everyone, I have a question. I have multiple datagrids within a datagrid and each of the inner datagrids needs to have an Asp Button. I can add the button and it looks good, but I cannot figure out how to wire them all up so that I can get an even fired when it posts back. Some help...
  19. kenbw

    WebServices Interface

    I need to add a new interface to a webservice I have already created and is in production and has other programs calling it. Can I have a new calling routine without have these other programs needing to update there wsdl document so that they won't break? Ken
  20. kenbw

    Merging Two Datatables

    I am trying to figure out how to Merge Two datatables that are the exact same table, but just from different pulls from the database. I do not want to have to change the stored procedure which currently accepts only one idea. I can get the tables back and have them available, but then what...

Part and Inventory Search

Back
Top