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

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

kokitsune

Member List

evald
Kaisor
jayaraja
jim pruett
pat27
CurtisDeHaven
ag1206
Cyberjunkie
pieterp
SoulSolutions
Jutsin Leung
peterLH
Medes_
JohnBurton
DiZASTiX
Bhanu Prakash Nunna - MSFT
arkiboys
DzheiZee
Mr_White
YMaod
Only Title

kokitsune's Q&A profile

  • Visual FoxPro how to create a setup wizards?

    Sorry for the incomplete questions before. Yes, i know how to build an executable but i really don't know how to create a setup wizards in Version 7.0 but in Version 5.0 you can only click the Tools--->Wizards--->Setup. Where's the Setup Wizard in Version 7.0 Starting with VFP 7.0, a version of InstallShield was shipped. You can use that to create an installation package for your application. There is a guide to doing this: "Walkthrough: Creating a Visual FoxPro Application Setup Program Using InstallShield Express " available from the VFP Website at: http://msdn2.microsoft.com/en-us/library/ms917481.aspx ...Show All

  • Visual Studio Express Editions I'm so sorry: REGEX

    I wish to be able to retrieve a certain tag within html document from the web into, for example: a multiline textbox, using regex. Here's a variation on the expression i've tried: <font*(class=quote){1}[a-zA-Z0-9 ="'. _/]*\s*((/>)|(>[a-zA-Z0-9 ="'<>. _/]*</font>)) Also, heres the original (which gets all <a href="URL"></a> tags..) ( <HTML><a[^>]*href\s*=\s*[\"\'] ( <HRef>[^"'>\s]*)[\"\'] [^>]*>( <Title>[^<]+|.* ) </a\s*>) The syntax for the tag: <tag option=string> TEXT TO RETRIEVE </tag> How can I then get all instances of this in my VB.NET application Please point me in the right direction :) ...Show All

  • Windows Forms Casing Problem

    I am using the following command to get a record count from a stored procedure: int recCount = (int)cmd.ExecuteScalar(); Everything is fine until the command returns no values and returns a Null, at which point I get a cast error. Is there a neat way around this it's not really neat but you have to get the object first and verify if it's null or not. object ret = cmd.ExecuteScalar(); int recCount = 0; if (ret == null){ recCount = (int)ret ; } ...Show All

  • SQL Server MDX multidimensional sum

    Hi i m a new at mdx i have a big problem with the sum simple cube: SET [Agreed Action List] as { {( [Agreed Action].[Description En]. children -- IF I Decomment the following line adding another level to the row hierarchy ... boom --,{ [Trafficked Person].[Sex En].&[male],[Trafficked Person].[Sex En].&[female]} )} } MEMBER [Agreed Action].[Description En].[sum] as 'Sum([Agreed Action List],[Measures].[TP Count])' SELECT NON EMPTY { [Agreed Action List], [Agreed Action].[Description En].[sum] } ON ROWS , NON EMPTY { [Case Opened Date].[year].&[2001], [Case Opened Date].[year].&[2002] } * { [Measures].[TP Count]} T ...Show All

  • .NET Development specifying custom tracelistener needs strong assembly name

    I've build a trace listener that traces out message to a rotating log file. The thing works fine. The deployment packages nicely registers it in the GAC so that I can reuse it wherever I like. What I would like to do is add it to the <system.diagnostics> section of for instance an simple application. The problem I have is that I have to specify a strong assembly name. like: < add name ="testGateway" type ="UnitedMobile.Diagnostics.LoggingTraceListener,UnitedMobile.Diagnostics.LoggingTraceListener, Version=1.0.1.0, Culture=neutral, PublicKeyToken=e861178d28f74af2" initializeData ="c:\log\Refund\{0:yyyyMMddHH}.log;1" /> For for instance the System.Diagnostics it is necesary to only specify the weak name: < ad ...Show All

  • Visual C# Implementing an expression parser

    Hi All, First of all thanks you very much for spending your time to open this post. We are trying to implement a small parser which evaluates expression given by users. We have idenfied a set of operators, functions, keywords, conditional staments which are required for the language. Can you please tell us how shall we implement a parser which checks syntax of the expression and evalutes them If you have any reference to data structure concepts, please let me know. Many thanks in advance. Cheers, Gopi Hi, U can use Regular expressions also to validate the input strings read from file. FYI: http://msdn2.microsoft.com/en-us/library/ms228595(VS.80).aspx , going through this post will ...Show All

  • SQL Server Public key Token = b77a5c561934e089

    Hi Ppl, I have installed my program and SQL server 2K5 on the server. But when I try to run it (from he client machine)I get the following error : It works fine on the SERVER The appication attempted to perform an operation not allowed by the security policy. The operation required the security Exception. To grant this application the required permission please contact your systems Administrator or use the Microsoft .NET security policy administration tool. If you click Bla,bla,bla Request for the permision of type System.Data.SqlClient.SqlClient Permission, System.Data Version - 1.0.5000.0. Cultre = neutral. Public key Token = b77a5c561934e089 I've done some checking ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. new to directx

    Hi eveyone, i am new to directx and i want to be a game programmer.Please tell me where i can find useful tutorials for a beginner. Hi wilson,thanks for your reply. I am interested in C++ and i dont have any previous experience. Will you tell me where i can find tutorials useful for me. ...Show All

  • Visual C# Whats the equivalent of __LINE__ and __FILE__ in C#

    Whats the equivalent of __LINE__ and __FILE__ in C# I thought this hot-button issue would have been answered by now. But no one seems to have a good answer for this. I would love to see a solution which presents no runtime overhead. What about C# 3.0 does it address this issue This is important to me because I am interested in logging the path of execution that my program takes. For example the entry and exit points of important functions, exception information etc should get logged to a file. Such information will prove invaluable while remotely troubleshooting problems. All I need to do is ask the user to return the collected log. Reading the logs should give me a good lead on the problem. Without the line numbers and the source f ...Show All

  • Windows Live Developer Forums Sandbox UI

    Hello List, I have a question on the sandbox UI link found in the connect.microsoft.com page. Upon following the Microsoft adCenter Sandbox UI link, I must authenticate, it does not recognize my production user/pwd. The final page states that a $5.00 charge will be placed on my credit card for account set up. Is this correct Thanks for all your help. David Hello, Your sandbox account is different from your production account. Request sandbox credentials from the representative that provided your production credentials. The sandbox UI link that you listed is correct ( https://beta1.idss.msn.com/ ). Thank you. -- Walter Poupore - MSFT ...Show All

  • Visual Basic My namespace (accessing default printer)

    I am not able to find any printer related settings (get the default printer, change the default printer etc.) in the My namspace May be there is no printer related methods available within My namespace (My.computer) Please correct me. I thoughts so but when I viewed this from VB program manager on the MSDN I got confused http://channel9.msdn.com/ShowPost.aspx PostID=13368 ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. HUD help: sprites drawing behind world

    I want the first screen of my game to consist of something similar to the intro of Valve's HL2 - a 2d menu drawn on a 3d background. I'm seeing my menu sprites and my world geometry, but my sprites are being drawn behind my models. I have my sprite drawing handled all within one object, called GameScreenManager. My 3d objects are all drawn within a GameLevel object. Both objects are extensions of DrawableGameComponent, and these components are both added to the Game class object. Inside the constructor of my Game object, I have set the following: gameLevel.DrawOrder = 2; screenManager.DrawOrder = 1; which, according to the hints, should cause the graphicsDevice to render the 3d stuff first and the 2d stuff second. All of my sprites have ...Show All

  • Visual Studio how can I disable the debugger?

    Every time a program crashes or do something wrong it pops up a window that ask me what debugger I want to use. Its annoying... I causes me to exit from this game I'm playing - "Titan Quest" and I don't want it to pop up anymore... I have turned off the debugger options in Visual Studio 2005 Pro and also deleted the registry key mentioned in the referenced article ... but i still get the "unhandled exceptions" warning messages. How do I get rid of them. ...Show All

  • .NET Development XML Files in Framework Installation path.

    Hi, While playing around, I found that Each of the Microsoft .Net assembly in the Installation path of .Net Framework(...\Microsoft.NET\Framework\v2.0.50727) has an XML file associated, in the same path. (e.g) System.XML.dll has System.XML.xml May I know the purpose of the XML file who will be using this XML file, is it the CLR Regards, Benin. NO this is not the case To use the generated .xml file for use with the IntelliSense feature, let the file name of the .xml file be the same as the assembly you want to support and then make sure the .xml file is in the same directory as the assembly. Thus, when the assembly is referenced in the Visual Studio project, the .xml file is found as well. Let say you created a as ...Show All

  • Windows Forms MultiThread Visual Application

    I have TreeView on my Form. This application has 2 threads and I want to make changes with my treeView in 2nd thread, but here is such exception: name: InvalidOperationException and Message: "Action being performed on this control is being called from the wrong thread." what can I do with it thanks for your help I've just discovered that if I use:- delegate instead of D elegate as in you example it now compiles! Don't know if it works yet. just about to find out. ...Show All

©2008 Software Development Network