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

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

kiranin

Member List

Visagar
kudosdude
rDNA
elfelf
Shinigami
V VICTOR
DirtyHowi
Tjaalie
salloum
Bryan Ko
vortex-31
StillStandig4Ever
Jason Chan
Casual Jim
bytebugs
colinbo
CougarT
edburdo
queenrose
Heath Stewart MSFT
Only Title

kiranin's Q&A profile

  • Visual C# radio button's "selected" event

    am using 2 radio buttons in my form. rAdmin and rDesigner. < input type =radio id =rDesigner runat =server name =userType onserverchange ="rDesigner_ServerChange"> < input type =radio id =rAdmin runat =server name =userType onserverchange ="rAdmin_ServerChange"> when the user selects either radiobuttons, data is displayed based on which radio button is selected. where should i write the code for d ...Show All

  • Visual Studio Team System Problem with team build service

    I cant buil my solutions on a remote machine. Service is intalled correctly and response on my build requets. the references on my solution are mapped in a logic path (Z:\) but the service can not access it. this path have all possible access permission for the user with run service(TFSSETUP). Have you a possible solution (sorry for my english, thanks) You have to look into Application ev ...Show All

  • SQL Server Report Table Question

    I have a report that contains 3 tables. I want to create a 4th table that contains data from the 3 other tables. Is there a way to reference the value from one of the other tables' textbox in my new table. All of these tables are contained in the same report. The 4th table is basically a summary of the other three tables. Thanks in advance. i dont think so, because all the textboxes in the table will be created dynamically and you c ...Show All

  • Software Development for Windows Vista How to pass a Strongly-Typed Dataset to a workflow

    Hi, Can anyone tell me how to pass multiple parameters one being a strongly-typed dataset to a workflow. It would be good it I could pass the dataset by reference too What I'm trying to achieve is two-way communication between the host and the workflow via a dataset. There doesn't seem to be many examples of this on the web - can anyone help Thanks! Since the DataSet is serializable, you should be able to add it as a parameter to th ...Show All

  • Visual C# Stored procedure not responding.....

    I have a stored procedure that joins three tables to display records in text file like a.column1, a.column2,a.column3,b.column1, b.column2,b.column3,c.column1, c.column2,c.column3 where a,b and c are tables with their own columns associated. Front end is C#. As business requirements I wanted to add extra columns in table a and this now looks like a.column1, a.column2,a.column3,a.column4,b.column1,a.column5, b.column2,b.column3,c.column1, c.c ...Show All

  • SQL Server Bold within a textbox

    I have a textbox on a report that i would like to have one word bolded, how do i do this ex: i want this word to be bold thanks in advance Unfortunately, this is not supported in the SQL 2000 or SQL 2005 version of Reporting Services. It is something we would like to add in a future release. ...Show All

  • Windows Forms event on scaning barcode

    hi , i am using vb.net 2003 and i want to scan barcodes with the scaner i want if the scaner completes the scaning doesn't matter what the length is the next textbox is focused i tried it on different events but could not find the&nbs ...Show All

  • Software Development for Windows Vista Release Plans

    Can somebody supply any information that is available re; the planned release dates for WF, in particular with regards to: 1) A version compatible with the Beta 2+ build of Visual Studio 2005 that was provided on the goods disks at the PDC 2005 conference. 2) A version compatible with the VS2005 being released in November. 3) A version with a go-live license. Hi Mark - The next public release will be Beta2 which is planned towa ...Show All

  • SQL Server Storing images in sql server 2005

    Hi There I have not had much luck finding info in BOL. I have a directory with many images, i need to load these images into sql server.We want to staore them in the database instead of the file server. What is the best way to do this TSQL (i am hoping), .NET code or maybe even SSIS I have been reading what i can find in BOL basically all i know so far is that image data type will be no more in the future and i should use a varbinar ...Show All

  • Smart Device Development Adding Items to a ListView

    Hi, I'm trying to add items to a list view like this: frmList.lstShop.Items.Add(txtProduct.Text) This method gives me an error "Value of type 'Strings' cannot be converted 'System.Windows.Forms.ListViewItem'". I've tried to save the text to a string and add the string but I get the same error. I also get an error when trying to add a column like this: lstTrolley.Columns.Add( "Price" , 40) Can anyone tell me how I coul ...Show All

  • Visual Studio Team System Unit Test Wizard doesn't let me select certain projects.

    When adding a new unit test to my test project, the Unit Test Wizard jumps back to the "Add New Test" dialog when I select certain projects.  If I try to click either the '+' sign for the tree structure of the project or try to click on the project's CheckBox, the dialog returns to "Add New Test".  Is this because test units cannot be auto-generated for this project, and if so why do I not see some form of message dialog --Edit-- ...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: ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Creating a new texture fails with "first chance exception"

    I have an application in which I create a texture to later write directly into. It works fine on my development machine, but on the target machine it fails with A first chance exception of type "microsoft.directx.diretct3d.invalidcallexception" occured. The code looks like this texture = new Texture (renderer.Device, 720, 576, 0, Usage .None, Format .A8R8G8B8, Pool .Managed); The pixelformat is the same as the device. ...Show All

  • Visual Studio Express Editions How create sub handling button field click

    Hi, I created field of buttons:   Public Class Edit_Field     Public FieldBTN(80) As Button     Public Sub New()       Dim n As Integer       For n = 0 To 80         FieldBTN(n) = New Button       Next     End Sub   End Class   Public EditField As New Edit_Field A ...Show All

  • Visual Studio Express Editions MRU List doesn't reorder correctly

    Hi. Is it just me, or does the MRU lists in VB 2005 Express never reorder When you create a new project it's placed as #1 and the old ones are moved down once. So far, so good. But when I click on e.g. #2 it's still #2. It's never moved up to #1 as expected. C# 2005 Express does this correctly, so i guess it's a problem with VB. Is there anything that can be done A reg-setting or something Thanks in advance Regards ...Show All

©2008 Software Development Network

powered by phorum