Software Development Network Logo
  • Visual Basic
  • .NET Development
  • SharePoint Products
  • Windows Forms
  • Visual Studio
  • Audio and Video
  • Microsoft ISV
  • Visual C#
  • Visual FoxPro
  • Game Technologies
  • SQL Server
  • Windows Vista
  • Visual C++
  • IE Development
  • Smart Devicet

Software Development Network >> Kryor's Q&A profile

Kryor

Member List

Curious Person
Xi0N
Dave_L
Mr. Howe
clint 2
ShyamD
Stéphane Beauchemin
jam281
Jacobgong
wiscon
raj.ramesh
mattdawg
cka11
maliger
Andrew Buyan
MarcoSartore
Sam_res03
Joy Conner
SimonS_
bashok
Only Title

Kryor's Q&A profile

  • Visual C# How to insert a paragraph?

    I'm very new to VS.NET C#. I'm creating a simple app. to launch a flash tutorial. In the form, how do I insert a paragraphc explaining what this app. is going to be I tried the Lable control but it does not give me multi-line option. What do I need to use Thanks! maybe you should set the autosize = true on the label if you have not already. you may also maybe wish to use a multiline textbox, setting it to readonly does this help ...Show All

  • Visual Basic Multiple Checkboxes, 1 Varible

    Is it possible to have mutliple checkboxes (two or three) change the same variable, but when one of them is set to True, all change to True You also can create a form-level property like that: Private Property MyGroupChecked() As Boolean    Get        Return CheckBox1.Checked    End Get    Set ( ByVal  Value As Boolean )        CheckBox1.Checked = Value        CheckBox2.Checked = Value        ' and so on ...    End Set End Property And then, write this event handler: Private Sub MyGroupHandler( ByVal sender As Object ...Show All

  • SQL Server olap and hierarchy problem

    Hi. This is an OLAP question. I have a dimension which is a father-son dimension. I built the cube in analysis server. In the analysis browser I can see the dimension fine, I hant my reporting services report to show that dimension. The problem is that the report won't show me that dimension in hierarchy tree (even if I check drill down) but flatten it down. Does some one know if report service can handle those kind of reports Thanks. Hi Teo, Thanks for your replay, Its hard to find help and support for Olap and for Olap and SSRS on the net. Its very disappointing to hear that RS does not support OLAP (and for me, if it can't handle parent-child dimension it can't handle olap). Looks like we will have to ...Show All

  • .NET Development Registering System.EnterpriseServices.dll trouble

    I am unsure if this is the proper place to post this. My apologies if I am in the wrong place but... While trying to run a new program, I discovered that I needed the .NET framework v2, which I then downloaded. Everytime I attempted to install it would stop at Registering System.EnterpriseServices.dll. The system wouldn't hang. I got no error messages. It just wouldn't proceed. After waiting about 1/2 hour, I would have to use Windows Task Manager to stop the program. Help! Bob Hesch Ps. I am an average home user with good Windows skills but without any programming experience. I have a Compaq Presario 5000 - Athlon 1Ghz processor running XP Home, 640 MB of DDR RAM. ...Show All

  • Visual Studio Express Editions database update

    what do i write to update a database and save the data back to the file i opened. the main problem that i posted was due to a corupt file, but the more i read on databases to use the code; Me.RecordsTableAdapter.Update(MusicDataSet2.records) is no good on its own, i am not undertsanding what is required to update my records. if textbox1 =fred textbox 2 = harry textbox 3 = bob what i want to do is update the feilds that they contain fred,harry,bob. what is needed im just not seeing so any help will be good thanks ...Show All

  • Software Development for Windows Vista How to get ActivityExecutionContext from a CodeActivity or any CallExternalMethodActivity?

    For any derived Activity that can override Execute() method, you can get ActivityExecutionContext object of current activity, but how do I get ActivityExecutionContext for the ones that can not or don't want to override Execute() I try to pass/use ActivityExecutionContextManager or ActivityExecutionContext f rom parent activity, but got runtime error "Cannot access a disposed object". They must be an easy way to access ActivityExecutionContext given a reference of acitvity object, could anybody please tell me how Thanks. Have you looked at using wca.exe, the workflow communication activity generator, to generate custom communication activities that inherit from CallExternalMethodActivity a ...Show All

  • Software Development for Windows Vista Significance of Unlock flag in 'WorkflowPersistenceService' ??

    Hi, I'm currently analysing the use of 'unlock' flag provided in the 'WorkflowPersistenceService' class.As I would like to write a 'Custom' Persistence service. protected override void SaveWorkflowInstanceState(System.Workflow.ComponentModel. Activity rootActivity, bool unlock ) Observations: 1)I always see that unlock is set to true whenever the above method is called to persist an instance. 2)Also the SQL stored proc's provided in the labs handle two cases for 'Unlocked' =0 &'Unlocked'=1...Why is it so 3)As far as my understanding goes this flag means that an instance is being unloaded from the memory and is hence unlocked,so the flag is always set as 'true'....with this assumption why are the procedu ...Show All

  • Visual C++ Order of SetCapture and ReleaseCapture

    Hi All, I've written a custom button which does some special functionality. But from this button, I'm not getting BN_CLICKED event to the parent window. What I could find out is that the order of the SetCapture and ReleaseCapture API has some importance in sending messages to the toplevel or parent window. Following code describes correct code. void ButtonEx::OnLButtonDown( UINT uFlags_i, CPoint Point_i ) { SetCapture(); // Capture the mouse CButton::OnLButtonDown( uFlags_i, Point_i ); ... } void ButtonEx::OnLButtonUp( UINT uFlags_i, CPoint Point_i ) { CButton::OnLButtonUp( uFlags_i, Point_i ); ReleaseCapture(); // Release the mouse capture .... } but if I swap any of the statements for e.g CButton::OnLBu ...Show All

  • Visual Studio Team System Problems to access TFS from Visual Studio Team Suite

    Hi, We are having a pilot projekt for a development environment for our students with Visual Studio Steam System. The students want to access the TFS both from the terminal server and the lab rooms. Here the scenario: 1. One TFS server 2. One Terminal Server with VS Team Suite SP1 + Team Explorer + SQL 2005 SP1 3. Windows lab rooms with Windows XP SP2 clients + VS Team Suite SP1 + Team Explorer SP1 4. All computers are members of an AD domain and we are using domain credentials for the user accounts. We are not able to access the TFS and the SQL DB from our Windows XP client maschines. When starting VS Team Suite on the clients the following happens. 1. When trying to add the TFS by using "Connect to Team Foundation Server ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. New Starter kits?

    Hi everyone! I just joined the creators club and deployed my first game (The spacewar kit) and everything worked great! But I was under the impression that with the launch of the creators club we would have access to more starter kits and tutorials. Are more of these comming in future updates Or am I just missing them 1) Yes. 2) No. The XNA racer kit is not ready yet. See here . ...Show All

  • Visual C# Mouse Wheel Won't Scroll

    I have a Microsoft Comfort Optical Mouse 3000 which works great with every application except Visual Studio 2005. I have to spin the mouse wheel at a very high rate to get any scrolling at all in VS2005. I have the latest Vista drivers installed. There are some known issues with the Microsoft Comfort Optical Mouse 3000 in Windows Vista, an unofficial workaround you can try is the following: Install the Vista IntelliPoint software: http://www.microsoft.com/hardware/windowsvista/support/intellipoint.mspx or Click on the Start Button Start typing Device Manager Open Device Manager Disable the HID Compliant Consumer Control Device ...Show All

  • Windows Forms RTF jpegblip and jpeg image are not displayed in RichTextBox

    Does RichTextBox support the full spec of RTF I am unable to dispaly jpeg pictures in a RichTextBox, althought they display fine in winword. Is my file formated correctly Does RichTextBox support jpegblips Basically. I can load my rtf in winword with the jpeg pictures, and it looks great. But when I open the same file with RichTextBox.LoadFile, the text is displayed, but the pictures are missing. WMF pictures display fine, but I would like to use jpeg, because the file sizes are much smaller. rtfspec: http://latex2rtf.sourceforge.net/rtfspec.html The following sample rtf that loads in winword fine, but in a RichTextBox images are missing. {\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fnil\fcharset0 Microsoft Sans Serif;}} \view ...Show All

  • Visual C++ ref class VS. value class

    HI everyone, I am new in C++.NET 2005 world and there is something that makes me a little crazy: What is the difference between ref class and value class also ref struct and value struct Which type of classes ( ref or value ) I should create for my applications I hope anyone who have the answer helps me to figure this out of me. It was weekend - so be patient with us ;) class and struct are just different in that class members are private by default and struct are public by default. ref class or struct will create reference types. They are created on the managed heap and only references (like pointers when you think of it natively) to those objects are stored and passed. value class or struct are ...Show All

  • Visual Basic computing a mean and standard deviation

    hi guys firstly i am new to all this as i am currently a student and i am studying visual basic.net so here is my problem i have to write a application in visual basic that computes the mean and standard deviation how do i write the code for this and how do i set up the sullotion explorer window please could some one help me i have been stuckon this for a week now. thanx its not about the bug or some one else doing my home work for me as i am still learning i will find the bug and work it out i just wanted to know how the code is written as i am only in the beggining stages of my course work pretty soon i will be up there with every one else to me it is important to do the things on my own but af ...Show All

  • SQL Server Data Mining : Drug Trial Question

    I have a a simple situation. I am trying to determine for how long (in months) two drugs should be given to a patient. Both the drugs are administered at frequent intervals and their dosage and the condition of the patient is recorded. How do I determine for how long should I continue to adminster the drugs,at what point should I stop I am dealing with the following variables : Drug 1 dosage,Drug 2 dosage, Period of medication (in months). Can I use SQL Server 2005 data mining capabilites to get the answer Please let me know. I have to agree with the other response that this decision should be made by a qualified MD. What data mining can do is tell you the relationships between the dosages and the medication periods. Note that si ...Show All

©2008 Software Development Network