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

Software Development Network >> jaime.rq's Q&A profile

jaime.rq

Member List

joy2006
Brian Westover
PoKemonInstructor
bideveloper
Teodulfo
jdc_2005
GlynP
Autobase
smithers
MichelleZ
Galinace
markstamp
tinybunny_8
john mcgartland
trashVin
GregCox
Majid8351
Chris_e_m
fg_diverse
BigT
Only Title

jaime.rq's Q&A profile

  • Windows Forms Saving a Cookie from Inside a Secondary Thread

    Yes, I know this is an ASP.NET question and I should ask it on the ASP.NET site, but I'm usually a WindowsForms kinda guy so I wanted to post the question here first. I have to start a new thread on an ASP.NET page (using VB.NET) to log visit data to a database. I do this because sometimes the SQL Server database runs VERY slow and& ...Show All

  • Visual Studio Team System Bug in Managed Code Analysis (FxCop) Extensibility

    This was a tough bug to figure out since it works fine for Microsoft's rules. I created a new rule (inheriting from the base rule), compiled it and deployed it to the correct directory. Everything was fine. The bug is this - The name of the category was displayed in the list along with all of the other rules, but the rules themselves were not displayed (clicking the + next to the category did not expand it). After playing with it for a while, I figured out what the problem was - it is the name of the resource file. If the name of the file is the same name as the compiled assembly, the rules will show up, but not the category (it shows up und ...Show All

  • Visual C++ Console Applications only work on computer with the IDE

    I'm using a text book to learn C++ and am writing my first programs. They compile fine and work the way I want them to, from Visual Studio or Windows Explorer. However, if I move them to another computer (with a disk), they don't work. Something about the configuration of the application. I've tried CLR console apps and Win 32 console apps (with header). I move the entire project, not just the .exe I would really like to be able to give other people my programs, please help me out!! PLEASE! You may need to give people the .NET framework ( for CLR apps ), and you almost certainly need to deploy the ...Show All

  • Smart Device Development Windows Mobile 2005 icon display problem

    This is on Axim x51v running WM5. I get these icon messed up...anyone knows why and what is the fix for this Thanks. See picture here: http://www.lakeridgesoftware.com/forum/showthread.php t=8551 Hi, please post Windows Mobile questions to one of the Smart Device forums. This forum is patrolled by experts in laptop, Tablet PC and UMPC development. Thanks, David ...Show All

  • Visual Studio Tools for Office Outlook AddIn Install On User Machine Failure

    I created an Outlook Add-In with VSTO. It runs fine on a machine where I installed the .Net FW 2.0 SDK and added an entry to the Machine Code Group under All_Code for the URL where I installed the assembly (c:\program files\CompanyName\MySystem\*). When I go to a machine with just .Net FW 2.0 (and no SDK) I used the caspol utility and added the group manually: caspol -m -ag All_Code -url "C:\Program Files\CompanyName\MySystem\*" FullTrust -n "MySystem".  The addin does not want to work then. I can see it under the COM Add-Ins in Outlook but it is unchecked and gives the following message: Not loaded. A runtime error occurred d ...Show All

  • Smart Device Development SIP Disappears after MessageBox.Show() -- Doesn't come back

    I have strange problem that SIP disappears after the messagebox.Show() is called and never shows up again. 1. I have 5 forms and One form is the startup form. I am displaying other 4 forms as ShowDialog when particular button is pressed in the MainForm. 2. Whenever I have informational message box MessageBox.Show() the SIP disappears. After I click OK in the message box, the SIP still doesn't comeback. If I remember where the SIP was before and if I click that place SIP appears again. So SIP appears again only when there is only 2 Sub Menu Items. In that case SIP Icon was in the bottom middle of the MenuBar. In these cases SIP com ...Show All

  • Windows Forms Control and data source not sync

    Can anyone throw me some light on this situation  Basically the databinding does not work if I mix up the assignment of control and data source. Details: I have one date picker and one text box bound to a typed dataset with a table. this.dateTimePicker.DataBindings.Add("Value", ds, "Table.SomeDate"); this.txtPercent.DataBindings.Add("Text", ds, "Table.Percent"); In this snipp ...Show All

  • Visual Studio Tools for Office wordObject and Printer Tray selection

    I’m developing a windows based application in .net and I’m using Word object for maintaining and printing documents. Well, here is my problem: I managed to do the printing stuff using the word object's property itself. I picked the Bin Numbers of my printer and I assigned them like wrodObject.FirstPageTray = (int) 260; (the number for "Tray 2" I got it from DeviceCapabilities API). But still the paper is not picking from the "Tray 2" it is taking only from "Tray 1". But in order to solve this Issue I contacted HP Printer support team and they said to change the "Tray Mode" to "Cassette" from "First" in "Paper Handling Menu" of the printer ...Show All

  • Visual C++ Why doesn't this code work?

    Why doesn't this code work  Using C++ .NET 2005: // MSS.cpp : main project file. #include "stdafx.h" #include "stdio.h" #include "iostream" using namespace System; int main( array <System::String ^> ^args){ struct tnode { int count; System::String ^ word; } ; tnode smth; smth.word= "Sometext" ; Console::WriteLine( smth.word ); } As I said, you can use gcroot if you must have an unmanaged struct containing a managed object. ...Show All

  • .NET Development throwing SoapException returns HTML to client

    I'm testing a Web Service written using C# in Visual Studio 2005 and running in IIS 5.1. When it throws a SoapException, HTML gets returned to the client rather than a SOAP message. If the Web Service processing is successful, a SOAP message gets returned. But when I throw a SoapException (and set the actor, message, detail, etc.), HTML is returned. Any ideas how I can get a SOAP message returned when I throw a SoapException Thanks. _w_ wrote: I'm testing a Web Service written using C# in Visual Studio 2005 and running in IIS 5.1. When it throws a SoapException, HTML gets returned to the ...Show All

  • SQL Server RelativeTime

    Hi, I have a traditional Time dimension, MatchDate (Year - Qtr - Month). I have created a dummy dimension RelativeTime in trying to copy the Cognos functionality. I have tried to created a calculated member: SUM ( PeriodsToDate ([MatchDate].[Year]),([RelativeTime].[Relative Time].[Current]) ) but it results in a errormess: Formula error - cannot find dimension member ("[RelativeTime].[Relative Time].[Current]") ) in a name-binding function. Any idea anyone Hi After modifying the MDX syntax its working fine: SUM ( PeriodsToDate ([MatchDate].[Year]),([RelativeTime].[Relative Time].&[1])) This i ...Show All

  • .NET Development Compressing multiple files in .Net (like Zip files in Java)?

    Coming from Java (and yes .Net is better :-)) I am used to an api that makes it really easy to generate a zip file consisting of multiple files. I have tried to look for something similar in .Net but I havent been able to find anything. I assume that CAB files are a .Net preference which is OK since the format used is of minor importance. Can you point me in the right direction Thanks in advance /Soren Take a look at SharpZipLib: http://www.icsharpcode.net/OpenSource/SharpZipLib/Default.aspx ...Show All

  • Windows Forms I'm going nuts here...

    Trying to find a control that will display nicely formatted text (preferably HTML) dynamically on a Windows form. Does anyone know or have experience with such a beast I have searched all over the Net and found lots of "browser" controls, but I don't want a Web browser - I just want to display nicely formatted text on a Windows form!! Like this: Dim sbText as New StringBuilder() With sbText    .Append("<p><b>This is a bold statement!</b></p>")    .Append("<p>This is a not-so-bold statement.</p>") End With Me.SomeCoolLabelControl.Text = sbText.toString() Any help here would be ...Show All

  • Windows Forms datareader

    hello is there is a method to count the number of rows in the datareader thank you for the time  You know, with limited experence with ADO.Net you might be better off just using a data adapter instead of a datareader. Basicly to do it it with a reader you will have to take these steps Create a data table with the same schema  ...Show All

  • Visual Studio 2008 (Pre-release) March CTP

    Will there be a March CTP Ben That's perfectly OK, thanks. It's very nice you answered, now we just continue using the February CTP, it also works perfectly OK. Best regards, Henrik Dahl ...Show All

©2008 Software Development Network