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

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

shahji

Member List

csharpman
Terrell Plotzki
RussellE
Neelesh Thakur
Wims
BMWSauberF1
Dahuan
jarekb
רםמן
Yaron Amar
computerbill
Brian Ekins
Aravinda
SretiCentV
Firerx
Jens Egil Evensen
Kamran100
Tony Lee
Holm76
misterEd
Only Title

shahji's Q&A profile

  • Visual Basic Casting Error

    Dear Team    there is a field ' Date' in the db allow null...    On the form after binding and adding NewRow to insert ......    if the user left the textbox empty an error will raise    " Casting "" to Date is invalid "    How to solve this error       Thank you very much The code is " As Example "   l = textbox1.text  --> string  d = textbox2.text --> Date Datarow = dataset21.table(0).NewRow Datarow.item(1) = l Datarow.item(2) = d Dataset21.table(0).Rows.Add(Datarow) Let textbox2 empty  The problem in vb not sql cou ...Show All

  • Visual Studio Custom Data Visualizers

    I have seen the Custom Data Visualizers and I attempted to create one but I found the sample to be extremely lacking (or perhaps I am thinking lightyears ahead of the plans of the VS.NEt team again) A sample of what I wanted to do was I wanted to be able to build into vs.net such that the data visualizer for something like a hashtable. would have an extra row. And when this row was expanded it would display 2 columns. Column 1 would show all of the keys and column 2 would show each object associated with the key. A more advanced sample would allow one to expand the object used as a key or the object used as the value. (I somehow get the fee ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. The COM-based CORE engine (a lot of questions)

    I'd like to discuss a creation of the core engine for our future projects. I chose this forum not accidentally, I hope that professionals (especially from Microsoft) will help me in my questions. First, I'll say a few words about the core engine. It provides system, input, video and audio core techniques. Also, it has a pluggable system. The main COMponent 'MWCore' (from 'MWCore.dll' server) is only the bridge which connects the parts listed above together with the game. So, it's something like an abstraction layer between the operating system and the game engine. There are following main interfaces: IMWSystem - window handling, ...Show All

  • Visual Studio error MSB3323: Unable to find manifest signing certificate in the certificate store.

    Problems began when I received the MSDN Final VS 2005 v8.0.50727.42 and uninstalled the RC build which I had worked with without issue and replaced it with the previously mentioned. After four or so installs/uninstalls I got past the Invalid license data. Reinstall is required. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=162712&SiteID=1 I have tested C++ project builds for managed and unmanaged code and both work without a problem. My C# projects however fail to build, the error I get is: ------ Rebuild All started: Project: D And P, Configuration: Release Any CPU ------ C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsof ...Show All

  • SQL Server Using a parameter for the "IN" clause

    All, Having some trouble with getting the "IN" statement to return results from a stored procedure. I want to pass in a string of values, such as ('999999', '111111'), to my stored procedure and use it in a select statement. The SP looks something like this... @someNumbers [varchar](1200) SELECT * FROM someTable WHERE someNumber IN (@someNumbers) This doesn't return any data. How do I define something like this in the stored proc Thanks Mike Hi friends, Have you seen this article This discusses about  passing a list of values to use in the IN clause. " How to pass array of values into SQL Server stored procedure using XML and Vis ...Show All

  • SQL Server Running SQL server 2000 & 2005 side by side

    Hai My system is already installed with SQL server 2000 . Is it possible for me to install SQL server 2005 BETA CTP in the same machine and run both side by side. Regards   I am not sure which CTP you have, since we have RTMed SQL 2005, it would be better if you want to evalute SQL Server to install the full SQL Server 2005 Eval version.  Depening on which Beta you have, side-by-side installations may or may not work for you.     ...Show All

  • Smart Device Development phone.dll: MakeCall fails on new qtek (v5 3g wlan keyboard phone) !! LEVERAGE !!

    Hello. I have a problem on a new device. It is a new QTEK with keyboard. phone.dll - MakeCall("don't ask before calling") places the calling dialog so that the center of it is at a vertical position 2x what it should be, before the dialog hangs. My app is orientation and resolution aware, and the problem is the same no matter what orientation I use. This is a breaking change from emulators and (multiple) earlier phone and pocket pc versions, including Qtek 2020, which I know others have had problems with MakeCall() on . Please help! I discovered this problem too with the iMate JasJar device, I've reported it ...Show All

  • Windows Forms How print all record/selected record in data grid?

    How print all record/selected record in data grid pls provide any codes how to use this class.. im new here.. tnx so much ...Show All

  • Visual Studio Express Editions Read line listbox to variable

    Hello I have a listbox and i need some of the lines But how can i write them best to an variable,array() I am looking but doesn't found the right code (instruction) Thanks The listbox has an items collection. Just iterate over it, or use the indexes if you know them, and copy them to a list. The list should have a ToArray method when you're done, at least I know ArrayList did. ...Show All

  • Visual Studio Team System Undoing a changeset?

    How do you back out of a changeset   I was experimenting with branches and merging and I made on a change on a branch when I intended the change for the trunk version.  BTW, I can see this being a problem because the VS editor MDI tabs only give a filename (not directory) and so does the solution explorer.  It would be nice if there were some visual cue to indicate that a solution you have loaded is not the "primary" version you work with but a branch instead. Keith, To add to my comments in repsonse to Carl's feedback, rolling back a changeset (revert as we called it) will certainly be conside ...Show All

  • .NET Development OleDbCommand.ExecuteNonQuery "Insert Into Select From"

    Hello, I am working with OleDb to perform a bulk insert from a temporary table to permanent database table, both of which belong to the same database. I am wanting to use "INSERT INTO <permanent_table> SELECT * FROM <temp_table>". The query I run in MS Access to perform this bulk load does process correctly, but not in code using OleDb. After properly setting up my OleDbConnection object, opening it, and properly creating my OleDbCommand object, my question is this: when I call "ExecuteNonQuery()" no rows are returned and no data shows up in the permanent table. My connection opens perfectly and the ...Show All

  • Windows Forms how to add dataColumn to an array?

    hi there, I am having problem adding dataColumns that i created dynamically to an array. I keep getting nullReferenceException. Could anyone help me  here are the codes: Dim i as integer Dim cArray As DataColumn() For i = 0 To ColNum - 1       Dim dataCol As New DataColumn("Select Column", GetType(Boolean))       cArray(iiii) = dataCol Next ...Show All

  • .NET Development Simulating HTTP Post

    Hello all, i have made an HTML document which allows me to upload a file to a website without actually visting it. I am using C# and i wanted the way i could do the uploading part programatically so that there is no user intervention. I tried using HttpWebRequest and HttpWebResponse classes but in vain. Any method to simulate the file upload is appreciated. Inshort i want the replicate the action of the HTML file below , programatically using C# Thanks for taking your time off and reading this post. Have a nice day/night :) ---------------------------------------------------------------------------------------- <!DOCTYPE HTML PUBLIC &quo ...Show All

  • SQL Server How to manage click-through

    How will I possibly do click through on this type of chart when basically I'll have to bring in just Grand Total values to do what they want to do here in this mock-up:  SSRS 2005 Expected/Desired Outcome (user drew this using Excel and later wants click-through capability through SSRS 2005 on the bars later on): http://www.webfound.net/chart3.jpg I don't see how this is possible, can y ou shed some light   because basically what I'll have to do to get that few of bars is literally bring in just Grand Totals for the series....static Grand Totals from  my dataset's stored proc calculation since I cannot perfo ...Show All

  • Visual Studio create crystal report using stored procedure with paramter

    Hi, Anyone could give the sample code about creating crystal report (VS05) using stored procedure with paramter. Many thanks. Parameters to a stored procedure from Crystal is not exactly the same as a Crysal Report parameter... the Parameter Name begins with an '@' ... Mostly the same after that. ...Show All

©2008 Software Development Network