Software Development Network Logo
  • Visual FoxPro
  • Visual J#
  • Game Technologies
  • Windows Live
  • VS Express Editions
  • Visual C#
  • Windows Vista
  • Architecture
  • Windows Forms
  • Visual C++
  • Visual Basic
  • Microsoft ISV
  • Visual Studio
  • .NET Development
  • VS Team System

Software Development Network >> InGyu Jeon's Q&A profile

InGyu Jeon

Member List

Borko
Kayron Mercieca
albator69
ersin sivaz
ShimonSim
Dave J
Jhoraj
gayan007
timdilbert
vishwnathRaju
Dotnetter03
Brent McCulloch
LordZoster
Sanjeev Singh
Clemmie
shree123
Kamil Skalski
VJ_AS
Josh Phillips
Gogula
Only Title

InGyu Jeon's Q&A profile

  • SQL Server SMO ServerConnection common dialog?

    Is there a common dialog I can use to prompt a user for connection information to be used to create an SMO ServerConnection object. Thanks, Take a look at the SMO samples that ship with SQL Server 2005. It contains a good example of a common dialog. The same dialog is used in all samples. See this post for a location of the samples: http://blogs.msdn.com/mwories/articles/smofaq.aspx ...Show All

  • Visual Studio Multi line insert (block mode) question

    Hi, I'm trying to make an add-in/macro to help make block wise operations in visual studio. Currently the process goes as follows: 1)Developer blockwise selects some text that he wants to operate on. 2)Runs add-in command, 3) Add-in copies the selected text to the clipboard 4) Addin grabs the text from the clipboard 5) Runs operations on text 6) Updates the clipboard with the modified text. The issue is that when the updated text is in the clipboard, it loses whatever information made that clipboard data a 'MSDEVColumnSelect' (undocumented) datatype. When user goes to overwrite his selection with the updated data it adds newlines. How can i ...Show All

  • Visual Basic Blair Allen Stark

    Here is the problem I am working on. It asks me to use the method CalculateCharges, but I don't fully understand how to do this or how it works. I would be grateful for any input. Lab Problem III A parking garage charges a $2.00 minimum fee to park for up to three hours. The garage charges an additional $0.50 per hour for each hour or part thereof in excess of three hours. The maximum charge for any given 24-hour period is $10.00. Assume that no car parks for longer than 24 hours at a time. Develop a console program that calculate and displays the charges for each customer who parked a car in this garage yesterday. ...Show All

  • .NET Development Recieving text data from internet

    My program needs to recieve one text file from internet to wark without mistakes. What is the best way to get text information from internet Use the Syste.Net.WebClient class. It has several methods to download data, for example downloading a file directly to the local disk: WebClient webClient = new WebClient(); webClient.DownloadFile("http: //www.somewhere.com/somefile.txt", @"C:\somefile.txt");   or into memory: string htmlContent = webClient.DownloadString("http: //www.somewhere.com/somefile.txt");   ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. .x exporter for 3dSMAX 5 or 8

    Hi Is there any plugin for 3DSMax when export to .x a model with biped (character studio) and skin   Is very important, please Thanks in advance   gotelin wrote: Hi Is there any plugin for 3DSMax when export to .x a model with biped (character studio) and skin   Is very important, please Thanks in advance The DirectX SDK contains a plugin for 3DS Max 7 that exports to X.  If you're interested in exporting to other formats, you might  look into Okino's PolyTrans exporters. ...Show All

  • Visual Studio Team System Error encountered when attempting to move solution to source control

    I need help identifying why I cannot place a solution under source control. I create a simple web test and I can use it in the solution explorer but I cannot get it into source control. Here is what I do and what happens. Precondition: Solution is created and validated, connection to TE is working Open Solution Explorer Right click "Solution <project name>" in the SE tab Select "Add Solution to Source Control" menu item The result is a VS error message with this text.... Microsoft Visual Studio Unexpected error encountered. It is recommended that you restart the application as soon as possible. ...Show All

  • Visual FoxPro How to select data from one table which is NOT in the other table?

    To say I have 2 tables, one is order list (A), and the other is deleted order list (B). I want to display non-deleted order information, which is (A - B).  How can I do this in one statement   The A and B has different table structure. Thanks, Scott It's not clear what you're asking. A sampling would be better. Is this what you ask for : select * from myTableA ;    where orderID not in (select orderID from tableB) ...Show All

  • Windows Forms How to get the publisherr name?

    I need to know the publisher name and published product name (not the application product name which is found in assemblyinfo.vb/.cs) when my ClickOnce application is running. Where are the information stored If you are using VB2005 then you may find it under publish tap Right Click project then select properties. Select Publish tab Click options Then you can see (and update) Publish Language, Publisher name, Product name, and so on. Hope this is what you are looking for ...Show All

  • .NET Development how to extract valid urls from a web response text

    how to extract valid urls from web response text and put them in a string array. should i use regular expressions for this. what would be regular expression formaula to find links starting with httP:\\ to find http links in a web response. You could use regular expressions. In order to accurately do this you need an HTML parser. You might be able to use IE's DHTML object model to do this. For further details, contact the IE forum ...Show All

  • Visual Studio 2008 (Pre-release) How to develop a portalUI like that in "http://www.valil.com/portaluitest/portaluitest.xbap"?

    How to develop a portalUI like that in " http://www.valil.com/portaluitest/portaluitest.xbap " The custom panel is based on two existing samples: For the panel animation: http://blogs.msdn.com/dancre/archive/2005/10/02/476328.aspx http://blogs.msdn.com/dancre/archive/2005/10/03/476689.aspx For panel dragging: http://blogs.msdn.com/unnir/archive/2006/01/31/521065.aspx ...Show All

  • Visual C++ Information on installed applications

    Hi everybody, I am developing an application that gathers the information about all the installed applications on a machine. I already created the application, but now I also want to know which user installed a particular application. Can anybody help Where to get the information of the user that installed the application I just want the user name. Thanks, This forum is for C++ language and compilation issues only. I would search the web and MSDN for installation issues. Brian OTP ...Show All

  • .NET Development SSL: "An existing connection was forcibly closed by the remote host."

    Hello, I'm trying to do a secure connect to the site https://212.77.100.18/p/ with .net 2.0 HttpWebRequest class, unfortunately for some reason I'm not able to do that - WebException is thrown with inner exception message of "An existing connection was forcibly closed by the remote host." I hoped I'll solve my problem with RemoteCertificateValidationCallback delegate which always returns "true", but it isn't called at all for this site (but works for other sites which needs manual acceptance of certificate). The HttpWebResponse should return "403 Forbidden" as in Internet Explorer. Can you help me, please //my ...Show All

  • Visual Studio Express Editions Program Error

    Whenever I build a program in Visual Basic 2005 Express Edition it works fine on my computer. But strangely it doesn't work on some other people's systems. I think it's because they need .NET Framework 2.0. Is that the reason Please respond quickly, User Thanks very much for your input man :D I think I'm gonna start reading up on C++ and get the express edtion. ...Show All

  • Visual Basic Upgrade GetEXEName()

    I'm trying to upgrade my application form VB6 to VB.NET I had the folowing commandline in my code: App.Title App.EXEName. I dont find any equivalents in .NET. I tried For App.Title - GetExecutingAssembly.GetName.Name OR Application.ProductName For App.EXEName - VB6.GetEXEName Any suggestions to get the same values in VB.NET And your workaround was If you dont use the suggestions and do something different, please let us know that way it will assist others who are trying to achieve the same thing and may find that the solution you have come up with may work for them to. ...Show All

  • .NET Development Creating a new ASP.NET membership provider

    Hi, I have recently installed MS SQL Server 2005 Beta and am now trying to use this to store my membership/profiles information instead of the MS SQL Express. But I can't see how I'm suppose to add the Provider.  All the documentation that I have seen has said that it can be done via the "Web Site Administration Tool" under the provider tab.  By selecting add new provider.  But it isn't there Anybody else got any ideas Thanks I have the same problem. I have generated App Service Database with the name "Butikk" (did not use the default name aspnetdb), on my server OPS01\FULLSQL. My connection st ...Show All

©2008 Software Development Network