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

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

Tore

Member List

badandybad
Weathertop
Valdimar
Elmer V
AvinashA
AdnanAs
caprock
Daniel Kunstek
SanjayNarang
andhowdy
lenab
Richard Taylor
lilphish
sql dev
Paul Thompson
Janne B
daveman
bowman
lumpynose
Murali.V
Only Title

Tore's Q&A profile

  • Smart Device Development HOWTO: cast data-type to another, which is only known at runtime

    Hi there, I'm writing my first bigger program with VS2005 (C#) and CF 2.0 (means I'm a newbee to .NET!). I have a problem which I can describe in simple words like so: I wish to convert the Returnvalue of the System.Data.DataRow Indexer (e.g. object outValue = row[index]) (which is generic System.Object) to the specific Data-Type of the DataColumn at RUNTIME! Is this possible and how can I acomplish that Any help is ...Show All

  • Windows Forms Does WebBrowser control in .net 2.0 support blocking pop-up windows?

    If yes, how to accomplish this Thanks in advance. Can't believe that it don't support that. if so, i don't think there'll be many people using that control since as of today the pop-up blocking has become a basic funtionality of web browser. anyway, hope the sp1 will be soon and resolve this:) ...Show All

  • Windows Forms Panel ScrollControlIntoView prob

    When a child control gets focus in a panel and AutoScroll is true, the scroll bar for the parent will immediatly scroll to ensure the selected control is in view. This is undesireable when dealing with several large controls in a panel. Is there a way to override and turn off this action Any help appreciated! ...Show All

  • Windows Search Technologies #msntb_toolbar_full_name#

    I have the following sign come up on the screen. #msntb_toolbar_full_name# is unable to load config file. If you recently upgraded to a newer version of #msntb_toolbar_full_name # and have not restarted your computer since the upgrade,please try resarting your computer.If the problem persist,please reinstall the #msntb_toolbar_full_name#. I'm currently running WXP Home Edition,IE7. W Defender.This problem only occured after I complet ...Show All

  • .NET Development How to return the inserted data in a stored proc using ado.net?

    Hi all Is there a way to get the inserted data in my stored procedure using ado.net i have a sample SP below for reference. Thanks ALTER PROCEDURE [dbo] . [spERSCountryAdd] ( @inCountry varchar ( 50 ), @inCountryUNCode char ( 2 ), @inCreatedBy varchar ( 50 ) ) AS BEGIN Declare @ERSRV as int set @ERSRV = 0 IF EXISTS( SELECT top 1 Country FROM tblERSCountry WHERE ( Coun ...Show All

  • Visual J# How to hit BreakPoints in VJ#

    Hi all, i have made breakpoints in our web application porting from vj++ to vj#.The break points were hitting and were enable to track using f11 and f10 keys. But in vj# ,when insert new break points,it don t seems to hit.Please give us some ideas where it is lacking, inorder to hit the break points.   thanks praveen Hi Raj, I tried the way as you said to hit break points.now it is ...Show All

  • Visual Studio Registering guidance with the experimental hive

    Can you give me any information or pointers on how to take a guidance package that is working in the normal hive of VS and apply it to the experimental hive Thank you. Brian. You can't change this on a per-package basis, as a GAT package isn't really a full VSIP package. What you can do is make your GAT package a full VSIP package by follwing what is described here: http://blogs.artinsoft.net/ocalvo/articles/10 ...Show All

  • SQL Server Import/Export Data Options

    Hello, Before it was nice that the import/export options were available whenever you right-clicked the table; now it seems as if that is only available at the database level. I was hoping with 2005 they were going to take it a step further in that the table you right-clicked would be setup as the import/export table for you... Any ideas why more limited this time Brian I also find it difficult everytime ...Show All

  • Visual Studio Team System Read configuration file rule

    I have a configuration file XML for a rule. How can I read this file This code: xmlConfig.Load("../ValidacionPrefijoNamespaces.xml"); accede to path of target. (not to path of definition rule) Thanks Hi Fran, I'm not sure I understand your description correctly. Do you want to load a configuration file that lives in the same directory as the assembly being analyzed As you pr ...Show All

  • Visual Studio Team System Email and IM alerts to capture problems

    When the December CTP shipped I asked about the availability of forms to allow users to send bug reports and have them inserted directly into a bug database that could be allocated to workers. I was told that they would be in Beta 2 but I can't seem to locate them at all. Could someone direct me to them or have they slipped to a later version What you are after now goes by the name "Visual Studio 2005 SDK" and is available here ( ...Show All

  • Visual FoxPro Cursors, Views, and Grids

    Using VFP8... I have a simple form with a grid. I want to use a cursor object to use as the record source for the grid so I can let the user change which column to sort on. I Select and order the data and create the cursor (csrTemp) in the form.init, the view that is used in the Select is in the Data Environment. I'm not sure how to reference the cursor in the data source for the grid, when I run the form it seems like the order is from ...Show All

  • SQL Server Add an adhoc record to the mdx result

    I have the following mdx query with       member [Measures].[ParameterCaption] AS '[Company].[Branch].Currentmember.Member_Caption'       member [Measures].[ParameterValue] AS '[Company].[Branch].Currentmember.Uniquename' select      {[Measures].[ParameterCaption], [Measures].[ParameterValue]} on columns,     {[Company].[Branch].ALLMEMBERS} on rows from [Profit ...Show All

  • Windows Forms Methods in windows service

    Hi all, Just i've created windows service called "MYserv1" and controlled(like start and stop) it via VB.NET client apps. Now i want to write my own function calls in the windows service. i need to pass the parameters as well as need to get a return value from the function from/to normal windows client application. How to do it Most importantly,how can call those methods from client programs. Kindly advice me in this aspect. ...Show All

  • Visual C# How to check for tables in dataset

    Hi all. I am not using mssql. I get my data from a progress db. When i receive my dataset, they can contain 1,2,3 or 4 tables. How can i find out what tables are in the dataset. (The name of the tables can change..)I have tried if (set.Tables[0].Rows.Count > 0) if (set.Tables[1].Rows.Count > 0) if (set.Tables[2].Rows.Count > 0) This dosn't work. A ny other way to check my dataset for tables Thanks. Lars E. ...Show All

  • Smart Device Development Keep alive packet

    As I've mentioned in one of my previous threads, I need to send a keep alive packet to keep a connection open. Does anyone has any idea what's the smallest amount of data I can send At this time I create a TCPclient and connect to it. That's about 0.20KB and that's to much. Are there connections possible with less data traffic I don't know the answer to your question, but if I was doing something similar (using ...Show All

©2008 Software Development Network

powered by phorum