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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Kostarsus

  1. Kostarsus

    Show complete exception error

    Hi, if you run a program here are two modes you can start. The debug mode and the release mode. In the debug mode are informations about the running environment stored. These informations include the execution filename and the linenumber. In releasemode, these information is forperformance...
  2. Kostarsus

    Changing Tabs to different font sizes

    Hi, are you using WPF? In WPF you can assign each TabItem an individual FontSize. Youhave to add the Attribute FontSize to the TabItem-Tag in XAML. In forms, I do't any way toassign each tab a different size. cu Kostarsus
  3. Kostarsus

    Asynchronous Task with argument

    Hi, thanks for the hints. The variables of mp3Info and errors are only filled, by the tasks, so I don't think that there is a problem to use the variables. Bu you are right, I will establish a lock on these variables, when I add an item. In the first attempt, I tried a Parallel.Foreach loop...
  4. Kostarsus

    Asynchronous Task with argument

    Hello, I want to create asynchronous tasks in a foreach-loop. The algorythm takes the first six values of the foreach-loop correctly. But than the task factory sets the rest of the asynchonous tasks on Wait-Status. The foreach-loop continues, so that when the next asyncronous tasks start, the...
  5. Kostarsus

    Use Webservice with Access2003 and https

    Hello, I should write a webservice in .Net. The webservice is accessed by Access2003. I'd read, that it is possible to access a webservice when it uses the http-protocol. Is it possible to use https, too? In reguards Kostarsus
  6. Kostarsus

    Childform doesn't start maximized

    Thanks the order of the commands was the clue.
  7. Kostarsus

    Childform doesn't start maximized

    Hi all, I want to write an application, where the childform ist maximized at start. The MDI container starts maximized, when I call my code. If I remove the MDI relation, the form mapWindow starts maximized, but if I set the MDI container, the window starts in state normal. I use this code...
  8. Kostarsus

    Persist with ADO

    Well because I'm new to AO.net I tried the examples of a book, first. I don't create the database in program code. I only connect to the file. In the book, there was not discussion about ORM. The datasets are mapped by a *.xsd-file. I think this isn't the ORM mapping you'd talked about. I don't...
  9. Kostarsus

    Trouble with Excel Range syntax using variables

    Hi, there is a simpler way to declare an range, than to use the range with characters. Try this: Dim sheet As Worksheet Dim cell As Range Set sheet = ActiveSheet Set cell = sheet.Cells(1, 1) cell.Value = "1" I hope this will help you. cu Kostarsus
  10. Kostarsus

    Modify QAT

    QAT is the Quick Access Toolbar. In word you have two toolbars. One toolbar is the multifunction toolbar (I don't know the exact translation because I have the german version). To this toolbar you have access with the commandBar class. And there is another toolbar the QAT (Quick Access Toolbar)...
  11. Kostarsus

    Modify QAT

    Hi, I posted a thread by a wrong subject. So I think, many people wouldn't answer to the thread. I can't edit the subject of the thread, so I start a new thread. Here is the old thread. I write a c#-application which modifies some word-templates. Makros are imported in these modified...
  12. Kostarsus

    Persist with ADO

    Hello, I'm new to ADO.net, so I wrote some little methods for expermentations. I want to store data with a typed adapter in a filebase database (*.mdf-file). I used the wizards of VS 2010 Express to generate the adapters. If I run the methode in debug it looks good. The data is persisted. But...
  13. Kostarsus

    Modify QTA

    Hello, I write a c#-application which modifies some word-templates. Makros are imported in these modified templates. Now I want add an icon to the QTA. I searched in the web, but I only found the manualy way to modify the QTA. But how can I modify it programatic? Can you help, please? You can...
  14. Kostarsus

    Installed drivers in registry

    Hi, I want to read the installed drivers from the registry. Can anyone tell me the path in the registry where I can find them? Bye Kostarsus

Part and Inventory Search

Back
Top