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

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

kevinj

Member List

hrubesh
JimMathies67
Ashutosh Kumar
TaYeB
Alastair Q
Vladimir Bougay
James Bannan
Prashanth Nethi
devexpert
Glynne
Rush hour
Musafir
HonDOn7
barkingdog
bombdrop
wjvii1437
Schnoogs
Jules23
Buddhist
TrevorD
Only Title

kevinj's Q&A profile

  • Visual Basic How to disable the showing of user component in toolbox???

    Hi there, Does anybody know how to disable the showing of user component in toolbox Every time I open my vb 2005 project, my user-component will show in the toolbox, which spent lots of time Can I skip this step Would you please advise me how Thanks, Joseph Add this attribute to your component's definition: <System.ComponentModel.ToolboxItem( False )> _ Public Class <MyComponentName>... ... Then rebuild. It should stop showing up in the toolbox. ...Show All

  • SQL Server Export to PDF and print in landscape

    Hello I have a report which I can print on legal paper, once I choose the landscape settings on print menu. When the same report is set to export to a file share in pdf format, it renders in portrait format. Is it possible to have the pdf document look like the landscape view so that the user can just hit print. Thanks Inder HI, In the report designer, click on the small square in the top left hand corner of the page so you can view the page properties. Now set the page size in the properties box to 29.7 width and 21 height. I can get screenshots if you need them ...Show All

  • Windows Search Technologies Unable to search mapped network drives like I could with Beta version

    I downloaded and installed the latest version of Windows Desktop Search. I had the Beta version before. It is a great tool! Here's my problem: when I had the Beta version I was able to search my computer's hard drive plus all network drives I have access to. Now I can only search my computer's hard dirive. I checked the "email and all hard disks" in the Desktop Search options and then selected "Index Now." Still I can only search my personal computer and not the network drives where I store virtually evrything. Anyone know what I need to do to be able to search the network drives again How come there is no "help" in the Widows Desktop Search" toolbar. Quite a problem. paul schultz lancaster, PA ...Show All

  • Visual Studio Tools for Office Drag & Drop + VBA Marco Question

    Dears, I have 2 questions: 1. I'd create a DataGridView inside a User Control (ActionPane) in my VSTO2005 project, and I'd like to know is it possible to allow users to "drag and drop" a DataGridViewRow item, that's row(s) of data, from ActionPane to Excel worksheet directly I can't find any DragEnter event handler for the worksheet object. 2. I want to display a dialog box asking user to select a location of a dynamic ObjectList, that mean, I'll create a ObjectList on the fly and let the users select a destination. I tried the Globals.ThisWorkbook.ThisApplication.InputBox with option 8 (Range) but it's just a modal dialog, I even can't select a select in the worksheet by mouse click directly. Any resolution or alternative idea ...Show All

  • SQL Server How extend excelRendering

    HI, I have a problem. In my report I used a custom funcition to convert seconds to string (because I want to show the amount of hours.. if I use format hh:mm:ss when the amount is greater than 24 exaple 25 this format shows 1 as hour)... now, when I export the report with excel I have the necessity to have DateTime and not string. There is the possibility to extend the excel rendering Can this help me Have anyone some idea Thanks I tried to formatting in the Format property, but noone fits my needs. because no formats for number of hours > 24 return a number >24. If you know there is a format for my need ... thanks in advance ...Show All

  • Visual Studio Tools for Office Help tutorial about OWC

    Hi genius, Can you show the OWC control on the ASP.net web page I'm very fresh about it. I want to show one excel sheet on it. Can you give me some point Thank you very much. I'm sorry, but this forum covers only the VSTO technology. The Office Web Components (OWC) are not part of VSTO. There's a special newsgroup for OWC ; try asking there ...Show All

  • Microsoft ISV Community Center Forums Displaying the description of a function and each of the variables within "function arguments" window.

    Dear all, When I want to insert a function into a cell, I press "insert function", I select the function that I need from the list, and a new window is displayed with a brief description of the function, and also the description of each of the variables in the function. How can I add this descriptions for my own functions Thanks! ...Show All

  • SQL Server NULL in Temp Tables

    Forum, I am looking at another report code (constructed by another user) and wanted to know why the user coded the word NULL after each field in the Temp tables. What does the NULL tell me and why would the user use it Sorry for the Newb question ... I'm still learning the language and could not find any information in the help files. Report Code /* Billing Status */ SET NOCOUNT ON CREATE TABLE #Appt( FacilityId int NULL , Visit datetime NULL , OwnerId int NULL , DoctorId int NULL , CompanyId int NULL , ApptSetId int NULL , CasesId int NULL ) CREATE TABLE #Temp( Visit datetime NULL , PatientId varchar(15) NULL , PatientName varchar(90) NULL , DoctorName varchar(60) NULL , ApprovalResults text NULL , Description va ...Show All

  • .NET Development udp component ?

    i want to make a little client / server app that communicates over the udp protocol. in delphi there are 2 components, a udp client and a udp server component. however in c# express i cannot find something alike. thanks. Larry Cleeton - MSFT wrote: Have you considered using System.Net.Sockets.UdpClient It could be used by both ends of a datagram conversation. could you provide an example how to use the udpclient as server and client also, does this provide me with an event-driven architecture thanks. ...Show All

  • Visual Studio Express Editions Automatically enter Text from one Text box to another as you type.

    I would like to setup a Text Box that pulls the Textbox.text from 2 separte text boxes and then displays them in this textbox. For Example... TextBox1.Text = "Jimmy" TextBox2.Text = "Taylor" TextBox3.Text = "Jimmy Taylor" But the kicker is I want it to add the "J" in TextBox3 as I type it in TextBox1 ect. I tried a number of places but I am not sure how to describe this and I am not coming up with very good examples. Thanks in advance for any help. Ok... Here is what I can do now I can call the handle and get a responce but from FormEventController I can not associate back to NewForm. It says NewForm does not exist. Which we went over that and I understand why it ...Show All

  • Software Development for Windows Vista Extracting images from WF Toolbox and/or WWF Designer

    can you tell me is there's a easy way to extract the images/icons from the WWF toolbox and WWW Designer We need to insert them in a document. Are them available in any other way from MS thanskalot Andrea ...Show All

  • .NET Development Reflection: Best way to identify if a specific Interface Exists

    Question Is there a better way than what is shown in the code sample to determine if an Assemblies exported types contain a specific interface Example _Assembly = Assembly.ReflectionOnlyLoadFrom(File); AppDomain.CurrentDomain.ReflectionOnlyAssemblyResolve += new ResolveEventHandler(OnAssemblyResolve); Type[] types = _Assembly.GetExportedTypes(); foreach (Type t in types) { Type[] infs = t.GetInterfaces(); if (infs.Length > 0) foreach (Type ty in infs) if (ty.Name == "IPlugin") { _IsValid = true; break; } } WHY Admittedly I have gotten spoiled by the HashTable/Dictionary object where if a key or a value is contained within the hash, one can call Contains(Key | Value) without havin ...Show All

  • .NET Development Login Form

    Hi there i didnt know where to post this..but here it is...i have login form..wat should i do to close the login form and go to my main form Please goto this forum http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=53&SiteID=1 ...Show All

  • Visual C++ Problems with Unicode

    is using TCHAR is better or Going with 2byte Unicode is better else Going with Ascii is better If you want to localize your code to non-English, you will need Unicode. If you don't know or care right now, just use TCHAR consistently and then later you can easily switch between the two, and define _UNICODE "just because." If you are more used to the ascii versions of the c runtime library function or need to port to Unix, then don't use TCHAR. Use char everywhere. Brian ...Show All

  • Visual Studio Express Editions Publish --- Won't

    I seem to have "lost" the CLR Well, that's what the message says when I try to Publish: "Error 1 Could not find file 'Microsoft.Windows.CommonLanguageRuntime, Version=2.0.50727.0'. C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets 2071 9 " The message ISN'T wrong !! "CommonLanguageRuntime" is not in 'Microsoft.Windows'. I cant find it under that name in Program Files either. (Maybe I'm running on a 'virtual' copy) Since the IDE and my app run just fine locally, I guess it's just Publish that can't find it. Any thoughts on giving Publish a hint on where to find the CLR Roger Sorry it took so long to get back to you Tall Dude, but I got pulled off for another proj ...Show All

©2008 Software Development Network