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

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

rolandpish

Member List

Kaos
MillBear
Suman Ghosh
FastRider30
Azael
JoeSmith
Nickeay
Penny Ong
Khammonh
johnTheDeveloper
Taylor Meek
yeos_lee
Bandile
SaraD
DMAR330
CodeMan7777
Kent Boogaart
liorhg
ZopoStyle
Alan Adams
Only Title

rolandpish's Q&A profile

  • SQL Server Neural Net algorithm

    Hi, Would anyone be able to provide a reference paper on the neural net algorithm implemented in SQL Server 2005 to better understand how it works Thanxs for any info. The Microsoft Neural Networks algorithm is a MultiLayered Perceptron implementation based largely on the conjugate gradient training method described in Christopher Bishop's book "Neural Networks for Pattern Recognition". ...Show All

  • SQL Server performance differnce between 3027 and 3033

    Hi, I have found major differnces in performance between the two versions - specially with queries that should be answerd from cache if i execute multiple times... Test Query - after the first execute it tooks 1 second with 9.0.3027 and 12 seconds at 9.0.3033. Is this a bug in the last ctp - does this change back in the released SP2 or is the something bad in my models for the latest version we used two equal machines - processed the db on 9.0.3033 and restored the backup on 9.0.3027 query looks like select {[4WochenSet]* [Zeit].[Tag].[Tag]. Members } on axis (0), Descendants ([Immobilien].[Geographie].[Bundesland].&[Wien]&[AUT], [Immobilien].[Geographie].[PLZ], SELF ) on axis (1) from Ang ...Show All

  • SQL Server ODBC support

    Can CE be called from an app. that makes ODBC calls Thanks. Ah, be that as it may, OLE DB and the .NET Framework providers are also industry standards. Yes, ODBC is certainly the oldest, and least flexible but granted, it's still in wide use. ODBC is supported in both OLE DB data access interafaces and .NET providers. The tiny SQLCe database is small because its support is focused on current technology. If it was more flexible in its interfaces I expect it to be larger and less useful for its intended purpose. ...Show All

  • Visual C# How to remake this in C#...

    Below is code from C++ file i'm trying to convert to C#: DWORD playerUnit[25]; DWORD addr; ReadProcessMemory (pD2, (VOID *)0x6FBCC1E0, &addr, sizeof(addr), &read); ReadProcessMemory (pD2, (VOID *)addr , playerUnit, sizeof(playerUnit), &read); This is my code: byte[] playerUnit = new byte[25]; byte[] bMemory = new byte[100]; IntPtr ptrReaded; ReadProcessMemory(pD2[0].Handle, (IntPtr)0x6FBCC1E0, bMemory, sizeof(byte), out ptrReaded); ReadProcessMemory(pD2[0].Handle, (IntPtr)bMemory, playerUnit, sizeof(byte), out ptrReaded); In the C++ code, I can see that the information read from "0x6FBCC1E0" is stored in "addr." I've been able to write that much, but now I'm stuck. Next, In ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XNA Content Builder - Build you content without Game Studio!

    I've made simple framework and app to build content without Game Studio, find it here . Thanks to Shawn about hint how to do it and thanks RSDN Magazine about great article about how MSBuild works. allso take look at this tread http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1059538&SiteID=1 ...Show All

  • Visual Studio Team System Moving files to a web server....

    Hi... I have a Team Build which builds a web application and puts all of the needed file in the "Drop Location". (Right now, it is " \\myserver\mydroplocation\mylocation\BuildName Release_{builddate}\Release\_PublishedWebSites\RootDirectory" I would like all of the web site files to move to a different location everything the project is build. How can I configure the TFSBuild.proj to copy these file in the proper location Thanks, Forch Check out the copy task. We use it in the AfterDropBuild target to copy the output to the appropriate location. ...Show All

  • Visual Studio Team System Close a MessageBox from a test

    I am writing some tests for a program that uses a few MessageBoxes. Is there anyway to detect when one comes up and/or close it once it does from the test so that I can run the tests unattended Through continuing research, I found a way to do this. A Timer's Tick event still fires if there is a modal form up (a MessageBox, for example). So create a Timer that has a sufficiently long interval to allow the code to generate the MessageBox and then in the Tick event use the SendKeys method to send an appropiate key or key combination to the program. It is best to disable ther timer during the tick event as well. Just a note, but the code I am testing does not always generate a MessageBox (exceptions, for e ...Show All

  • Audio and Video Development Regarding <head> </head> section of markup

    Hi there!! Is the <head> section of the markup accessible from the script. Can it be modified using DOM CORE API etc Thanks in advance Thanks a lot. Another question. :) Will the ( refer Attr Interface DOMCORE API) specified for an attribute be "true" if that attribute has been applied by referential styling . ( specified ) true attribute is specified in markup false attribute is not specified in markup true attribute is set by DOMCORE API false attribute is removed by DOMCORE API true or false attribute is set through referential style false attribute is set through applicative style Thanks in advance ...Show All

  • Smart Device Development Multiple rows selection in DataGrid

    Hello, I'm writing a program with CF2.0. I want my user to be able to select multiple rows from the datagrid. There is a way to do this Thanks in advance. It depends on what do you mean by "multiple". For example, selecting range of rows is default grid functionality. Selecting two or more rows which are not adjacent is not and you'll need to do it yourself (e.g. click event->determine coordinates->mark row as selected in your own table->change row color by using SP1 cell painting override). ...Show All

  • .NET Development function to Get the HTML giving the URL programmatically

    HI Fisrt 1. Im working from a Windows Service. 2. I have a URL 3. I need to bring the HTML content from that URL to later print it My question : Is there a .NET Class that can works inside a Windows Service that allows me to get the HTML content if I give it as an input parameter the URL Any link, doc Thnks ky ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XNA help

    Hi, I'm reallly new at XNA but i was wondering, after I have coded my game and want to test it on my 360 how do I get it to my 360. Do i need like the XDK for the 360, or do i jsut FTP, or do i have to have my 360 hooked up to my WindowsSP2 computer. I know how to write C# (kinda im still learing) but i just can't figure out how to get the gam to my 360. please help Dootuz Please read the XNA FAQ Q: Why isn’t there any Xbox 360 support in the beta A: Microsoft does not release beta software on the Xbox 360 for security reasons. Thanks to the design and implementation of the XNA Framework on both Windows and Xbox 360 however, games developed using the XNA Game Studio Express beta star ...Show All

  • Visual Studio Express Editions A simple question. :/

    How do I get rid of "." from a TextBox input For e.g., make an output of "24" from an input of "2.4" ...Show All

  • Smart Device Development standalone database application development sample code needed

    I am new to vb.net.I want to develop a database application for windows mobile 5.0 using visual basic in visual studio 2005. this is the outline for this application. It is a address book application. I dont want to use very heavy database like sqlmobile. If I could use MS-access I will be very glad to do so. I need to enter data,edit it and delete it. If needed I want to take print out of the stored data by directly printing to the printer(without a computers help) via blue tooth or infrared. I am sure whatever I have stated above is possible. I would be glad if you could help me in this direction. I need source codes for these stuff. Please let me know where I could find help for these. Are there any books available for windows mobile 5. ...Show All

  • Visual Studio Team System Request for suggestions on how to set up dependent work items in MS Project's integration into Team System

    Hello All, We are looking for suggestions on how to best set up a work item that are dependent on first the completion of another work item in MS project and have that propogate into Team System. Thanks in advance for your help :) Bob Hanson Bob, As Naren pointed out there's no out-of-the-box support for this, but you can try the following one: In MS Project, how do you mark a task as complete By making the %age complete as 100% Or by chaging the state to completed For this solution you've to resort to by changing the %age complete Do the following: 1. Mark "State" field as "read-only" in the form by using ReadOnly attribute of Control element 2. Somehow make the State column in MS Project ...Show All

  • Visual C# How to Iterate through List or IList

    i can add the values to the IList or List, if I need to get these values in the way they went it...Say I added 5 addresses to the list and I want them one by one... I can use foreach and get all, but I need a way to only get one at a time or two at the max as I need to update some textboxes... First When I do this : if(something[0]) // Cannot implicitly convert type 'object' to 'bool'. An explicit conversion exists (are you missing a cast ) Then If I try to conevery to bool by doing this Convert.tobool(something) // Thats where it throws an exception... ...Show All

©2008 Software Development Network