Renderflash's Q&A profile
Smart Device Development datareader is not good to complex sql statements ???
on a project i have the code: Dim Dr As SqlCeDataReader Dim Cn As New SqlCeConnection(strConn) Dim SQLstr As String = "SELECT TParametros.NumPDA, " & _ "TParametros.CodAgentePDA, TEmpleados.NombreInterno, " & _ "TParametros.IdEmpresaPDA, TempresasPropias.NombreEmpresa " & _ "FROM(TEmpleados, TParametros, TempresasPropias) " & _ "WHERE(TEmpleados.Codigo = TParametros.CodAgentePDA " & _ "And TParametros.IdEmpresaPDA = TempresasPropias.IdEmpresaPropia)" Dim Cm As New SqlCeCommand(SQLstr, Cn) Cn.Open() Dr = Cm.ExecuteReader If Dr.Read() = True Then .................... but give it to ...Show All
SQL Server Newbie Advice Installing SSRS
Hi, I've decided to install SSRS (2005) on my windows XP machine. I'm not very familiar with IIS (i'm currently using version 5.1) and I think between IIS and SSRS, i've managed to break something. I've been looking at various articles to try and get some clarity on my predicament. However, i'm not getting any joy with them.s I have located the logfiles (which I can provide). Unfortunately, I have no idea how to intepret the information contained therein. Can anyone help Many thanks in advance Clint Please provide more information. First make sure every tab in the configuration tool is green. Then try to access your report server virtual directory. If there is an error on the web page please copy it here. ...Show All
Visual Studio 2008 (Pre-release) CollectionDataContract OnSerializing not called
Is there a way to hook into the OnSerailizing event of a collection I've tried: [ CollectionDataContract ] public class EntityCollection : Collection < Entity > { [ OnSerializing ()] private void OnSerializing( StreamingContext context) { //never called } } I found a workaround, but it isn't pretty. You can wrap your collection within another DataContract. This outer class can pass OnSerializing, OnSerialized invocations to your colleciton. [DataContract] public class Entity { [OnSerializing] private void OnSerializing() { this.childCollection.OnSerializing(); } } This worked alright for me, as my EntityCollection instances were always children of an Entity inst ...Show All
SQL Server sql query
Hello All, I am using sql server 2005. I have a table with the following data.... Name date time load base Joe 01-01-2006 8pm-9pm 100 500 Joe 01-15-2006 8pm-9pm 100 500 Joe 02-10-2006 8pm-9pm 100 500 Joe 01-15-2006 8pm-9pm 200 500 Joe 02-10-2006 8pm-9pm 200 500 Joe 02-25-2005 8pm-9pm 200 600 Mark 01-20-2006 8pm-9pm 100 500 The first three rows have common data, but for the date. Similarly, the 4th and 5th row are similar to first three rows, but for the "load& ...Show All
Audio and Video Development How to Play Video from Stream (Stream Decoding) ?
hi i want to play a Video from stream by streaming encoding . how to do thanks I assume you just want to do playback and you're not writing any code. If so, try your post on the Windows Media Player newsgroup: http://www.microsoft.com/windows/windowsmedia/community/newsgroups/WindowsMedia/default.mspx dg=microsoft.public.windowsmedia.player&lang=en&cr=US If you are writing code, then pick the appropriate Windows Media newsgroup from here: http://www.microsoft.com/windows/windowsmedia/community/newsgroups/WindowsMedia/default.mspx d=1 ...Show All
Microsoft ISV Community Center Forums Select/cut/insert
I need to select all rows in an Excel worksheet in which the value in cell "F" is not blank, cut each of those entire rows and insert them in another worksheet at row "4". What i usually do is search through the sheet via a FOR ... NEXT x or a WHILE ... WEND untill i'm at the end of my sheet. During that search, i verify if the Cell(x,6) (where 6 would stand for Column "F") contains the required value. If that's the case, i cut/copy the entire Row(x) and paste it in the designated Workbook or Sheet. The question is, you mention that you need to paste it on row "4". What if you find more then one Cell in column "F" that is not Blank Will you need more the ...Show All
Windows Search Technologies outlook 2007 is constantly indexing
i have installed outlook 2007 onto a winXp machine for a customer and the machine was left on 2 nights and the indexing is still working (or maybe finished and restarted ) in any case the CPU is constantly accessing the hard drive and therefor slowing down the machine Norton is not installed, how can we either stop the indexing to see if that is the problem and if it is how can we correct the situation On winXP you can right-click on 'magnifying glass' icon in the notification area of the taskbar and select 'Snooze indexing' button. This should stop indexing from proceeding (while having Windows Search still running). Alternatively you can stop Windows Search Serivce (wsearch) in Services MMC sn ...Show All
Internet Explorer Development Alternate New Tab
I understand that IE7 allows a new tab opened to either be blank or the same as your current home page by setting the registry value for UseHomepageForNewTab to 1. Anyone have a way to by pass the defaults and open an alternate page not blank and not my home. Ideally i would want my homepage and the new tab to be a search engine page. bypass not pass. the google bar at the top right corner was new to me and this accomplishes what i want to do. thank you for pointing it out . ...Show All
Windows Forms Howto bind a comboBox to a comboBox ?
I am submitting to th DB: SELECT DISTINCT ScenarioDateTime, UA FROM PageItem I need one combo to display "ScenarioDateTime", I need the other one to be bounded to him displaying "UA" thanks I'm not sure if this helps, but try to google "databind relations" + your programming language.. I beleive I've read an article about this. Binding to a relation in a dataset might be what your looking for, but as I said, I'm not sure about this. Hope this helps. O ;) ...Show All
Game Technologies: DirectX, XNA, XACT, etc. DepthStencil array
What is the use and the conditions of use of a DepthStencil array ( SetDepthStencilArray ) Could someone also give an example of application Thanks. Well as the FX file could contain an array of depth stencil view objects you need such a function to set elements of this array. ...Show All
Smart Device Development .SDF file be converted to .CSV
Hello I'm new to this forum my question is Can a .SDF file be converted to .CSV using VB thank you Tim thank you, but I coudn't find anything .. do you know any url of link where i can find documentation maybe thanks again Carlos ...Show All
Visual Studio 2008 (Pre-release) Cannot open SvcConfigeditor.exe.
Hi, I am unable to open SvcConfigEditor.exe. It does not open and I get a message that it has encountered a problem and needs to close. Thanks, Akhil Is there another work around for the June CTP sn -Vr doesn't help for that release. Al ...Show All
SQL Server Apply SP2 after applying CTP?
Should I apply SP2 even though I have already installed the community preview ...Show All
.NET Development XPathNavigator.MoveToFollowing
Hi, I am using MoveToFollowing method to get info about xml element which I want to modified or so. However after moving to one element I cannot move to the previous one! It is need to move to the root first. It is not a good solution. What should I do in order to have access to all elements no matter where they are thanks for help Ela Yes I found MoveToPrevious as opposite to MoveToFollowing. I do not know in particular moment at what node I am in XML file. I just want to know what is the value of any element that's it. Solution: navigator.MoveToRoot() navigator.MoveToFollowing(..) is not nice I would like to have a method which "moved me" to particular element ...Show All
.NET Development Intellisense not working
Hi, I have a project that I have been working on for a few weeks now, but when I opened it yesterday, all my Intellisense (for self-coded elements) has disappeared. The .ncb file is still in the right place, and I didn't change any code, but still today there is no Intellisense - is there anyway to force .Net to rebuild the intellisense file for a project Thanks, IxxI Is everything missing or just the documentation portion (i.e. you see MyClass.Foo but not the descrption and parameter info) Does the FCL show up fine but not your personal code Intellisense uses reflection (I believe) to get the type and member information. For the actual summary and parameters it relies on the generated ...Show All
