Search results for query: *

  1. Arkette

    Which language I can depend on

    Presumably you're worried that you'll spend weeks/months learning vb.net and then it will be superceded by something new and you will have wasted your time. Well to a certain extent, that's just life at the edge in the epoch -technologica. I can't even begin to tell you how much redundant...
  2. Arkette

    Calculate typing speed. How?

    Who ever heard of expressing typing speeds in characters per minute. Every typist I've ever employed has words per minute on his/her resume, charcters per minute would be meaningless.
  3. Arkette

    form display delay

    Are these checkboxes created at design time or run time?
  4. Arkette

    What's the deal with Panel's and controls?

    Yes, actually I had completly missed that; my apologies.
  5. Arkette

    What's the deal with Panel's and controls?

    Sounds to me as if your using a flowlayout panel rather than a simple panel control.
  6. Arkette

    Multiline textboxes and loops.

    For lp = x to y textbox1.AppendText(environment.NewLine) textbox1.AppendText("AnnadaLine uvtex") Next
  7. Arkette

    Control array

    One possible approach would be to: Place all your textboxes in a panel and then loop through the panels controls collection with a for each loop.
  8. Arkette

    Reading 4 bits

    Conversly you could just construct a 4bit (nibble) bit mask for each half of the byte.
  9. Arkette

    HELP:Moving directories/files across domains

    A volume is any logical data storage entity such as a partition on a hard disk. If directory.move is not working try directory.copy to see if you get the same error. If the Target volume is on another computer on a network then you may have to edit the application permissions in the framework...
  10. Arkette

    loading an application deployed on the server from the client computers

    Drive letter mapping should work, but may be somewhat volatile. That is to say that you cant always guarantee that the drive letter will always stay the same. A better solution would be to use a fully qualified URN; <example> \\TheServerName\TheShareName\thefile.ext </example>
  11. Arkette

    loading an application deployed on the server from the client computers

    if the referenced resource file is to remain on the server, then you will need to either use a relative network URN or give the client based software the ability to find that file across the network. The other possible scenario would be, if you were to deploy a local copy of the resource file to...
  12. Arkette

    loading an application deployed on the server from the client computers

    Does your application reference any files dll's resources that are on the server by using a fully qualified abolute refernce; for example c:\options.inf If so this might explain your problem.
  13. Arkette

    New line character in Compact Framework

    if the 'ABC DEF' is being returned as a single piece of text then you need to parce the text into an array using the split function and then iterate through the array writing each piece out one line at a time.
  14. Arkette

    New line character in Compact Framework

    vbCrLf makes no sense in this instance. Use sw.writeline not sw.write
  15. Arkette

    turning off tabbing for labels?

    It has been my experience that tabstop for labels is set false by default. Interesting that you presumably have not found that to be the case.
  16. Arkette

    DGV addingnew but no data

    Actually I have solved this problem. Strangely it was necessary to call endedit on the DGV and the binding source in sequence. Calling endedit on the bindingsource only for some reason doesn't commit any pending edit on the DGV.
  17. Arkette

    My.Resources.GetObject doesn't work in this case

    Have you set your resource file to always copy to output folder?
  18. Arkette

    DGV addingnew but no data

    I have a strange little problem with a bound datgridview. The DGV is on an unbound form but is itself bound to a bindingsource which is in turn bound to a bindinglist(of T) which encapsulates a list of business objects (with me so far.) Ok so when the user clicks an empty row in the DGV the...
  19. Arkette

    Vb.Net Tab Control

    This is not exactly the solution you want but may be a suitable workaround. Faced with a similar problem, I detected the tabpage changed event and then reset selectedtabpage to the initial tabpage. It doesn't make it invisible, but it does make it impossible for the user to navigate to it until...
  20. Arkette

    .INI Files??

    Since you are using VS2005 check out the new 'My.Settings' namespace.
Back
Top