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

Software Development Network >> Tomas L's Q&A profile

Tomas L

Member List

alanrbeer
mihn
Jamie Thomson
CodeDjinn
AliciaV
GLutz78
Will Buchanan
iandobrien
PSHK
canuck81
Michelle A.
liuming
AndersBank
Dani50
majoy
Benke
Kevin Hoffman
spree
JoraPJL
J Ma
Only Title

Tomas L's Q&A profile

  • Smart Device Development Compilation

    Hi, Can I compile .NET 2.0 code on CompactFramework at runtime If not, maybe there is solution to compile this same code dynamically on PC side and transfer this code (in dll) to PocketPC Kind regards Mateusz Kierepka you'd want to use something like Process.Start on the server to call out to csc.exe (or whichever compiler matches the language you're compiling) with the command line arguments for source and target, and then move the completed target assembly after the process finishes. ...Show All

  • Windows Forms Delete Browser history, cookies and Temporary Internet Files

    Whats the easiest way to this I'm sure there is a way to "Call-up" Internet options from within the browser I made... But I would much prefere to have the controls intergrated into my own browser software. What would be the code I would need to put in the event handlers for the buttons "Clear History", "Clear Cookies" and "Delete temporary internet files" Or, if that's not possible, how can I call up Internet options from within my application Thanks for the help! Landon there are many topics about this on the forums. you could delete the files stored in the appropriate/relevant folders however you would not be doing it correctly since you need to also make sure Windows has the ...Show All

  • .NET Development Not a valid AllXsd value

    My code is throwing the following error when I read in a diffgram in to a dataset. The dataset was in a project originally created in Framework 1.1 but now running in 2.0. Does anyone know how to fix this System.FormatException: The string '2005-03-24T18:13:09-0700' is not a valid AllXsd value. at System.Xml.Schema.XsdDateTime..ctor(String text, XsdDateTimeFlags kinds) at System.Xml.XmlConvert.ToDateTime(String s, XmlDateTimeSerializationMode dateTimeOption) at System.Data.Common.DateTimeStorage.ConvertXmlToObject(String s) at System.Data.XmlDataLoader.LoadColumn(DataColumn column, Object[] foundColumns) at System.Data.XmlDataLoader.LoadTable(DataTable table, Boolean isNested) at System.Data.XmlDataLoader.LoadData(XmlReader rea ...Show All

  • SQL Server Running value

    Hi In my report I have the total column,under the total i have two sub fields:no , Row%and i have another column Cumulative total sub fields are no,***% For the Row % under total i write like this: =Round((Fields!Male.Value+Fields!Female.Value+Fields!Unknown.Value+Fields!Invalid.Value)/Sum(Fields!Male.Value+Fields!Female.Value+Fields!Unknown.Value+Fields!Invalid.Value)*100,2) For the *** % under cumulative total the expression is: =RunningValue((Fields!Male.Value+Fields!Female.Value+Fields!Unknown.Value+Fields!Invalid.Value)/Sum(Fields!Male.Value+Fields!Female.Value+Fields!Unknown.Value+Fields!Invalid.Value)*100, sum , "AgeByGender" ) But i am getting this error: The Value expression for the textbox '* ...Show All

  • SQL Server Ways/Suggestions for increasing the security for SQL server 2005

    Hi guys , is there any ways/suggestions for strengthen up the security for SQL server 2005 Due to several attacks from unknown places to my database's server , so I would like to get a way for increase the SQL security. Hope able to gather some info from web as well. Thx a lot guys. Best Regards, Hans Hi, that depends much on your infrastructure. You should consider -perimeter security -protocol security -Server security -Password rules -Application security -data encryption The more security you are about to implement the less possible it gets that you have a hacker / intruder on your system. But you will have to keep in mind that the more security you will implement, the more mai ...Show All

  • SQL Server SQL Server 2005 DB capacity

    Hi We are looking at pushing around 80TB data to SQL Server 2005. Can it handle this size. Is there any document/pointers available on SQL Server 2005 - data volume that it can handle/data volume and data configuration. Regards, kart Google to the rescue http://msdn2.microsoft.com/en-us/library/ms143432.aspx Database size 1,048,516 terabytes ...Show All

  • .NET Development find .net version

    hello, Is there some way to find out what version of .NET is installed I've seen spots where people just cycle thru the three versions (1.0, 1.1, 2.0) to check, but I would like something where you don't know the number, so that it could work just as well for 4.0 as it does for 2.0. I'd like to be able to do this in Visual Basic. Thanks for any help. I'm aware each one has its own version, that's why I was hoping to get the most recent version of .NET that is installed. I'm currently telling it to call the 2.0 caspol, but I would like my script ot be more dynamic, for when 3.0 comes out, as an example. ...Show All

  • SQL Server Can we use DTS to import PDF and MP3 into SQL Server 200 table?

    I've got a situation in whcih I have to import PDF and MP3 files into SQL Server 2000 table. Thanks, YL http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.sqlserver.dts ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. From the top, Game Design 101 help please?

    Greetings All, I've read multiple threads on the issue of starting out game design and programming and from them I have encountered many different directions that can be taken from where to begin. Let me explain my situation a little furthur then maybe someone out there will be able to help me out with a little bit of advice :) Ive mainly been in the art scene doing some modelling and so forth, not in any great complexity mind you, but enough so that I can do many tasks in 3D applications such as Maya. Now with the release of XNA as a game development framework my interests into this field have piqued somewhat. Now I have no previous coding or programming experience, but I do have a will to learn, and would love to know from ...Show All

  • Visual Studio Express Editions Another Problem

    Hi, I was wondering if there is anyway to turn a huge amount of code into a simple function. Right now I have a bunch of check boxes and they are all named C1-C7 and W1-W7, instead of putting in code for each one when clicked, which results in a large amount of code, is there anyway I could make one function to handle all of these. I tried something like this. If C(num).checked=true then W(num).checked=false endif its just a basic example of what i want and i could really use this later on. Thanks The code Dim ckBox As CheckBox = sender ckBox.checked = Not ckBox.Checked makes an infinite loop, but now i know how to use sender which should be very useful, thank ...Show All

  • Visual Studio Express Editions Printing in Web Browser

    I've created a simple web browser, and now i want to beable to print with it, and im not exactly sure how to do that yet (which does create some sort of a problem :)) so anny help would be greatly appreciated :) thanks, paoloTheCool my default browser is IE 7, but i think i did my code a little wierd :), i didnt use the Navigate code which i think is prolly easier i just said: " webBrowser1.Url = new Uri (toolStripTextBox1.Text);" but thanks to you, i got the http:// thing working :) but im stilll working on the print thingie ...Show All

  • Visual Studio Team System Compare workspace version to shelvset version

    I am trying to compare a version of a file in a shelveset (end of day yesterday) to the local workspace version of the file, in order to see what I've changed so far today. If I go to Unshelve/Details/ and then right mouse click on the shelved file, I get a compare menu that has a grayed out option to "compare to with workspace version" but I can't find a way to ungray this option as this is exactly what I want to do! Also I have looked in the command line "tf diff" and it says that the /shelvset option cannot be combined with the itemspec option, so I can's see a way to do it that way either. Does anyone know how I can do this Thanks Rob Unfortunately, tfpt unshelve doesn't ...Show All

  • Visual C# Which type in C# is equivalent to C++ HResult?

    Hi, everyone. I have this kind of problem. On faculty i got to make an example of OPC HDA server with async reading. Also, only thing i got is specification of OPC standards. Now, i have trouble. I have OPC Core components exe file, which i instaled. When i create my file which implement, let say, IOPCCommon interface, i imported required dll file, which provide necessary interface. For one of methods i got next thing. public void GetErrorString(int dwError, out string ppString) { throw new Exception("The method or operation is not implemented."); } In specification is said that this method returns HResult HRESULT GetErrorString( [in] HRESULT dwError, [out, string] LPWSTR *ppString ); How should i implement ...Show All

  • SQL Server How to validate Report Parameters

    Hi, I am designing a report using SRS 2000. I want to validate parameters before executing the query. Suppose if user gives a random number for parameter (say Emp ID), i want to display a error message in a textbox "There are no records for the given employee ID" and stop executing query to display employee details in the table. I tried using Visible expression for table IIF(Fields!EmpID = "", False, True). But when I run the report with a random number, an error populated saying "You cannot query a record for no data..." Please suggest me a work around. Regards, Thanks for the reply. I managed it by using 2 datasets, 1 for validation parameters and 1 for getting data. I dont know why the abo ...Show All

  • Visual Basic Cant find 'Setting'

    Im looking at Declaring and Raising Events. But when i get down to 3., I cant find where to change the 'Setting'. Cause i need to change Button1 to 'Start Task', Button2 to 'Cancel', and Label1 to 'lblPercentDone, 0'. Can anyone help The site is: http://msdn2.microsoft.com/en-us/library/sc31b696.aspx ADD: For some reason i cant just post the hyperlink. Why Is it because im using firefox Yes, this is it. You have to set these properties to their exact values (goes particularly for the label) because the rest of the code depends on those values. However, if you set the Text property differently, the code will still work, because it only controls buttons' captions. Andrej ...Show All

©2008 Software Development Network