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

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

oneforall2012

Member List

mwoehlke
bertH
mblas
Ticia
Leo Kent
KlausWiesel
BillR2
Saibal Goswami
djm-web
crbeckman
kwcah
Mindy Riddick
bob the unknown from mars
ace333
Dhatri
ChandraP
Zubair Masoodi
Ajeesh
mfeo
Steve Jo
Only Title

oneforall2012's Q&A profile

  • SQL Server Forward looking thought: Raw Files

    I assume that MS has a directive never to change the format of SSIS raw files... However, what I'd like to know is that when I'm planning long-term systems where I've got backups of data (staging, logging, whatever) using raw files, can I be assured that future versions of SSIS will be able to read those raw files I assume a certain level of backwards compatibility, however, I'm just curious if I should think about building processes into my projects that would factor that in and rebuild raw files everytime a new/major release of SSIS comes out. Phil We may change the format of SSIS raw files in any version. If we do, then we will ensure that the previous version can be read – but we will not make a continuing guarantee that every ...Show All

  • Software Development for Windows Vista Using LUA/UAP in custom applicatons

      Hi, The December CTP of Vista has a modified version of UAP/LUA. There's a shield icon (windows colors) next to any setting that requires aleveated status (brings up the verification dialog instead of an earlier dialog that asked for admin password). Also, for other tasks such as opening a file, modifying registry, modifying the drive, etc the dialog pops up asking the user to verify the action. The question being, if I have several settings in my application that I'd like to be either Admin specfic or just out of concern I don't want the user to click on that unknowingly (i.e. might pose a danger to the system/security, etc). What should I be doing are there APIs in the platform SDK/Windows SDK for Vista that allow me to b ...Show All

  • Visual Basic Need basic information on Bitmaps and Images.

    Hi, I'm currently working on a routine which calls data from half a dozen Sql tables, produces from one to six drawings on a page, then prints out the result using ScreenCapture. The printing is done on a Hp LaserJet and there is a delay of 15+ seconds from downloading to printer, to getting the print out. Would it be feasible to save the drawings as Bitmaps in Image files in a Collection, and if so, would the print time be quicker or longer. Tailor Would it be feasible to save the drawings as Bitmaps in Image files in a Collection Yes. and if so, would the print time be quicker or longer. My guess it that the latency is with the printer itself. I would not th ...Show All

  • Visual Basic Question on DataGridView Data

    Pardon me for posting twice in quick succession, but I've always found that if I post two questions in a thread, only one gets any attention. I've got a DataGridView where each line displays information from a class called 'Flag', which has a number of variables. One of these variables is a URL for a page that the particular 'Flag' pertains to. But rather than displaying the URL in a column, I'd like to display a clickable link that just says "Video" and, when clicked, opens a new window with the URL. How can this be done The only things I'm familiar with on DataGridViews are .DataPropertyName and .Name, so I don't have any idea how to set all the text for a column to one text value, or how to handle the click event of each ...Show All

  • SQL Server Problem for Calling A Stored Procedure, Please help.

    I am writing a Stored Procedure for other server (using C++ to receive the output values) as below, where @Total , @balance, @A are output values create proc [MaxTime] @number varchar(30), @numbera varchar(30), @numberb varchar(30) as begin declare @balancefloat declare @table varchar(20) declare @freetotal varchar(20) declare @SQL nvarchar(4000) declare @A float declare @Total float select @balance = balance, @table = table, @freetotal = freetotal from info where number = @number SELECT @SQL = 'select @A = A FROM' + @table + ' WHERE LEFT(code, 1) = ' + LEFT(@incomingcode, 1) + ' AND CHARINDEX(LTRIM(RTRIM(code)), ' + @incomingcode+ ') = 1' + ' ORDER BY LEN(code) DESC' exec sp_executesql ...Show All

  • Visual C# how to add timeOut without using thread.sleep

    hi, i have wrote a client/server ClassLibrary, i use separated thread to receive packets(receiver thread) , and i receive packets but not in order, for example if i send requestA and request B, i can get responseB b4 responseA, and in some cases the server will not send responseB (this is exactly how i want it to work) so here its my question, How can i add timeOut to my class (without blocking) right now i use thread sleep something like this int counter = 0; bool MethodB() { Client.SendRequestB(); while (counter < 1000 && responseB == null ) { counter++; System.Threading. Thread .Sleep( 60 ); } if (responseB != null ) throw new ABCException ( "TimeOut: You sent R ...Show All

  • SQL Server datetime to date

    Hi, everybody. I have a parameter from datetime type. Its' values are stored with date and time values together in the database. But I only want to show its' date value to the user. How can I do this Thanks Jan. But my parameter's value is not shown in the report. So I can't write an expression or a method to this.( as Datetime.ToString() ) I think I should do this by SQL side. But when I use a convert or cast function on sql side , there exists a type conflict. Anyway, if you find a solution, share it with me please. ...Show All

  • Visual Studio Tools for Office Created a project, published it... but errors out on install.

    This is the error i'm getting. System Update Required Unable to install or run the application. The application requires that assembly office Version 11.0.0.0 be installed in the Global Assembly Cache (GAC) first. Please contact your administrator. My application was made in C# .net 2.0. This application access MS Word. Thank you in advance! Additionally Point 3 and use of Managed code in Office 2000 is not officially supported without the use of PIA's :( and there a few gotchas on using tlbimprt on Office 2000 COM objects. Regards ...Show All

  • Windows Forms VS.net 2005 Installer: Not enough storage is available to complete this operation

    Hi All, I have created a VS Deployment project in VS.NET 2005. I added 75 files. Some of which a re large (>600megs). The total project size is anticpated to to be 2.2 gigs for the setup file. Upon building the project, i get the "Not enough storage is available to complete this operation" error. I have 30 gigs of space on my computer and 1 gig of ram and the install will not come close this. I have checked through the other forums and didn't find anything other then an MS expert saying is a known bug with files over 400megs. That post is 3 years old. I am hoping there is a resolution to this problem. Anybody Thanks, Steve Sinclair Hi, Thanks for the response. There are n ...Show All

  • Smart Device Development deploy windows mobile 5 app

    I am trying to set up a web deploy for wm5 on a pocketpc. How would you set up the link to install 4 cabs (exe, sql mobile, sql client and .net2) plus install the shortcut in the start menu use NSIS.  http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=511799&SiteID=1 ...Show All

  • Visual C# RadioButton and ApplicationSettings

    Hi, I have the following problem: A form with one groupbox containing two radiobuttons whose checked-properties are bound to settings-properties: radioButton1.checked is bound to bool Settings.Default.gwmKeep radioButton2.checked is bound to bool Settings.Default.gwmDelete When I run the Application, I have to click twice on these radiobuttons to check/uncheck them. Is this behaviour intended Do I really have to track manually if a radiobutton is clicked Please help, Andy Hello All. Andy: Apparently, there is a bit of a problem with radiobuttons and property binding. I would suggest handling the CheckedChanged event and setting the settings properties accordingly. HTH. ...Show All

  • Windows Live Developer Forums vista problems with windows live messenger

    hi i am having big time problems i just downloaded vista home premium upgrading from home xp and when i got on all of my messenger live contacts and the program were gone only yahoo and aim were there i want them back i had over 80 contacts on there please help me to retreive them Hi, Just installled live messenger in my new latop with vista (basic) no problem at all.. but i have problem with the yahoo messenger (8.1).. they say its compatible with vista.. now.. i am having a "f" problem signing in.. haa!!! tried everything.. even that autotunning with TCP...... nothing works.. so if anyone.. knows how to fix or having the same trouble and found any solution .. please let me know also.. spread ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. problems creating a triangle strip for a terrain section

    Hi I am having a few problems creating an index buffer for a triangle strip for a terrain section. I have a section similar to the following. 0 - 1 - 2 | / | / | 3 - 4 - 5 | / | / | 6 - 7 - 8 I define my triangle strip using the following indices also with one degenerate triangle, I have bolded it so it stands out better. 0, 3, 1, 4, 2, 5, 5, 3 , 3, 6, 4, 7, 5, 8 My first question is, is this degenerate correct it seems to be correct, but my next problem is what confuses matters as it really affects wether my terrain tile renders correctly without gaps. When it comes round to making my DrawIndexedPrimitives call, I have to specify the number of vertices, and the total number of primitives. I would have thought t ...Show All

  • Visual C# "Add Web Reference" wizard failure resolved by installation followed by uninstallation of IPv6

    Hello, I am using VS2005 Professional. I had encountered a problem with adding a web service, where the following error message would be shown: "Error creating the Web Proxy specified in the 'system.net/defaultProxy' configuration section." Steps to reproduce: 1. Start a new project (C# Console Application) 2. Project -> Add Web Reference 3. Enter URL to WSDL (or any URL) 4. The error message above appears in the textbox labeled "Web services found at this URL:" Investigating the problem further, the method System.Net.WebProxy.GetDefaultProxy() returned the error: System.Net.Sockets.SocketException: An address incompatible with the requested protocol was used. System.Net.SafeCloseSocketAndE ...Show All

  • Visual Studio Team System how to use webtest plugin

    hi all i m new to MSTS . i just record a web test details are i m creating new users from a signup page.i want to concatinate a variable with all params so that can i can check 100 users created with respective values.like David1,david2,...... for this i have to concatinate a variable with param which gona post.i have add webtest plugin public override void PreWebTest(object sender, PreWebTestEventArgs e) { e.WebTest.Context["TestIterationNumber"] = testIterationNumber; testIterationNumber++; } but i dont know how it will increments upto 100 and how i can use the variable holiding value. Thanks aq There is a built in context parameter you can use to determine which Iteration of your web test ...Show All

©2008 Software Development Network