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

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

laja

Member List

Andreenkov Alexander
Ackamajack
Cogz
imanish11111
Jayx
pinoyz
FcoLomas
Satish33
solnt
ceedee
znrigtoiwqo
RTIS1
Emeraald
akaRickShaw
Mitch5713
h1
bluexx
Muhsin Zahid Uğur
TRID
Danny Tuppeny
Only Title

laja's Q&A profile

  • Windows Forms GetWindowThreadProcessId changes the Visible property of the control

    I have a MDI application which displays 3 child Forms. I have menu options to change the visible property of the Child Forms and I have some test scenarios which validate the properties of the child forms. In my app flow I uses the GetWindowThreadProcessId Function to get the identifier of the thread that created the child form. Problem is when this method is called for a hidden child form, it changes the visible property of the hidden form to visible and thus that form suddenly appears on the screen. I just need the threadId of the form and doesnot want to change any of the property of the control.Does anyone know the solution for my problem Like Alex wrote it's probably the fact that you use the Handle property that causes t ...Show All

  • .NET Development bunch of asp.net web service questions

    I hope this is the right place to post this so here goes....i want to make a web service that has a login page...it should get its username/pass authentication from active directory, the web app then needs to be able to run some shell procs in multiple domains...so far i have the shell proc running in a single domain. I was hoping there might be some sort of way i can create a session that will pass authentication to the machine my proc is targeted at, so it can access the data it needs. Im just wondering about a way to go about this. uber thanx, im a total n00b to this stuff I don't understand what you mean with, login page for the WebService, that gets username/password from AD What you might be lookin ...Show All

  • Visual Studio Team System A contributor cannot access work items??

    Hi, I am the project admin in team system and i recently added a user as a contributor in the project but for some reason he cannot access the work item folder (Red x) and even worse, he cannot do any check in because we have the work item policy activated and he cannot select a work item from the list. He gets the following error when he tries to acces the work item tab: The query has encountered an error Object reference not set to an instance of an object I have added many users and this is the first time that it happens Has anyone ever had this problem Could it be a bug I also read a post where someone said that it could be a network config issue but i haven't found any difference between his machine and mine... ...Show All

  • SQL Server Can't Re-attach db to a SQL Server 2000 server

    Hi, I had a database running under a SQL Server 2000 server. I detached it and then attached it to a 2005 Server. I the detached it from the 2005 server and tried to re-attach it to the 2000 server. I got this error message: You can’t. During attaching the database to the SQL 2k5, the internal structure is migrated to SQL Server 2005 specific requirements which are not understandable for the SQL 2000 instance. This is one way only. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual C# detecting close button of browser in C#

    Hi all, i am developing an application in which i want to perform certain action when user clicks on the close(X ) button of the web browser. Please anyone help me out to resolve this issue.Any tutorials or sample application would also be helpful. Regards. If you start the browser --or any other external app; it's not a hard work. What you need is just waiting for the process to end(this occurs normally when the user clicks on the close button), and then do what you wish. -- cheers     farshad ...Show All

  • Visual FoxPro Proper practice - edit a table in a grid.

    Hello everyone; I have a very simple form with a grid. The grid's record source is set to a cursor which contains a subset of a single table: Select * from PriceList where acct = cSomeAcct into cursor curPl I would like to add an edit button on this form which will alllow the user to edit the grid and update the Pricelist table. My question: What is the recommended way of doing this I thought of a few ways including issuing a "delete" and then an "append from", or maybe updatable views. How would you do this Thank you all. In addition to Andy's response, the problem with this approach is you either get all the records in the grid or if the table is filtere ...Show All

  • Visual Studio Express Editions How to add Help Balloons to the application

    Hi, I have set the Help Button Property on a form to true. This adds a question button to the form. If I then run the project and click the qustion mark button the move the mouse the question mark follows the mouse pointer to allow me to click on a control to then display help on the control. My question is how do I code this so when I click on a control it displays help either in the form of a balloon or dialog. Can not seem to find any help on this subject. Ron Still needs the 'help workshop' and then 11 more confusing steps with this software! I may just list my telephone number as help in my programs. ...Show All

  • Visual C++ Newbie struggling to use dlls

    Hi there Recently, I baught a usb interface card ( Velleman K8055 ) to try learn how to write programs for basic IO projects. The card came with a dll containing all the functions the card can perform. I have only had a year of experience programming in c and have no idea how to use dlls. How does one link a program to a dll and call its functions in VC Regards Jarryd I do have both a header file and a .lib file. I added the header, but how do I include the .lib file Thanks for the help Jarryd ...Show All

  • Visual Basic Iterating thru a MS Word Table in VB

    My programming environment is vb.net 2003 I have a task where my source data resides in MS Word tables. I need to get this data into a spreadsheet for analysis. The data in the word table is formatted and very complex with lots of control characters which baffle Excel. What I need to do is capture my word table into the clipboard and then parse the data by row and column. I can then deal with the formattng issues affecting getting the word table cell data into a spreadsheet one cell at a time. Can you help me with the strategy of how to parse a word table residing in the clipboard. I imagine that "tabl" is the delimiter for each column. I don't know what the delimiter for each row in the table would be. Thanks, ...Show All

  • Visual C++ how to add 3rd-party library support into my project for nmake

    Hi, I'm porting a program originally written for Linux to Windows and am using nmake to build my project by 'translating' the GNU makefile to VC++ nmake makefile. My program makes use of a third-party library called 'vs' and let me assume that the vs library is successfully generated and put at 'C:\vx\lib\debug'. Now my question is how to specify library path of 'vs' so that the Visual C++ linker can found and link them into my program. Below is the code segment from the Linux makefile ********************************** LIB_DIR=/usr/local/vs LIB_PATH=-L $(LIB_DIR)/lib LIB_LIB=-lvs -lnr SYS_LIB=-lGL -lGLU myapp: file1.o file2.o g++ -o myapp file1.o file2.o $(LIB_PATH) $(LIB_LIB) $(SYS_LIB) ...... ...Show All

  • Visual Basic TextBox to RichTextBox???

    I want to take info from two input TextBox's and insert it into a richtextbox Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click If TextBox1.Text = "" Then MsgBox("Please add text before adding a item") TextBox2.Text = "" Else RichTextBox1(TextBox1.Text) TextBox1.Text = "" RichTextBox1(TextBox2.Text) TextBox2.Text = "" End If End Sub I just need help with what to put after the RichTextBox1. . (TextBox1.Text) How about Richtextbox1.text = textbox1.text Or if you want to add both Richtextbox1.text = textbox1.text & textbox2.text ...Show All

  • Visual Studio Express Editions Data grid view controls

    How do i get the data grid view box to work in my application. For instance save data to a file and open data from a file, and get the copy, cut and paste controls to work in my application. e.g. the copy control in a RTB = rtb.Copy and the copy control for a html editor is HTMLDoc2.exeCommand("Copy"), what is this command in the data grid view box Can any one help im trying to make several different applications and am now trying to make a spreadsheet application that is what i need the datagrid control for, can u help ...Show All

  • SQL Server Connection provider for DBF file

    Hi, I want to upload some DBF files to SQL server using Integration Service. I already check every provider, but not found provider for DBF file. Anyone can help me Hello, When you create a data source, just use the provider "Microsoft Jet 4.0 OLE DB ..." Then try a OLE DB Source or a Datareader source over the data source created. Hope it helps ...Show All

  • Commerce Server SiteConfigReadOnly

    Hi, I have loads of warning messages in the event log concerning too many instances of the SiteConfigReadOnlyFreeThreaded objects. I do not manually instantiate these and have checked the code for manual context creation. I found minimal occurrences of "offending" code, though and these warnings are getting logged when hitting pages which do not even call this code. Could anyone let me know which CS components may be calling this code and when, or offer any assistance on diagnosing this problem Many thanks, Amy Hi, Not sure if anyone is monitoring this thread, but here's what we've found. After applying registry settings mentioned in this forum entry: http://grou ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Needs steps to purchase Creator's Club memebership.

    I find the link for the Creator's Club here: http://msdn.microsoft.com/directx/XNA/creators/default.aspx I find nothing when I attempt to find an offering titled "Creator's Club" from here: http://www.xbox.com/en-US/live/ WT.svl=nav Or listed under the Subscription Plans: http://www.xbox.com/en-US/live/memberships/xbox360subscriptionplan.htm It should be easier than this. There isn't even a blatant "Creator's Club" menu item in the XNA Express "Community" menu. Any demonstrable links would be nice. -Thanks You sign up for the Creator's Club through your 360. See here . ...Show All

©2008 Software Development Network