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

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

gabrielocio

Member List

GDigrego
Sergey D
Flavelle Ballem
furjaw
Thisara
Kirk Lipscomb
amritanshu agrawal
AlwaysTrying
HariAdu
Neelam Kothari
Grahame Edwards
Julio Casal
kinny_k
barkingdog
mintaka3
software tester
allison_h
Krutika
robertje
explode
Only Title

gabrielocio's Q&A profile

  • SQL Server SQL Server 2005 SP2 CTP Version

    Hi, I m using Windows 2003 Server. I installed SQL Server2005 and now i want to apply CTP service pack on it. I downloaded all the SP2 patches available on the site http://www.microsoft.com/downloads/details.aspx FamilyID=D2DA6579-D49C-4B25-8F8A-79D14145500D&displaylang=en . Each of them is giving an error and it is not getting installed on SQLServer 2005; Is it a problem with my hardware or the version of Windows or the version of SQLServer 2005 Can anyone help me with this problem THanks, Srividya So, were you using this one SQLServer2005SP2-KB921896-x86-ENU.exe 279.7 MB and still getting an invalid win32 application error ...Show All

  • Software Development for Windows Vista Digitally signed exe gets runtime error when launched on Vista...

    ...but when the digital signature is removed the exe is launched properly. According to Microsofts requirements for the "Certified for Windows Vista" certification all dlls, exes etc must be signed with a digital signature. We use a signature from VeriTest to sign our installation msi's according to the specifications for the "Designed for Windows XP" logo. When I sign our exe (a C++ application, not the msi) with that signature and try to launch it on Windows Vista, I get a runtime error. Has anyone ever experience a similar behavior If so, how did you solve it Thanks!! /Niklas Hi Niklas, I'm going through the certification process at the moment. We are using ClickOnce and C# but I may ...Show All

  • Visual Studio 2008 (Pre-release) General Question Navigate to a Page threw a Window

    I have a Window Application (Window1) and was woundering if i was to add a Page . If I can Navigate to that Page with in Window1 Same principle as in the Media Center 2005 on my System or the Media Center in Vista thats on my other system...I want to use a Button for Navigation ,not a NavigateUri using a Hyperlink...In the Applications = Code + MarkUp book i just got it shows something similar more along the lines of a Wizard..but i'm not making a Installation Wizard thou.. Thxs Rattlerr ok,cool Thxs Lee d ....If you know of any good examples for that it would be appreciated... ...Show All

  • Visual Basic VB code to convert xml file to .txt

    Hi, I have a xml file that I generated with a SQL query. I need the info from that xml file converted to a .txt file. I can not export the sql information to plain text, because I need to modify the info into a certain way as well. The first thing I need to be able to do is to convert xml to .text and then I will get to converting in some format. Can someone please help me or point me to documentation or books to read. I really need to do this and would greatly appretiate the help. Thanks! XML files are plain text files with special tags for each row, and each field. Its almost equivalent to a database but in text format. There are ready made functions to read from xml files, if you are interested. But if you only want t ...Show All

  • Windows Forms change the font style of the tab page

    Hello All Is it possible to change the font style of the tab page when the tab controls _SelectedIndexChanged event occurs. My requirement is to change the font style of the selected tab page so it can be distingued among the other tab page fonts. I am using TabControl control /Thanks in Advance Prash You'll need owner draw to do this. Here's an example: public partial class Form1 : Form { public Form1() { InitializeComponent(); tabControl1.DrawMode = TabDrawMode.OwnerDrawFixed; tabControl1.DrawItem += tabControl1_DrawItem; tabControl1.SelectedIndexChanged += tabControl1_SelectedIndexChanged; } private void tabControl1_DrawItem(object sender, DrawItemEven ...Show All

  • Software Development for Windows Vista Errors while creating an answer file in SIM

    I'm using the System Image Manager to create an answer file for an unattended installation of Vista. These were the steps I took: 1. Install Vista via a Vista DVD on a formatted source machine. 2. Boot the source machine to boot from WinPE (Also includes ImageX tool). 3. Run ImageX to capture this Vista image with the command: >ImageX.exe /compress fast /capture C:\myimage.wim "my Vista Install" /verify 4. Copied this image 'myimage.wim' to network share on Technician Computer where WAIK and Windows Deployment Services is setup. 5. Open Windows System Image Manager and Create a Distribution share. 6. Follow steps to create a Answer file, by providing this 'myimage.wim'. 7. It asks ...Show All

  • Visual Studio Team System Print Work Item Per Page

    When you "Print Selected Work Items" from a work item query, it would be useful to have the option to print one work item per page. We use webbrowser (IE) control to do the printing and unfortunately I do not see a way to ask it to place page breaks. If we change printing functionality in future, we'll consider this need. ...Show All

  • .NET Development XmlSerialize a System.Drawing.Font

    Hi, I haven't used the XmlSerializer with any built-in types before, so maybe this is a common restriction... But are System.Drawing types possible to serialize When I try to serialize any System.Drawing type, I get a runtime error: Could not load file or assembly 'System.Drawing.XmlSerializers' I can't find any references to this assembly anywhere on the net. Is it something that hasn't been implemented in .NET yet.. Thanks, Jonas Jonas, You get this error because the type you're trying to serialize is not XmlSerializable (maybe some IDictionary is there or something like that).... so it won't be possible to serialize it as xml. The error message you receive is telling you that the framewo ...Show All

  • Visual C++ How to get the local time in miliseconds

    Dear All, using win32 C++, I just want to know what is the usual way to get the local time in the format "hr:min:sec.milisec" Your help is much appreciated regards Bassam Hi, If it is a win32 application , no header file is required. If it is a win32 console application , windows.h is required to include. Thanx, Ch.T.Gopi Kumar. ...Show All

  • SQL Server Top 10 Chart grouped by Month

    Hello, I have a bar chart that I need to show the top 10 items by Month. What I get currently is a chart by month with the total Top 10 Items (rather than the top 10 per month). I have tried adding a scope onto my Value expression but that didn't help. =countDistinct(Fields!incident_ref.Value, "catGrpDate") Please Help! It sounds like you filter on the overall dataset or the overall chart. I suppose your chart has a "Month" group and a "Product" group. You should add a filter on the "Product" group, e.g.: =Sum(Fields!Revenue.Value) TopN =10 -- Robert ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Microphone input

    Hi, is there _any_ way to get input (16bit PCM would be perfect) from a microphone connected to the XBOX360 I'm planning to write a karaoke game (like SingStar), but that's not really possible without microphone input support. I already have code to analyze input streams and everything that I need, the only thing which is missing is a way to get input from microphones. Any ideas Patrick As I understood, I need a 99$ subscription to submit a feature suggestion or to see the suggestions already made. But I don't agree to pay for a tool that I don't need without the feature to suggest that feature and pay another 99$ years later when the feature becomes available - even if the possibility for this is that sm ...Show All

  • Windows Forms cONTEXTmeNU ON lEFT cLICK

    Hai, How can I have ConextMenu on LeftClick.... I hope you have a good reason for wanting to do this. A ContextMenu on a left click is really not "standard" behavior ... are you sure your users will want and understand this concept Normally I wouldn't recommend implementing behavior in an application that is different than what most people expect in a Windows app, which in this case is a ContextMenu on a right-click. Why do you want to change this basic User Interface ...Show All

  • Smart Device Development how do I control the irda port on pocket pc in vb

    i want to use the irda port on an ipaq as a remote controll using vb. please help You'll want to look at the System.Net.Sockets.IrDAClient class which provides services for an infrared end point that includes making connections, obtaining data streams and discovering devices. http://msdn2.microsoft.com/en-us/library/system.net.sockets.irdaclient.aspx ...Show All

  • Visual Studio Team System MSBuild script question for VSDBPro

    I'm trying to integrate a solution that has two VSDBPro projects into my automated build. Here are some snippets from my build script file: < PropertyGroup > < TargetConnectionString > Data Source=DevServer001;Integrated Security=True;Pooling=False </ TargetConnectionString > </ PropertyGroup > < ItemGroup > < DBSolution Include = " DatabaseSource\DBProjects.sln " /> </ ItemGroup > < Target Name = " BuildDBSource " > < MSBuild StopOnFirstFailure = " true " Projects = " @(DBSolution) " Targets = " Build;Deploy " Properties = " $(TargetConnectionString) " ...Show All

  • Visual C# Viewing runtime errors

    I'm currently using NotePad to write a simple C# application. I simply use cs.exe to compile my windows application. How can I view the runtime errors when using this approach The compiler does not catch the runtime errors obviously. My .exe simply stops executing without any error messages. I do notice one thing, in my task manager I notice that a process called DW20.exe runs for a brief second and terminates. Is the runtime error being logged somewhere in Windows Thanks in advance. Ray Unfortunately, I'm new to C# so I don't know how to do a Try-Catch I tried... try{ .....my code } catch (Exception ex){ MessageBox.Show ("Error is: {0}",ex.Description) } ...Show All

©2008 Software Development Network