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

Software Development Network >> li ning's Q&A profile

li ning

Member List

Prophet
jagdeep singh
alexxio
cds_ks
Shrif
JSR13
pratdevil
Gunship919
xx-Cougar-xx
Kishore Annavarapu
shoagMSFT
Danny NG
Rick Cimbalo
lslmustang
Mariano Iglesias
Little Green Frog
Nixies
g0mZY
J Beavon
Larry P
Only Title

li ning's Q&A profile

  • Visual Basic Application Icon

    The help file says that any icon added to the application under resources should be listed in the drop down for the application icon. Mine do not show up! Anyone know why I believe we would need more information to help.  Is the icon file available somewhere we can look at   Did you make sure to add it as an Icon in the Resource Editor, and not as an image Is it a .ico file   ...Show All

  • Visual C++ Loading dll from another folder

    In my application, I need to use dll A that depends on another dll B. A.dll is in my application folder and B.dll is in a subfolder of the application folder. What can I do so that A.dll can load B.dll from its present location I can not change the location of these dlls or their source code - I can only change the code of the application. Any ideas Maybe you can work with runtime dynamic linking. LoadLibrary function can accept relative path when loading DLL too: HMODULE myModule = ::LoadLibrary("MyPath\\MyLibrary.DLL"); if (myModule != NULL) { /* Code here..*/ ::FreeLibrary(myModu ...Show All

  • Windows Forms DataBind with Customization in Datagridview

    Hi , I want to bound datagridview with data with a custmized way 1.I want to change the display order of columns e.g Sp returned column no 5 i want to display it at the 1 column Col5.displayIndex=1 This is Not working and does not display the data in grid The dataset showing me the the rows & columns count in the Qucik watch But Grid is not showing the data ( May be due to mismatch in columns) 2. I want to display only few selective columns Not all the columns returned by Sp How to achieve this So How we can bind datagridview while format is done by coding is this is not compatible as when i not c ...Show All

  • Windows Forms sending mouse move message

    this is probably the simplest of things to do. I have a control in the middle of my form which I'd like to be able to move the mouse cursor w/ the keyboard when the mouse enters it. I'm watching OnKeyDown for the arrow keys, and need to move the mouse pointer. how exactly do I make the mouse move inside it can I send the WM_MOUSEMOVE message and if so who's handle do I use. I'm open to any way to make it happen. this is for a tool I'm using and dont want to spend a lot of time on it, and it doesnt need to be pretty. thanks. Cursor . Position = New Point (0,0) ...Show All

  • Visual Studio Express Editions Can't create new project

    Whenever I try to create a new project using Visual Basic Express, I get an error window stating: The filename, directory name, or volume labe syntax is incorrect. (Exception from HRESULT: 0x8007007B). I have uninstalled and reinstalled without success. Can anyone help Thanks! ...Show All

  • Visual FoxPro BUILD PROBLEM

    Hi all,Im a new programmer in VFOX PRO 9 and im currently having a rather noobish problem. I want to make my application as a .exe file so i can distribute it to someone that doesnt has the vfp installed.i have included the dll files that are specified in help and have put the application as a top level in the application builder.i have disabled quick start and have selected a form as main so that program starts with that one.the problem is that when i build the project and run it  from INSIDE vfp all goes well (i see only the main form).when i run the exe OUTSIDE vfp i see a window of vfp with a menu bar (file-edit-window-help)and my m ...Show All

  • Visual Studio Team System WebProxy for webtest tests and view browser when running coded tests

    hi there, I am new to having a look at the web test product and only have the Bet 2 at the moment (long story)... A couple of questions: 1. How do you set a webproxy for the webtest tests. I have set the username and password under the credentials tab but this just results in a 407 Proxy Authentication Required. I can do it in the coded version with the following NetworkCredential credential; credential = ( NetworkCredential ) CredentialCache .DefaultCredentials; WebProxy proxy = new WebProxy ( "XX.XX.XX.XX" , 80); proxy.Credentials = credential; this .WebProxy = proxy; How do I do this through the webtest interface 2. When I ru ...Show All

  • Visual Studio Express Editions How I can create multiple forms?

    Hello.How I can add multiple forms in my application and when the application is started to see 2 forms In the OnLoad event of the first form, allocate a new instance of the second form and call its Show method and store it in a member variable. In the OnClose event, close the second form. ...Show All

  • Windows Forms Does Transparencykey works in MDI application?

    I have a form with size 100x100 and a diagonal line in it. The line goes from TopLeft to RightBottom. When I make this form a SDI form with FormBorderStyle=none and BackColor=TransparencyKey I only see the line. The wanted and expected behaviour. So far so good. However, when I make the same form a child form of a MDI form it behaviour changes.&nb ...Show All

  • .NET Development CS0007: Error de inicialización inesperado Common Language Runtime

    I just try to execute my application and this is the message: I have problem just with web applications, with windows based applications no problem. I typed this program few weeks ago, I haven't needed changed anything until today, Can someone help me Granting READ access for the ASPNET account to these keys HKEY_CLASSES_ROOT\CLSID\{E5CB7A31-7512-11D2-89CE-0080C792E5D8} HKEY_CLASSES_ROOT\CLSID\{0A29FF9E-7F9C-4437-8B11-F424491E3931} HKEY_CLASSES_ROOT\CLSID\{6EB22881-8A19-11D0-81B6-00A0C9231C29} HKEY_CLASSES_ROOT\CLSID\{CB2F6723-AB3A-11d2-9C40-00C04FA30A3E}   ...Show All

  • SQL Server Speed up calculation time?

    CDI= case when A+ B- (C+ D)<0 then 0 else A+ B- (C+ D) end; if CDI is not the first case, the sql query have to recalculate A + B - (C + D) again, which means two time calculation...which means consuming extra cpu time and power, anyway to simplify the code Try this: select CDI = case when Eq <0 then 0 else Eq end from (select A+ B- (C+ D) As Eq from <Table>) ...Show All

  • Visual Basic Help Trying to Create Project Get Errror 0x8007007B

    Hi, I just installed Visual Basic 2005 Express Edition.  When I try to create a new Project (File --- New Project --- Windows Application)  I get the following error: The filename, directory name, or volume label syntx is incorrect. (Exception from HRESULT: 0x8007007B) I tried changing the default directories for projects, that didn't work.  I rebooted.  I tried starting a different type of project, all with the same error. PLEASE HELP!!!! charlie Hi Charlie, I assume you got to the New Project dialog since you could change the Project Type. What are you using for these field ...Show All

  • Windows Forms Any body know about deHydradated dlls ?

    Hello all! Any body who knows about dehydradated dlls and metadata related things  if yes, then i ve got some runtime errors to ask. Please reply if u know about it. thanks in advance. ...Show All

  • .NET Development inner join usage

    is it good practice to use INNER JOIN many times in the same request. I use it in some requests more than 3 or 4 times. Am I in the right path Thanks for coaching Some times I need to use them up to 8 times. A friend told me it s even to use views for requests from Catalogue tables. I wonder if it s better or should we instead use as many dataadapers as possible ...Show All

  • Visual C++ Microsoft Visual C++ Runtime Library error question

    I recieve this error when I launch Internet Explorer - version 6.0 OS Windows XP Home edition 2002 Service Pack 2.  Error is as follows: Microsoft Visual C++ Runtime Library Runtime Error! Program C:\Program Files\Internet explorer\iexplore.exe This application has requested the Runtime to terminate it in an unusual way.  Please contact the application's support team for more information. I am not certain where to post this question and problem.  Your assistance is greatly appreciated.  Currently, I am using Firefox as my back-up web browser.  I have seen a similar Problem. The Culpret was a corrupted Mc ...Show All

©2008 Software Development Network