Software Development Network Logo
  • Visual C#
  • Windows Forms
  • VS Team System
  • Game Technologies
  • Visual FoxPro
  • Visual C++
  • Architecture
  • Windows Live
  • Windows Vista
  • Smart Device
  • Microsoft ISV
  • Visual J#
  • SQL Server
  • VS Express Editions
  • Visual Basic

Software Development Network >> David Friesen, B.Eng's Q&A profile

David Friesen, B.Eng

Member List

ReNgA
Thomas Liebald
SonaliC
aboudzko
smilesai
sjr
ToddKitta
Mardo
laja
Daniel Petrik
SkyMike99
Scott52
Kegel
water4d
WbTest1-
EOJRR1
GimGif
mike hartnett
scylla
Joel Holder
Only Title

David Friesen, B.Eng's Q&A profile

  • SQL Server Problem with <Select a value> in report parameters

    Hello, Everyone please, could you make clear how can I avoid appearence of <select a value> in drop downs at all. thanks but doesn't work =) I have a next drop down with predefined values: Show all = -2 Local = 0 Another one = -1 I make default value = -2 and when I open report via browser I get this drop down with prepopulated values and currently chosen is Show all BUT also I can choose <select a value> P.S. I afraid that I should write custom code for UI of Reporting Services Thanks, lads ...Show All

  • .NET Development I Will Give Anyone £5 Via Paypal If They Can Answer Me This Question

    Hey, I'm new at any of this kind of programming, but i have a problem and someone with knowledge about the whole sitution would be a great help I am using a program and when i try to use a certain feature it says "error, winsockinit must be called first"... Basically in simple terms how do i do this Thanks Mike BTW im serious about the 5 pounds I think the problem is that you are trying to use another program that has a problem.  The above code is what you would have done if you were writing a program.  At this point, about all you can do is contact the author of the program and see if they have a ...Show All

  • Visual C++ Compiling fftw - what flags should I use for best performance?

    Greetings, I have compiled the fftw fft package from www.fftw.org  using the Visual C++ 2005 Express Edition beta 2 but I can`t seem to find a good choice of flags for optimizing the code. As I run the benchmark code that comes with the package I get slower performance with msvc than if I compile with gcc 3.3.3 under cygwin which seems strange because I usually see the opposite behavior. Has anyone else tried to compile this package with the current beta and have any suggestions for choosing optimization flags thanks in advance, Carlos Thanks for digging more into this. Since you sre still seeing a slow ...Show All

  • Architecture Spcification of web services you need from third-party company

    I want third-party company to implement bunch of web services. I wonder what it is the best way to specify them. I can create wsdl for them, is it ok Interoperability is very important because services will run on non-windows machine and clients will run on windows boxes. thanks in advance for any info Pawel, Are you saying that you want them to use web services that you have implemented We have toyed with this question ourselves. There are, basically, two avenues of approach: Deploy your wsdl in a public or client-accessible arena, point them to it, and wish them luck. Or, what we have considered, and begun doing, is creat ...Show All

  • SQL Server MDB to SDF

    Hello, everyone. I am a new developer of .NET CF. Currently, I have a project that needs transferring tables from a existing Access database to SQL Server 2005 Mobile database. Does anybody know how to do it Thanks in advance.     Are you talking about MS Access Database or MS Pocket Access Database. In any case, we dont have any tools for doing that automatically. However, you can always open two cursors (Datasets) against two DBs and transfer the data one row by row. I know its a slow operation but it is all design time. Thanks, Laxmi Narsimha Rao ORUGANTI, MSFT, SQL Mobile ...Show All

  • Visual Studio Team System Product Studio to VSTS Work Item Migration

    Is there any app out there to migrate Product Studio work items to VSTS Thanks. Contact me.  We use it to migrate our current teams and it works well.  We're also building a tool that will walk the PS admin data and create a currituck workitem type.  ...Show All

  • SQL Server Help with "flattening" a table

    Hi All, I have a database that stores some data from two questionnaires. Table One has been created in a fairly straightforward manner. It has the following fields: ID, variable1, variable2, variable3, ..., variablen Table Two is a bit more complicated. I'm guessing whoever created it wanted to do things a bit more "efficiently" and it has the following fields. ID, variable, response. If I wanted to, say, extract variables 2, 3 and 5 from Table One I could write: SELECT ID, variable2, variable3, variable 5 FROM TableOne I don't know how to do a similar thing with Table 2 using only one statement. ie, I can ...Show All

  • Visual C++ LINK : warning LNK4049: locally defined symbol "_malloc" imported

    As I already told, that i made DCM converter using DICOM Viewer, CxImage and DCMTK. but everytime I build DCm Converter I get 3 warnings: LINK : warning LNK4076: invalid incremental status file "Debug/DCMConverter.ilk"; linking nonincrementally LINK : warning LNK4049: locally defined symbol "_malloc" imported LINK : warning LNK4049: locally defined symbol "_free" imported Can you tell me Why i am getting these warnings and how to remove these warnings. Seams that _malloc was defined as an exported function but the same module provides the import. Check the libraries you use. ...Show All

  • Visual C# progress bat in server and client file transfer

    hi how can i show the progress of some data transmision over the sockets When you use the Socket.Send or Socket.Recieve method you can send chunks. Just get the full package size and then calculate what you allready sended or received. using (FileStream fileStream = new FileStream( @"c:\myfile.bat", FileAccess.Read, FileShare.None ) { long bytesToSend = fileStream.Length; progressBar.Minimum = 0; progressBar.Maximum = 100; progressBar.Value = progressBar.Minimum; long bytesSended = 0; byte [] buffer = new byte [ 1024 ]; int bytesReaded = fileStream.Read( buffer, 0, buffer.Length ); while ( bytesReaded ...Show All

  • Windows Forms How can I use a masked edit box for the editing of a property in a PropertyGrid?

    Hello, After reading the documentation and some online articles about UITypeEditors, TypeConverters etc., I didn't find a way to use a masked edit box for the editing of a property, or to forbid the input for a property and allow only the custom drop-down (which I have already constructed and don't need any instructions about this). Can anybody help me on this Thanks, Kostas ...Show All

  • .NET Development the My namespace and terminal services/ citrix servers

    To quote a recent article in MSDM mag:-"My.Settings encapsulates a powerful infrastructure for manipulating application settings, such as Web service URLs and user preferences" I am particularly interested in the storage and retreival of these setting on a terminal server and/or a citrix server. Before i spend too much time playig with this feature, i am curious to know about any implications or problem that My may have in this kind of environment, ie which computer is  My.Computer (i assume the terminal server on which the app is running) and what about persisting user settings locally- how or even can these work, e.g are local fo ...Show All

  • SQL Server SQL and Record Count and Web service

    I have a web form with radiobutton list and checkbox list criterias which calls a Web service to generate SQL's SELECT statement.  Then I use the "ExecuteScalar()" method to try and pass the one string value back to the web form that called the web service.   1)  How do I concatenate the checkbox list into the SELECT statement, ie., "SELECT * FROM Customers WHERE <radiobutton value> = 'A' + <checkbox value> = '1' AND <radiobutton value> = 'A' + <checkbox value> = '2' AND <radiobutton value> = 'A' + <checkbox value> = '3' AND <radiobutton value> = 'B' + <checkbox value> = '1' ...Show All

  • SQL Server Delete subreport at runtime?

    Is it possible to delete a subreport from a main form at run time I am trying to find a work around for the inability to conditionaly format a page break. I have a main form that has 10 subforms. Some of the subforms won't have any data (depending on the parameter values). When I export the main form to excel each subform needs to be in it's own excel tab. Obviously, I don't want a tab if there is no data. Any suggestions Did you try setting the "NoRows" property on the subreport reportitem in the main report to e.g. =" " (one blank) -- Robert ...Show All

  • Visual Studio Question to install the report in a server?

    I have a project in local PC and it works to me correctly (windows XP and Visual Studio 2005 Professional). I must install SQL Server in the server (Windows 2003 Standard) so that it works to me Thanks ...Show All

  • Visual C++ Floating Point Addition Problem

    I have a sticky and weird problem. I have two C++ programs running under Visual Studio 2003. One program works correctly, the other has problems adding two double values. Take the following 3 simple test lines. double dTest1 = 0.00061234567890; double dTest2 = 3359.01234567890; double dTest3 = dTest1 + dTest2; Program that works, dTest3 = 3359.0129580245789 Program that doesn't work, dTest3 = 3359.0129394531250 Notes: 1 - The program that doesn't work may have come from the 16 bit world. 2 - I have checked the compiler and linker options between the 2 solutions and there isn't anything that is obviously different. 3 - I have turned ON the di ...Show All

©2008 Software Development Network