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

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

Deeps_123

Member List

Baris ERGUN
Kartit
Baris ERGUN
gkostel
sriniathp
AboOmar
Surezsu
medel
rwerner
one_pom
Dave van Bale
jhidey
Pocketmnky
Videosurfer
Pockey
NetDiver
Techman1950
Shadoware Technologies
Abongs
BadRay
Only Title

Deeps_123's Q&A profile

  • SQL Server Problem with PAGE HEADER

    Dear All I am Sundaraguru from India. I have problem with Reporting services header showing time.. I designed the one report. That report Size is 8inch x 41 inches.. What are problems i having in this reports: 1. Report header is not coming in second pages. ( For report header i am not using the report header area, Because the header informations will varying based on the data's. That's Why I placed in the detail sections) 2. While Seeing the preview time it is showing only 11 page ( for 2 record) after exporting to PDF format it showing 32 pages. How i can solve the above problem.. I have to get is all the page's i have to show report header in all the pages. I am using SQL Server 2005 , & VS.Net 2005 With November 2006 CTP And ...Show All

  • SQL Server Sample Report Deployment

    Hi all, I tried to deploy sample report to http://myserver/reportserver and I got the following error, can someone provide some tips TITLE: Microsoft Report Designer ------------------------------ A connection could not be made to the report server http://lasc06/reportserver . ------------------------------ ADDITIONAL INFORMATION: Client found response content type of 'text/html; charset=utf-8', but expected 'text/xml'. The request failed with the error message: -- <html> <head> <title> SQL Server Reporting Services </title><meta name="Generator" content="Microsoft SQL Server Reporting Services 9.00.1399.00" /> <meta name="HTTP Status" content="50 ...Show All

  • Visual C# Cross-string operation not valid...

    Okay, I searched for an answer to my question and found this: Erwin van Hunen wrote: Officially you are not allowed to update control properties from a thread different from the thread the control was created on (the control runs on the 'main' thread I assume where as you want to set the label of the control from a second thread). VS2005 is a bit more 'picky' about this (as it should). You will need to invoke the method on the control to set the property. I use a small helper method to solve this: delegate void SetValueDelegate ( Object obj, Object val, Object [] index); public void SetControlProperty( Control ctrl, String propName, Object val) { PropertyInfo propInfo = ctrl.GetType().GetProper ...Show All

  • Visual Basic Lesson 9: Databinding Data to User Interface Controls

    I'm about to loose my mind...I've watched the video and created a test application by following the steps in the video and have the following code generated by draging the Registration table of the dataset onto the VB Form like they do in the video and also added a message box to show that the row actually got updated. Because I'm using details view I always get a 1 saying that a row was updated but when I restart the application there is nothing in the database. What am I doing wrong Please help!!!!!!!!! Private Sub Form2_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load 'TODO: This line of code loads data into the 'MembershipDataSet.Registration' table. You can move, or remove i ...Show All

  • Visual Studio Express Editions Assigning special keyboard keys to buttons

    hi there guys. Im currently designing an app that enables disabled users to put data into controls through the use of an onscreen key board I have created. I have figured out how to assign the values of letters, numbers and special characters onto my onscreen keyboard but i cannot get around assigning values of keyboard keys such as 'Tab', 'Up arrow','Home' etc. Does anyone have any ideas on how to achieve this thanks in advance Matt Did you know that Windows 2000 and XP already provide an onscreen keyboard in Start - Accessories - Accessibility - On-Screen Keyboard You can start this up using Process.Start("osk.exe") ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. MouseState.ScrollWheelValue always 0

    Hi, I want to use the mouse scroll wheel to zoom. In the tutorials I have tried, MouseState.ScrollWheelValue works fine, but in my own test program it always returns 0. The main difference I can think of in my test program is that I am not using the Game class. Instead I create my own GraphicsDevice and use a standard System.Windows.Form. Is there any initialization I have to do for MouseState.ScrollWheelValue to work This is the code for reading mouse state. All of it works, except mouseState.ScrollWheelValue which always returns 0. MouseState mouseState = Mouse.GetState(); myMouseLocation = new Point(mouseState.X, mouseState.Y); myIsLeftButtonPressed = mouseState.LeftButton == ButtonState.Pressed; int currScrollWheelValue = m ...Show All

  • SQL Server Show dimension members only if there is data associated with them

    Hello, Is it possible to set-up dimensions to contain only members that have a match in the fact table I would like the dimensions pull-downs to show only members with data. Thanks, Philippe Hi, I did more testing on this and it works great. Users like it. I do not see why it would not work when you have multiple fact tables. The query would be making multiple joins that's it. Regards, Philippe ...Show All

  • Visual Studio Express Editions Trouble with database connections

    Hello all, I'm trying to get some data from a table in an Access database, and my program is behaving weirdly (at least i think so). Ok, so for now, i want to run this query: Dim query As String = MonthCalendar1.SelectionStart ' + " " + ComboBox1.Text + ComboBox2.Text + " " + ComboBox3.Text Dim myQuery1 As String = "SELECT [BID]FROM Table1 WHERE [Date]=" + query + "" Dim myConn1 As OleDbConnection = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:Documents and settings\dbase.mdb") Dim myCommand1 As OleDbCommand = New OleDbCommand(myQuery1, myConn1) myConn1.Open() Dim myReader1 As OleDbDataReader = myCommand1.ExecuteReader(CommandBehavior.CloseCo ...Show All

  • Visual Studio Express Editions .dll help

    hello. I will explain my problem I have an application, in that is a webbrowser and I want it to switch to an url on a user specifiet time. but now. I want the code (which I already made) in a remote .dll file (or another one, if you can recommend one) with all the url's it should go to. Example: Select Case timername Case 0 WebBrowser1.Navigate( "URL" ) timername = 1 Case 1 WebBrowser1.Navigate( "URL" ) timername = 2 End Select Why do I want it in a remote So the application can update it when I have an update for the url's and not have to update the whole application. So how do I do that (I don't want it in the resources but in a folder on the hardisk (C)) Note: this application has a use! You coul ...Show All

  • Software Development for Windows Vista Transaction Scope Problem

    Hi I am working on Transactionscope class. when error occur the data don't get rollback. PC Detail : Window XP Professional. using Sql Server 2000 with service pack 2.0. Below i m sending the code which i have written. Pls tell me if any setting is required related to Sql / Operating system. ----------------------------------------------------------------------------------------------- [Transaction(TransactionOption.Supported, Timeout = 1200)] public class MMCalender_Save : ServicedComponent { [Microsoft.SqlServer.Server.SqlMethod] public Boolean Save(DataSet dSet, ref EMSPLUSDBConnection EMSPLUSDataConnection, String sMode,Single UserCode) { SqlCommand sCom; SqlConnection sCon; ...Show All

  • SQL Server Displaying Chinese Character in varchar columns

    I would like to store some data in Chinese Big5 using a varchar column. However, all the data turn in to some garbage characters like Ru¥Uao . I ran into no problem if i use nvarchar but I would like to use varchar because I can only store less than 4000 characters using nvarchar. It works if I paste the characters directly into the SQL Express Client. It only turns into some garbage characters if i use C++ to insert the data. I am using Chinese_Taiwan_Stroke_BIN collation (The chinese won't show if I use the default latin collation) on the column and my computer regional setting for non-unicode application is Traditional Chinese(Taiwan). Any ideas how can I fix this problem I am suspecting there's a problem with my computer setti ...Show All

  • Visual C++ calculate elapsed time

    Hello everyone, I want to record the elapsed time for a specific function invocation. What is the most accurate way I should use on Windows platform Which function call should I use regards, George This is a topic that's been discussed over and over again here at the forums. If you do a couple of site wide searches you will find them all. One relatively recent thread would be http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=990282&SiteID=1 . ...Show All

  • .NET Development I need help about WPF

    hi,all.Im a newbie with .net development. Today my computer installed the VS2005 extension for WCF and WPF.I make a WPF project,but I confused a bit of programming method.I spend 3 more hours for a program of "hello,word". Now,I got problem: I make controls of button and Image in Winform.I wanna let the Image display a picture which path of "c:\shee.jpg" when I click the button.Please tell me how to figure it out,I really a appreciate for you. Thanks anyway. Put the image in the image control and set its visibility to false. At run time ie in the code of click of button se the visibility to true. I think that should help or i have misunderstood ...Show All

  • .NET Development XPathNavigator- cannot use XPath functions...

    I'm trying to evaluate an xpath using XPathNavigator. My xpath uses the XPath function current-time(). When I call the Evaluate() method, it throws an exception complaining about XsltContext: Namespace Manager or XsltContext needed. This query has a prefix, variable, or user-defined function. I've tried associating a namespace with the function as below: XmlNamespaceManager mngr = new XmlNamespaceManager ( new NameTable ()); mngr.AddNamespace( "fn" , @"http://www.w3.org/2005/02/xpath-functions" ); expr.SetContext(mngr); It still complains about XsltContext. I would expect this if the function was user-defined, but this is a standard XPath function. Does anyone know how to evaluate XPaths ...Show All

  • Visual Studio Express Editions null values

    i have connected a database to a vb application. however, i have a problem with null values, in particular checkboxes. is there a way in which i can enable null values in a vb program and how to load unchecked checkboxes succesfully without an error message appearing i had ever meet the question,this is my method: if ds.Tables("FootyDataSet").Rows(0).Item(3)<>DBNull.Value then box1.CheckState = ds.Tables("FootyDataSet").Rows(0).Item(3) end if ...Show All

©2008 Software Development Network