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

Software Development Network >> J A Y's Q&A profile

J A Y

Member List

Kostadin
Mike Barry
silkkeng
wannabe_2
Yachtsman
nigel.uk
Paul Monaghan
fj64
Hot Coffee
Thore
JimInTexas
Cest la vie
Muzzzy
TechSupportV
TimGL
Wellnow
Darin V
juergen.b
DtD
henri805
Only Title

J A Y's Q&A profile

  • SQL Server Using a Dynamic XML Dataset

    Is there a way to dynamically use an XML dataset as a datasource We got it to work. The problem that we are having is when multiple rows are returned in the dataset, it will not display them on the report, even though there is not a first wrapped around the Fields!whatever.value, the report is only displaying the first value that comes back. ...Show All

  • Visual Studio Express Editions Form 1, 2,....

    How can I make from Form1 to Form2 on buttom click WITHOUT NEW WINDOWS I want all form in only one form. Please help thank you so much! I dont think you can do this, when its a new form its a new form. You can hide your form and then show the other form but in order to show back your main form, you need to have a reference of it to the other form so it can set it to visibility   you could probably use MDI for this: http://vb-helper.com/howto_net_mdi.html http://abstractvb.com/code.asp A=957 https://msdn.microsoft.com/library/default.asp url=/library/en-us/vbcon/html/vbconMDIApplications.asp ...Show All

  • Software Development for Windows Vista Statemachine Design and NullReferenceExcetion

    Hi all, could anyone please tell me: - how can i create the edge between States by statemachine - why do i have a NullReferenceException for wf-instance Creation in the sequenzial Wf Thanks a lot in advance Regards EP Hi. no with workflow you can treated as type Dim workflowInstance As WorkflowInstance workflowInstance = workflowRuntime.CreateWorkflow( GetType (Workflow1)) workflowInstance.Start() the workflowRuntime object have CreateWorkflow Method that allowed you to set the Workflow as type by using GetType() that return the workflow as type. check your code and inform me whats happend. Best regard. ...Show All

  • Visual C++ C# DataGridView control in CWinFormsControl hangs on ALT + TAB

    I am developing a DataGridView control in Virtual Mode on a UserControl using the code in this article http://msdn2.microsoft.com/en-us/library/15a31akc.aspx Then it is hosted in an MFC dialog using the code in this article http://msdn2.microsoft.com/en-us/library/94t3ebxz(VS.80).aspx So far so good and everything works pretty much as it should. However if you ALT + TAB off to another application halfway through editing a cell the application hangs e.g. if you type 4 and then ALT + TAB. If you ALT + TAB to another application at any other stage there is no problem e.g. if you type 4 then click on another area of the UserControl and then ALT + TAB. Has anyone ever had any similar behaviour and if so what fixed i ...Show All

  • Smart Device Development This project requires .NET Compact Framework v1.0, which is not installed on this machine.

    When I try to create a new Visual Basic Smart Device Application (1.0) in Visual Studio 2005 I get a dialog box titled "Microsoft Visual Studio" with the message: "This project requires .NET Compact Framework v1.0, which is not installed on this machine." I can still create new projects in Visual Studio 2003. Add or Remove programs shows the following are installed: Microsoft .NET Compact Framework 1.0 SP1 Microsoft .NET Compact Framework 1.0 SP3 Developer Beta 2 Microsoft .NET Compact Framework 2.0 Microsoft .NET Framework 1.1 Microsoft .NET Framework 1.1 Hotfix (KB886903) Microsoft .NET Framework 2.0 Can someone tell me what I am missing and point me to the install that I need ...Show All

  • Windows Forms Panel Opacity

    Is there any way to make the background on a panel have 50% opacity so I can use it as a custom border Any other ideas   Im trying to make my programs border like Windows Vista but without the blur, just with the transparency. ...Show All

  • Visual FoxPro visual foxpro 6.0 software

    where can i find visual foxpro 6.0 software download for free Lakshmi N wrote: I tried both the links to buy VFP 9.0 Academic Version. but the form does not allow any body to buy outside US i think. i am from india and city bangalore. how can i buy the software. the form asks for state and country. and india is not at all their in combo box. can u just help me by telling me how to buy this academic version in india i.e. bangalore city. The academic version isn't a different version like VB Express, but rather a special price for faculty, staff, and students of a qualifying educational institution. Academic version licenses are usually bought through a university bookstore, ...Show All

  • Visual Basic converting date to a number in VB.net

    hi... wut is the easiest way to convert something in the format of date like 03/18/2007 into 031807 and use that 031807 to read the file 031807.mdb Dim Thedate As Date = #3/18/2007# Dim datestring As String = Thedate . ToString ( "MMddyy" ) Dim DataFileName As String = datestring & ".mdb" Dim cnxn As New OleDb . OleDbConnection ( "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\" & DataFileName & ";User Id=admin;Password=;" ) ...Show All

  • Visual C# Differences between i++ and ++i

    Hi to all! Sorry for my ignorance but could anybody explain me what is the difference in a cycle when we increment a variable i in this way i++ and i++ e.g. for ( int i = 0; i < 10; ++i ) and for ( int i = 0; i < 10; i++) Thanks a lot in advance! i++ is using postincrement. It means that the number is incremented after it's use. For example: int i = 5; foo(i++); // 5 will be sent into foo as a parameter, and i will then increase to 6. Preincrement on the other hand increments the value before using it. For example: int i = 5; foo(++i); // 6 will be sent into foo as a parameter. Did that answer your question ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Render target save'n'restore

    I've a func that do some work including rendering into rt. So, i need to save old rt at the beginning of my rendering, and then restore it at the end ( when smb call my func, he may have rendering to texture enabled, or just rendering to the backbuffer, and he don't wont to worry about restoring his rt after call of my func ). Is there any way to implement such a behaviour using XNA The PC version of XNA uses the same code path. Basically, you can't get access to the PC-specific multiple render target switching through the XNA API, in order to stay compatible. ...Show All

  • Windows Forms Text Color problem

    Hey, Below is the code I did to make the text color change, it does not give me any errors but it wont change the color of the text when I test it...here is the code: private void textColorToolStripMenuItem_Click( object sender, EventArgs e) { RichTextBox thisrichtextbox = GetCurrentTextBox(); colorDialog1.Color = thisrichtextbox.ForeColor; colorDialog1.AnyColor = true ; if (colorDialog1.ShowDialog() != DialogResult .Cancel) { colorDialog1.Color = thisrichtextbox.ForeColor; thisrichtextbox.SelectionColor = colorDialog1.Color; } } Thanks :) I believe that's because your ColorDialog1's Color is set (again) after dialog is closed. In the end,  ...Show All

  • Visual Studio Express Editions Where is the Windows Service template? How can I add it to VB2005 templates?

    The Windows Service templates found in the previous version of Visual Studio.net not found in VB Express 2005. Can it be added If you have VS2005 you can create a new project from the windows service template and then export it as template using the file->export template menu option. This will allow you to install it in VB express. You can also write your own service from scratch using the ServiceBase class MSDN sample as base. http://msdn2.microsoft.com/en-US/library/system.serviceprocess.servicebase.aspx ...Show All

  • SQL Server Question about by Import oracle data and field is null

    Hi, I've a question about importing Oracle data and some fields are null. I get an error 'Conversion failed because the data value overflowed the specified type'. When i look in preview query result, via OLE db Source editor > Preview, this field contains '<value too big to display>'. What do i do wrong Can somebody help me Thanks in advance Olaf Olaf - SQL Server has several methods to export and import data, as does Oracle. For most data cleansing issues, the simplest way to eliminate data format differences is to export the data from Oracle to a text file and then import that to SQL Server. If you're looking for something that is simpler, such as using SQL Server Integration Services ( ...Show All

  • Visual C++ DLLs unloaded

    Hi, guys: I have a COM component. It uses several third party DLLs. Recently, I noticed that after the DLL holds the COM component is unloaded from the memory, the third party DLLs can stay in the memory, and when recreating the instance of the COM component, the third party DLLs will not be reloaded. Sometimes, this will cause GPF. My question is why the third party DLLs can stay in the memory, and how can I unload them Thanks, Zhen It looks like the third party DLLs are not COM components. They are implicitly linked to my COM component. I am pretty sure the COM component is the only one references them. My codes do not call LoadLibrar() as they are linked implicitly. Yes, the setting S ...Show All

  • Visual Basic Print text to a form

    IN Vb 6.0, using the Print command would print whatever text you put onto the form. Im wondering how you would do that same thing in VB2005 because apparently the command had changed... thank you For those of you who were looking for a Form.Print or PrintForm feature, here it is! http://msdn.microsoft.com/vbasic/downloads/powerpacks/default.aspx ...Show All

©2008 Software Development Network