Software Development Network Logo
  • Architecture
  • .NET Development
  • VS Team System
  • Smart Device
  • Windows Forms
  • Visual FoxPro
  • Windows Vista
  • Visual C++
  • Game Technologies
  • SQL Server
  • Visual J#
  • Visual C#
  • VS Express Editions
  • Visual Basic
  • Windows Live

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

Tyveil

Member List

tidanone
Maharjan
John Gallagher
EduQuint
Brian Cecile
Abhiram Khune
Mihir Mehta
mowalker
Ajornet
Coder11
Reema6764
BI Analyst
milocr
Peter Gloor
Robin Lundgren
Notes
Chris Knight
jakob aagesen
Sorgavana
blewisjr
Only Title

Tyveil's Q&A profile

  • Windows Forms Disable Enter in GridColumnStyle

    Ok Now I have this code to insert into the inherited datagrid.     Protected Overrides Function ProcessKeyPreview(ByRef m As System.Windows.Forms.Message) As Boolean         Dim keyCode As Keys = CType(m.WParam.ToInt32, Keys)          If (m.Msg = WM_KEYDOWN Or m.Msg = WM_KEYUP) AndAlso keyCode = Keys.Enter Then         &nb ...Show All

  • Visual Studio Another victim

    I'm having a bear of a time getting reports with subreports to function correctly. I have followed all of the directions for logonInfo updates. The original report running under v9 only has to have the first four parameters filled, from there 9 other linked parameters are supposed to be filled. I started with code that we have in production (v9). This code ran fine when running against the server that the report was designed against. But when compiled in CR .net 2005 the linked parameter values kept prompting. Then I tried to hack my way through that problem and set all of the parameters (13) instead of just the 4 we normally send. Stil ...Show All

  • Visual Studio Express Editions What form call me ?, if i have many of them....

    I create 10 forms dinamically.... << dim f as new frmAny , f.show >>, well, any of these forms calls other form, here i create a value that i need return to the form who call these other form...... How i know who make(which of all the forms) that call to the other form...because only he must receive the value.... Thanks for everything..... Hans, When you show your dynamic forms specifiy the Parent form: In frmMain...     Dim fr As new frmAny     fr.Show(Me)    -or-     fr.ShowDialog(Me) Note: Parent parameter is new in .NET 2.0 for Show meth ...Show All

  • SQL Server text box sending large amounts of text to next page Microsoft please help

    I have a report that has a text box called Fields!ResolutionText. If the resolution is small the whole report stays on one page. If the Resolution is a long one, the whole text box goes to the next page, leaving the first page w/ only 1/3 with information on it and a huge blank space. How can I force the information on to the first page and to fill the first page before putting the rest of the text on to the second page. Any help would be appreciated. In SSRS 2005, text boxes are always kept together. If the text box will span a page boundary and can fit completely in one page alone, then it will be moved to the next page. If the text ...Show All

  • Visual C# system.object

    I've a doubt about inheritance in c#, suppose there are two classes, class A and class B and both are derived from system.object. Now Class B inherits Class A, that means multiple inheritance, how comes that possible, coz c# doesn't support multiple iheritance. Any suggestion would be appretiated. shine If B derives directly from A, then Object isn't the immediate base class of B. All classes derives from Object one way or another, but there may be any number of base classes in between in the inheritance hierarchy. It's   B   ^   A   ^  Object   not     &nbs ...Show All

  • Windows Forms Unable to connect vb2005 express beta 2 with SQL express/SQL Server 2000

    Hi, I couldn't connect my vb2005 beta 2 to my database for over a month now, I uninstall sql express and leave only SQL 2000 but still couldn't connect. I installed vb2005 beta 2 on another computer and still have thesame error message. I'm sick and discouraged. I need help please. Whenever i clicked Ok from the Add Connection  in the Data Source Configuration Wizard , it always gives me this error message from both computers "Timeout expired. The timeout period elapsed prior to completion of the operation or the Server is not responding" I will love to established the connection and drag my table onto the form. I need someone to h ...Show All

  • Visual Studio Tools for Office VSTO Outlook Addin Setup on Client Workstation

    I created a VSTO Outlook Addin.  With the setup project that was created for me I created a MSI file that is run on all the user workstation as an local admin since users can not install software on their machines.  During the install I pick All Users and the install completed successfully.  I see my addin in Outlook and the addin works fine.  Every other user that sign on to that box for the first time have to run the install again and choose the repair option to get the addin to show up in Outlook.   Does anybody have an idea what is going on here   Thanks Ignus ...Show All

  • Visual Studio Express Editions Problem porting a Visual C++ 6 application to Visual C++ 2005

    I'm trying to migrate a project made on Visual C++ 6 to Visual C++ 2005, but even with no compilation errors, the application don't work as the VC++ 6 project. My application is a project about API Hook, and it's not working on Visual C++ 2005. What can I do to maintain compatibility Hi! You need to provide more information about your problem. Which library you use - MFC, ATL, WTL, STL... or clean Win32 API What function not working as you expected - post it here, so we can see it. ...Show All

  • SQL Server Change Data Capture

    Again, looking for the best way to do this with SSIS. I have a source table and I'd like to load it to a database daily, capturing what changed. This is not a dimentional table but a fact table. So, what I;d need to do for each record is to see if the record already exists (using business key) and if it does - compare some of the data fields and of there are changes - register it somehow and if not changes ignore. Right now, the only two ways I see to do it with SSIS: - Use Slowly Chaging Dimentions transformation - Use Lookup and customize SQL, adding something like: WHERE key = and (field1 <> or field2 <> ...) ...Show All

  • Windows Forms Tabs with a MDI App?

    Has anyone had any success wigh making a MDI application also support a TabControl (either System.Windows.Forms or Crownwood.Magic.Controls) I know that Syncfusion Essential .NET has support for this, but I was looking for an open-source solution. Is there any hope of this working with the Magic.NET tabcontrol I would love to see some code to this effect. ...Show All

  • Visual Studio Express Editions VWD: Full-text search capability.

    I am very new to VWD express, and am currently working through the tutorials. I don't have a coding background and so far have found learning VWD pain free. However, the application that I intend to build will require a search capability, but it would seem that full text indexing is disabled in VWD express. Are there any options for me other than to buy the full version of Visual Studio Hi, Please post VWD Express question in this forum http://forums.asp.net/175/ShowForum.aspx , where you will get better answers. Best regards, ...Show All

  • .NET Development enableSessionState problem

    When I run my aspx page trying to call some session variables, I get the following error: Session state can only be used when enableSessionState is set to true, either in a configuration file or in the Page directive. Please also make sure that System.Web.SessionStateModule or a custom session state module is included in the <configuration>\<system.web>\<httpModules> section in the application configuration. I have gone through all the help files on setting the session state and the http modules, and have done so, but I am still getting the same error message. Can you please help me In the web.config: < ...Show All

  • Visual Basic Help: Visual basic program

    Hi i am making a program with a listbox named (lst) and picturebox named (pic) and i put the following code into the listbox selectedindexchanged sub so as the user clicks on the picture name from the listbox it displays in the picturebox Note: the listbox contains the paths of the images as there is openfiledialog in the program Private Sub lst_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles lst.SelectedIndexChanged Dim img As Image Dim s1 As String Try s1 = lst.SelectedItem img = Image.FromFile(s1) Catch ex As Exception pic.Image = Nothing Exit Sub ...Show All

  • Visual Studio Team System One problem in security setting

    TFS : Beta3_refresh VS 2005: Visual Studio 2005 Team edition for software developers I create a team project called "TestTeamProject". There is a file in this team project. Its path is $/TestTeamProject/Test/test1.txt. I also create a Team Foundation Group called [TestTeamProject]/TestGroup. and add user (domain\ABC) to the group. Grant the read and check out permission to this group. domain\ABC connect to TFS, and he can check out and undo check out $/TestTeamProject/Test/test1.txt. I remove user(domain\ABC) from the [TestTeamProject]/TestGroup. domain\ABC restart his machine and connect to TFS again. he still can ...Show All

  • Visual J# javax.* support

    Hi, I was wondering if anyone has started on some libraries which provide support for things like javax.vecmath and the java 3d API. I do not care if they are just wrappers around other libraries (DirectX or .Math or ). Just if they are available before I start writing my own. Thanks, Blair P.S. No GPL'ed libraries please. Thanks. Sorry no I have not had anytime to work on this (priorties changed); until now so I am currently thinking about how to do a j3d wrapper. I will keep everyone up to date as to my progress. blair ...Show All

©2008 Software Development Network