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

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

DevDiver

Member List

Horea Soanca
Manuelmpf
DavidR100
Qiming Lu
apunater
KristianSv
Jeff3464
Aego
Sarath.
Latso
dnenadd
mary jane
sully blue
AndyL
AdrianWoods
Roger Jennings
Wajdi Georges
OmegaMan
Wilk06
mario.muja
Only Title

DevDiver's Q&A profile

  • Visual Studio Team System BUG: MS Project Work Item Publish Error

    I believe there is a bug in VSTF where MS Project thinks that Work Items are assigned to multiple people when the username is the in the form: Camp, Jason It looks like the comma in the "Assigned to" field is used as a delimiter. Is this a known issue If so, are there any workarounds Thanks for the info. I just opened a product support case on this and it looks like Microsoft is going to have a public hotfix released for this in the next couple of days. I'll wait for the public release as opposed to taking another shot at the private hotfix release (even though the hotfix has been updated since I last dowloaded and installed it). ...Show All

  • Visual FoxPro Problem retrieving the dates

    hi. I’m trying to retrieve the dates from the Option 5. When clicking on the Proceed command button to send to the report, nothing on the report designer to be displayed. Wondering whether I get the coding “report form…… preview” right. On this form Sort By: Option 5: Date Posted from <date1> to <date2> Proceed Command Button * date1 and date2 are textbox field. In Init procedure of the Form With thisform .date1.value = date() .date2.value = date() endwith In Click procedure of cmdproceed (command button) Select atnrepair do case case .opps1.value = 5 set order to tnrepaire endc ...Show All

  • Smart Device Development How can i check and compare the version number of 2 assemblies

    I have two version of the same product one on the SD card and one under the "Product Files" directory snd I want to check the version number in the assembly to know if I have to upgrade the software. to get the version number I do: Assembly as1 = Assembly .LoadFrom(SDDir + "\\MyApp.exe" Version myVer1 = as1.GetName().Version; Assembly as2 = Assembly .LoadFrom(PFDir + \\MyApp.exe ); Version myVer2 = as2.GetName().Version; The problem is that the second call to LoadFrom does not load a new assemly but gets the one from the first call probably from a cash. that is : If the SD Card have version 4.0 and the "Program Files" version is 3.0 I get from both LoadFrom calls version 4.0 if ...Show All

  • Visual Studio Tools for Office 5 Outlook questions (CommandBarPopup, StatusBar, TrayIcon & updating items)

    Hi all! I am having troubles coding some stuff on my outlook plugin. I'm using a shared office plugin on VS but i think this is the right section to put the post 1st In outlook toolbar you can see a CommandBarPopup that has a icon. How can i set a icon on a CommandBarPopup I tried adding a button with the popup caption before the popup and loose the popup caption but when the popup is clicked the area bellow the button i created is not filled so im not satisfied with the solution. Is there any way to fix this Can i use begingroup to acheive this 2nd Can i place a icon on outlook status bar How 3rd How should i proceed if i wish to add a windows tray icon everytime my plugin is started 4th How do you update outlook items. I mean if you ...Show All

  • Visual Studio Express Editions How to read the executable?

    Hi, Is it possible to read the exe file and make some changes in that and again compile it means create new exe OR Is it possible to read the exe and put that code in another exe means concat the two exe file and create new executable Pls help me out Waiting for reply Thanks Nilesh Thanks for ur reply. But can u pls explain me what is ILMerge and how can I use this Any details about the ILMerge... Pls reply me Thanks, Nilesh ...Show All

  • Windows Forms Using StreamWriter To Write HTML File

    hiii can any body tell me how can i use streamwiter to *create an HTML file *write on the that file *using HTML tags in wrting in case i need to write in a formated Way (bold,italic,color,write data in HTML table) ...... if its not available using StreamWriter where could it be thanx in advance ......... Hope it help, if (! File .Exists("Test.htm " )) { StreamWriter stream = new StreamWriter ("Test.htm " , true , System.Text. Encoding .UTF8); stream.Write( @"<html>" + stream.NewLine+ @"<body>" +stream.NewLine ); stream.Write( @"<table width='100%' cellpadding=' ...Show All

  • Visual C# how handling the onclick event on a IHTMLElement object ?:

    Hi, I'm working in .NET framework programming a toolbar in c # for Internet explorer browser. I would like to handle the onlclick event on an IHTMLElment object in the web document; I found something in the following document http://www.experts-exchange.com/Programming/Programming_Languages/Dot_Net/VB_DOT_NET/Q_21555434.html but I can't view the solution 1) somebody konw the solution 2) in the above document it's used the htmlElementEvents2_Event class; but I didn't find its documentation in http://msdn.microsoft.com/library/default.asp url=/workshop/browser/mshtml/reference/reference.asp somebody knows how to find that somebody in help for me any idea thanks in advance ...Show All

  • Visual Studio Express Editions Can't move window while function executes

    I'm developing an application using Visual C# 2005 Express. In part of the app, I loop through a series of objects and call a funtion that creates a process to run a batch file. The batch file is run once per object in the loop. The problem is that when this part of the code is running, I can't move or minimize the application on my screen. It would be nice to get this working right since running all of the batch files can take up to a half hour. I've tried executing the function in a new thread, but the window still wouldn't move. The textbox is updating properly with the redirected output from the batch files as they run, but the form is stuck in one spot. Any ideas Thanks! usually have a second thread will cause the main ...Show All

  • Visual Studio Express Editions Change colour of Font when text equals certain value

    This is the last thing I want to do before building and testing my program. I want the text in my textboxes to change from blue to red when they reach a certain value ie if numbers = 1, 2, 3 etc they stay blue if they reach -1 and below they change to red. Can I do this for all of the textboxes at once or do I need to code each textbox individually. How would I code this Nearly there = yippeeeeee well to do it for all textboxes you would have to loop through the collection of controls, check if its a textbox then do your thing:   for each currentControl as Controls in Me.Controls    if TypeOf(currentControl) Is TextBox Then       Dim theTextBox as Te ...Show All

  • SQL Server Using Bulk Insert with DBF files.

    Hey Guys. I am new to SQL Server and am trying to write a procedure to import 500 DBF files. (<-- This will happen every two weeks... so looking to automate it a little bit...) I want the procedure to loop through the folder and insert each DBF file into its own table. Here is what I have so far: (I am thinking to finish this procedure and write a batch that loops through the file and runs the procedure on each one.) ---------------------------------------- create table [tempDBF]( [DOC_NO] varchar(14) not null, [FAPC] varchar(5) not null, ...etc ); create table ['"+@fileName+'"]( [DOC_NO] varchar(14) not null, [FAPC] varchar(5) not null, ...etc ); CREATE PROCEDURE ps_DBF_IMPORT @pathName varchar(200) @fileName ...Show All

  • Windows Forms Creating Flat Tabs

    Hey there, I'm working on an app that has one tabControl component, and which has a bunch of tabs associated with it. I noticed that in the properties for buttons you have the option to control FlatAppearance. However for the tabControl, there is no option to display the tabs flat (like that you see in Excel and Visual Studio). Its a nice look imho, and I'd like to implement it into my app. I was poking around the MSDN library to come up with something that could control the look of the tabs I found the VisualStyleRenderer.DrawEdge Method public Rectangle DrawEdge ( IDeviceContext dc , Rectangle bounds , Edges edges , EdgeStyle style , EdgeEffects effects ) Does anyone have any experience with this metho ...Show All

  • Visual Studio Express Editions Html editing

    does eny one know what control i should use in visual basic express to create a html editor ...Show All

  • SQL Server Do I need ADO 2.8 to connect to SQL Server 2005 from Access?

    We have just upgraded to SQL Server 2005 from 2000. We have an MS Access application that connects and links tables from the new SQL Server database. Users are getting errors when creating records for the first time on the subscriber databases. We have reseeded the primary keys on all the tables to no avail. The only thing we can think of that may be a problem is the version of ADO that we're using as a reference in the MS Access application. We have a reference to ADO 2.5 and don't know whether we should be using 2.8. Any suggestions Thank you. YOu should be able to use the MDAC 2.5 for basic funtionality (otherwise and for the new features you should use the SNAC driver). Is the SQL Server located on the servers where the applicat ...Show All

  • SQL Server Exporting sp result to flat file using XML schema

    Hi there, To put in context, we are using BizTalk to get the result from a stored proc and export it to a text file using a XML schema (XSD). The XSD includes formatting info such as the justification, padding, etc. We are moving this process to SSIS and we want to reuse the BizTalk schemas. Is it possible Thanks Frantz Hi Phil, The only appropriate output file is a flat file. There's no need to go through XML. Suppose I create the best BizTalk orchestration possible for exporting a set of data to a text file, would it be as fast as a SSIS package My guess is that SSIS outperforms BizTalk on the benchmark. ...Show All

  • Visual Studio Tools for Office Can not open Sample project

    Hi, I am working on Visual Studio 2005 (8.0.50727.42). Also have VSTO2005 Second Edition and Office interop assemblies. I have download the 'outlook samples' from MSDN. And trying to open one sample, for example 'ShortcutBar.sln'. Am getting the following message. The message is very generic, not giving a hint what application is missing! --------------------- "One ore more projects in the solution could not be loaded for the following reason(s) The application for the project is not installed These projects will be labeled as unavailable in Solution Exporer. ....." ---------------------- Thank you. Sen. Hello. You are correct. The sample projects for Office 2003 that you have mentioned were wr ...Show All

©2008 Software Development Network