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

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

Seefer

Member List

mertkan65
Googly_Master
disneystar
rwerner
Lee Eden
Sridhar Kalyanaraman
lpx
ahmed921983
Sunil Dutt
Fuzon
Neil East
.net sukbir
NipplesAndLicks
lbamburg
alex121
Prash1
Gaganji
ZUTI
RCS300
montaquehou
Only Title

Seefer's Q&A profile

  • SQL Server Locale not supported Error

    I am using Vista and when I try to open one of the Business intelligence reports, I get error "Locale 16393 not supported". Any clue on this Thanks ...Show All

  • Visual Studio Express Editions Help on a project :-(

    Ok, I graduated for college about 5 years ago and never had the opportunity to continue using my knowledge in VB.  Now I'm out of sorts because a huge chunk of what I knew about VB codes has evaporated.  Thankfully, the newer VB programs make it alot easier to build a simple project without adding complicated codes or anything like that.  However, I'm trying to create a form with two comboboxes and I'm not sure what's the best way to go about it.  I fear I might have to use code, but I forgot how to do that.  What I have: The first combobox has the food component items Milk, Meat, Bread, Fruits&Vegetables The second combobox has the items food component(is the food a meat, milk, etc ) Food it ...Show All

  • Visual C# selectionchanged and selectionchangecommitted differences?

    What is the difference between selectionchanged and selectionchangecommitted in a combobox Thanks. selectionChanged is the event that fires when you change the selection from the combobox. selectionChangedCommitted is the event that fires when the drop down list from the combobox has closed taking the selected item and "committing" it as a final selection. - this fires, I believe, after the SelectionChanged event ...Show All

  • Visual Studio Toolbox/Report Viewer & Microsoft Reporting Services

    I am in the planning stages of moving a fairly large app from Access to ASP.NET 3 / C# / SQL Server 2000 and am investigating report generators. We will need to produce - Standard on screen / print to paper reports (that can be output in PDF format) Excel spreadsheets The app will be mostly Win Forms, but there will also be Web Forms Is the toolbox / report viewer control in VS 2005 the same as what is often referred to as "Miscrosoft Reporting Services". Is there a summary paper anywhere on the capabilities of Microsoft SQL Reporting Services and this control Does it work for both Windows apps and web apps Many thanks Mike Thomas Visual Studio 2005 ships both a winforms and webforms version ...Show All

  • SQL Server Could anyone test this on SQL2005 AdventureWorks

    SELECT TerritoryId , [2003-01] , [2003-02] , [2003-03] , [2003-04] , [2003-05] , [2003-06] , [2003-07] , [2003-08] , [2003-09] , [2003-10] , [2003-11] , [2003-12] , [2004-01] , [2004-02] , [2004-03] , [2004-04] , [2004-05] , [2004-06] , [2004-07] from ( select TerritoryId , CONVERT ( CHAR ( 7 ), h . OrderDate , 120 ) AS theDate , d . LineTotal FROM Sales . SalesOrderHeader h JOIN Sales . SalesOrderDetail d ON h . SalesOrderID = d . SalesOrderID ) p pivot ( sum ( LineTotal ) for theDate in ( [2003-01] , [2003-02] , [2003-03] , [2003-04] , [2003-05] , [2003-06] , [2003-07] , [2003-08] , [2003-09] , [2003-10] , [2003-11] , [2003-12] , [2004-01] , [2004-02] , [2004-03] , [2004-04] , [2004-05] , [200 ...Show All

  • Windows Forms Datarow

    I know i can not do this but it will not work .How can I Change it to work foreach ( DataGridViewRow dgr in Parm_dataGridView1.Rows) { datarow dr; dr = dgr; } ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Izzy545 mentioned on Major Nelson's PodCast

    Hey, just informing you of Izzy545's game being mentioned on Major Nelson's PodCast. Congrats, Izzy545. Well done Izzy545, I feel like you and teh_programerer, are my LearnXNA Brothers, although both your games were better than mine :D. ...Show All

  • Visual C++ help with dynamically allocating an array?

    hello, ok this code works fine but it still dosnt compute the avearage with the lowest score dropped. here is my code. [code]#include <iostream> #include <iomanip> using namespace std; void sortArray( double arr[], int sz, int scoresPos[], int size ); void displayArray( double arr[], int sz, int scoresPos[], int size ); int main() { double *scores, total = 0; // average; int count; int numAmount; cout << "How many test scores are you going to record "; cin >> numAmount; scores = new double[numAmount]; int *scorePos = new int[numAmount]; cout << "Please enter in your test scores below.\n"; for ( count = 0; count < numAmount; count++ ) { cout <& ...Show All

  • Visual C# Blocking Console closure?

    I have a Windows Forms app with Console playing a part. I now run an almost debugged code from an exec that is generated after the Build command. I need to prevent Console from accidentally being closed by clicking on the tiny button located at the right upper corner. I cannot figure out if it is possible to do. The corresponding button on the form is blocked but it does not prevent the form from being closed by clicking on the button on the Console. I want to immobilize it too. I do not the app being closed accidentally in any event. Thanks. Oscarfh wrote: How can I open a console in a windows app This should go on top of your code in the form: [ DllImport ( "kernel32.dll" , SetLastError = tr ...Show All

  • Windows Forms Delay Processing ListView based on a Timer.

    Hi all, I am after a best method approach to solve this, but my problem is that I have a ListView that contains Items based on a location. I have a Location object that is basically a Tree Hierarchy. On the Form I have nudge buttons (left and right) so that the user can move from location to location on the same level. But, when the user selects a nudge button several times very fast, then the ListView Control will get populated for each press of the nudge button. So if the user pressed the nudge button 10 times within 2 seconds, the ListView Control would populate itself 10 times. What I want is a slight delay on each key press so that it determines another key press straight after a keypress then wont process the first keypress, but only ...Show All

  • Visual C++ WEBService calling problem in VC++ application

    I have developed an application in VC++ 2005. This application calling a webservice developed in C#. This application can not execute in Windows 2000 machines. How to solve this issue I have checked this Application using depends watcher in windows 2000 machine. I have noticed one problem is there is version conflict in WS2_32.dll. Some functions not in this WS2_32 dll. How to correct this execution problem in windows 2000 machines pls help me..... Jefy I'm afraid the question is outside the scope of this forum. The C++ General forum deals with the VC++ 2005 IDE, libraries, setup, debugger, samples and documentation -- but not the use of all libraries and technologies. While ...Show All

  • SQL Server Not able to receive the mails

    Hi, I have an application which has to send mails based on some conditions using sql server notification services. The problem i am facing is that i am not receiving the mails even though the delivery status description is Delivery Succeeded. Could you tell me where exactly the problem lies. Thanks in advance. Are you using the local SMTP service on the box Or are you using an Exchange Server somewhere else on the network If the former, check the c:\inetpub\mailroot folders to see if your messages are stuck in there. If they are, check to ensure that the SMTP service is running on the local box. Are you using 2000 or 2005 HTH... Joe ...Show All

  • Visual Studio Express Editions Loop

    How do i loop, so that it does not return only 1 email address, and display it in EmailTxt (eg. email@email.com , email2@email.com ") For Each row As GridViewRow In GridView.Rows Dim cb As CheckBox = DirectCast (row.FindControl( "EmailChk" ), CheckBox) 'We are interested in if CheckBox is checked If cb.Checked Then Dim email As String = row.Cells(7).Text EmailTxt.Text = email + "," End If Next End Sub the code: "EmailTxt.Text= " is incorrect. you are pretty much over writing what you already have in that textbox. it should be: EmailTxt.Text = EmailTxt.Text & email & "," ...Show All

  • .NET Development xmlreader

    < xml version = " 1.0 " encoding = " iso-8859-9 " > < annPanel > < ann > < annID > </ annID > < annTitle > </ annTitle > < annBody > </ annBody > < annPubDate > < annDate ></ annDate > < annTime ></ annTime > </ annPubDate > < annPriority ></ annPriority > < annSender ></ annSender > </ ann > </ annPanel > how can i find last ann node if xml have too much announcement(ann node) with xml reader; and how can i get AnnID value with type integer; 1. You can read the file and each time you meet 'ann' element you remember all f ...Show All

  • Windows Forms DataGrid

    Dear all, I use DataGrid (NOT DataGridView) to bound to datasoure (Sql Server). and use column.format = "c2" to fomat column that present a price. but I don't know how to parse this column to save them back to data source Thanks you Hi, Thanks you your answer. I am sorry that I didn't describe the question clearly. I use dataAdpater to fill the dataset and bind the dataset and table to DataGrid. My question is : when I use column.format="c2" to format the column. I can not change the cell value.For example, There is a cell value "$2.12", I want to change to "$2.14". When I changed and leave this cell,the cell value come back to old ...Show All

©2008 Software Development Network