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

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

j_ames2006

Member List

silverwolf
Brainsponge
Dmitry Shaporenkov
Mr.Siddhardhaa
GregDuck
Slow Learner
Tianyu Li
Terry7
mark aoki
Deanrm
.NETPhreak
TTris
DiZASTiX
krhoover
Ciprian
bennettdan
KarthikNarasimhan
avols143
LelandDurrette
Mateusz Rajca
Only Title

j_ames2006's Q&A profile

  • SQL Server Parameters

    My query is returning phonenumber,Name and Id. In layout I have textbox.In Edit Expression,the parmeter is like First(phonenumber) Why it is showing First(phonenumber). YOu have to prefix your expression with the eual sign to evaluate expressions, e.g. =First(Phonenumer). HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Windows Forms DataGridViewComboBoxCell Refresh?

    I've got a DataGridView with a databound DataGridViewComboboxColumn. In the CellClick event of the DataGridView I try to change the value of the combobox to a 'default' value. For example: the possible values in the combobox are 'a' and 'b', after a click in the cell it should always show the value 'a', no matter what the value was before the click. But I only see the change in the clicked cell when *another* cell is activated. As a workaround I added (hack alert!) cell.Readonly=true and cell.Readonly=false statements to the CellClick event. That works better (the change to the default value is visible right after the click), but the drawback is that after the click the combobox cell flashes like crazy. That's unwanted behaviour.&n ...Show All

  • Software Development for Windows Vista CEM/HEE & queuing

    If I am using a CallExternalMethod (CEM) or HandleExternalEvent (HEE) within a workflow, I realize that for each activity, the the delegate of the method being executed is is enqueued and dequeued as the workflow is executing. However, when the method on my local service is being called by the CEM, is workflow queuing somehow involved the same way The reason this question comes up, is that for calling an external method, is there any difference between having a code activity that has the code in it to call the method on the local service vs using the CEM (I know the CEM uses reflection) I’d like to know what service the CEM (or HEE) is providing that couldn’t be performed by just calling the code directly. Thanks! One a ...Show All

  • Visual Studio Express Editions textbox in visual basic 2005

    i want to fill multi row to textbox from database but when i'm trying the text fill with single row buti want it multi rows can any proffessional help me !!!!!!!!!!!!!!!!!!!!!!! you can either databind the textbox or get the specific value from the specific row/column of the dataset. Example: Me.theTextBox.Text = Me.theDataSet.Tables(0).Rows( RowIndex )( ColumnName ).ToString() ...Show All

  • Visual Studio 2008 (Pre-release) Bug in Interactive Designer (June CTP)?

    In Interactive Designer it is possible to create a new template for controls. When I select a ListBox for example, I can select "Make New Resource ..." in the properties window. Then a <ControlTemplate TargetType="{x:Type ListBox}" ... /> is created. This works find for a lot of controls, but when I try to create a ControlTemplate for a ListView the following error is displayed: Invalid property value: Unable to cast object of type 'System.Boolean' to type 'System.String'. Is there another way to get the default ControlTemplate for a ListView I would like to change the ControlTemplate, which already works. But the header row is not displayed any more. Therefore I would like to get the default ControlTempl ...Show All

  • Visual Studio 2008 (Pre-release) Developing custom panel (designer)

    Hi! We are currently learning how could we extend Cider for our tasks and we've stuck with several questions. We would very appreiciate if Guys with Knowlege can explain it to us. We need something like StackPanel. Unfortunatly standard one doesn't work in November CTP. Is it possible theoretically to make custom panel which will allow us to drop controls into it and rearange it's children To what classes/methods/concepts should we look We've achieved some success with custom adorner provider that extends PrimarySelectionAdornerProvider and accept drops. But it's working only when panel is selected which is not good for users. Is there something like DragOverAdornerProvider Or should we look in some completely different place Can we l ...Show All

  • Visual C# Getting applications Paths

    Does the System Namespace has something like system.path I need print out the current cs files path.. because for some reason I'm trying to load some images in a program that I'm creating.. but for some reason.. It only works when I add in the full path to it. interesting, it should. It returns a string of the path/location of where your application is running from MessageBox.Show(Application.StartupPath); (or Console.Write) ...Show All

  • SQL Server Performance problems with SQL commands in data flow task

    SQL statement within an OLE DB Command component is extremely slow (hours, days). Same SQL statement executed within a query window of SQL Server Management Studio takes only a few seconds. Using a fairly simple SQL UPDATE statement against a table with only 21,000 rows. Query: UPDATE Pearson_Load SET Process_Flag = 'E', Error_Msg = 'Error: Missing address elements Address_Line_1, City, and/or State' WHERE (Address_Line_1 = ' ' OR City = ' ' OR State = ' ') AND Process_Flag = ' ' Any suggestions on how to improve the performance of this task or an alternate solution are appreciated. Thank you. Jeff-B wrote: Thank you Phil! I just moved the queries (I actually had 4 separate quer ...Show All

  • Visual Studio Express Editions Newbie ADO.NET Problem

    Hi, I have begun to learn visual c# express using Absolute Beginner’s Video Series My problem is with Lesson 9: Databinding Data to User Interface Controls ... I have downloaded and compiled the project without problems. When my application is running and i click on the SAVE button seems that the database it is brought up to date, but if i close my application and restart it i see that no changes are made on the DB. I have checked the DB using the SQL Server Management and i have seen that no data were inserted into the table. I don't understand what is the problem... any ideas Thank in advance for the help! Kenshin Check this thread ... ...Show All

  • Smart Device Development CFV@ SP1

    Will the CF2 SP1 be available for Platform Builder 4.2 and 5.0 as a QFE When http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=495314&SiteID=1 ...Show All

  • Visual C# Making my own exceptions

    Hy! I want to create my own exception. For example, I want to have InvalidTokenException. How should I do this I know I need to create class that inherits Exception class, but don't know what to do then... A class that inherits Exception is the minimum you need to do. Once you've done this, you can throw it like any other exception. It's useful write a message to the base constructor, and add your own fields and properties to describe the error in more detail. -Ryan / Kardax ...Show All

  • Visual Studio Thinking about purchasing but need to know...

    Hi there, I am thinking of purchasing Visual Studio 2005 however I am unsure of one thing. In the express version, it is unable to connect to a remote MySQL database and states "Failed to call the ODBC drvier connection utility". What version of Visual studio is needed as a minimum for me to be able to connect to this data source Will standard be sufficent Thanks in advance, much appreciated. Apparently you should be able to use database conenctions with the standard edition: http://msdn.microsoft.com/vstudio/tour/evaluation/visual_studio_2005_standard_edition.htm Unfortunately it seems that the Standard edition is the only one that you does not have a trial download to test before purc ...Show All

  • Visual C# Use function from DLL file

    Hi, I'm a beginning C# programmer and I'm writing an earlier written program(c++) in C#. I have a DLL file called K8062D.dll which has following functions: StartDevice Opens the communication link to the K8062 device StopDevice Closes the link to the K8062 device SetChannelCount(Count) Sets the maximum DMX channel in use SetData(Channel, Data) How can I call these functions from C# Best regards, Yannick Michael_Grumbach wrote: Do I just make sure the dll file is in the same directory, or do I put a reference to it in the code somewhere Putting Dll in the same directory as of your application is enough and you dont need to do anything. Best ...Show All

  • Visual Studio Team System Newly created Iteration path not showing up in work items

    I have created a new iteration and area paths for my project, but the values never show up in Work Item dropdown values.  Its been a few hours, and I've re-started VS/TeamExplorer several times. Any idea how to resolve this issue   I need to be able to create new values that show up in my WI's. Thanks, -JS If you open a new instance of VS and go to the "Areas and Iterations" settings for the project is your new iteration shown Is your iteration name alpha-numeric Or do you have any strange characters in there Does the new iteration appear on other machines Try turning on client tracing and see if that reveals anything: http://forums.microsoft.com/MSDN/ShowPost.aspx ...Show All

  • SQL Server How to create a scheduler report by report services

    May i know the way how to create a scheduler report thus the client user will receive a weekly report and email (html version) Naviagte to the Report > Subscriptions > Add new subscription > Select Report Server EMail Delivery (Note: If this is not selectable, you might have not setup the mail server properly) here you can set the mail settings for sending the report with selecting the values for the parameters (if any) HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

©2008 Software Development Network