Tagged Questions

This tag is usually used to denote Microsoft, but is usually useless, please don't use it.

learn more… | top users | synonyms

5
votes
1answer
199 views

Can I open a MS access mdb file on CD with Delphi

Due to the MS Access database file generating a .ldb lock file when the .mdb file is open I get error trying running a Delphi application on CD where the database file also is on the CD. Is there any ...
4
votes
3answers
639 views

WPF, Xaml and the future of MS Development

I am beginning to heavily invest in WPF and was wondering what those more knowledgeable than myself thought as to the wisdom of this decision. Is WPF the way forward?
3
votes
1answer
446 views

Dark Background of new WPF Ribbon becomes gradient?

I am using the new Version of MS WPF Ribbon (Version MS WPF Ribbon 3.5.40729.1) with Windows 7 and I am trying to change the Background of the Ribbon. Everything looks fine if I use light background ...
3
votes
1answer
122 views

Where are some good resources for word templates for programming needs?

For example, I have a wide variety of needs for templates, like in creating project plans, project specifications, requirements etc. But I have never created my own forms before, so it really helps ...
3
votes
2answers
4k views

How to read Excel cell from VB.Net

How can I read specific cell from Excel file using OLEDB Connection with VB.NET? Can you show me sample code? Thanks in advance! Best reagrds, thlaing
2
votes
0answers
165 views

Re-Link to new mdb then delete old database (mdb)

I have a procedure where the ultimate objective is to update all tables on a server backend database from a laptop. Once this is complete, I want to delete the local (laptop) mdb and replace the ...
2
votes
3answers
104 views

SQL conditional AND clause?

In my query i want to add the and clause in query if a specific condition occur. See the where clause of my query 1 and ps.dept=dept.deptid 2 and ps.sdept=deptsub.deptid 3 and 4 ...
2
votes
1answer
674 views

Binding a DataSet to a MultiColumn MS Chart

I have a DataSet with multiple DataTables that I'd like to bind to a chart with multiple column series. I expected each series to have different values respective to the DataTables in the DataSets; ...
2
votes
1answer
496 views

Entity Framework setting Auto DateTime Column to: 01/01/0001 00:00:00

I have a MS SQL Srver 2005 Database, that has a table with a DatTime column. The DateTime column is of smalldatetime type. The date and time is auto generated by the DB using getdate() function. This ...
2
votes
2answers
334 views

Help System for desktop application based on .NET 2010 , C# and WPF

I searched for some time but could not find any answer that give me clear idea. so i am posting my question. I am working on desktop application on .NET 2010, C# , WPF as front end and SQL 2008 back ...
2
votes
1answer
633 views

How do I BULK INSERT with additional column showing filename?

I'm still getting used to SQL, so before I get to using stored procedure, I would like to understand how to use BULK INSERT effectively first. I need to combine 50+ csv files and dump them into an ...
2
votes
2answers
136 views

SQL Server 2008 on a separate machine is very slow

We have an application which gets the data from a MS SQL database residing on a server in the headquarter over an internet connection. Now the problem is that the data is pretty large which makes the ...
2
votes
1answer
610 views

How to print labels on both sides of a rangebar in WinForms MS Chart using C#

How can i add labels for each and every yvalue in series of a rangebarchart ? You all know that for plotting rangebartype series ,we need two yvalues as yvalue[0] and yvalue[1] .Here I need to add ...
2
votes
2answers
483 views

How to automate Microsoft word 2003 from WPF?

I have a WPF window( using c# as code behind) that has some text fields, and I want when the user press print button take the information on these fields and use Microsoft word 2003 template that has ...
2
votes
0answers
56 views

Microsoft Web Expression 3.0 syntax coloring

Is there any way to import Visual Studio 2008 color schemes into Expression Web 3.0? I can change the font and the size of the font, I can also change pretty much every aspect of the coloring from the ...
1
vote
1answer
36 views

Make Tablix Column group show when filter returns no rows - SSRS

I am working on some SSRS reports and am running into an issue where Tablix Column groups drop from the table when the filter returns no rows. Is there any way to make this column appear but with ...
1
vote
0answers
48 views

Highlight search terms in MS Excel document [closed]

Is there anyway to highlight search terms within a MS Excel document ?
1
vote
2answers
73 views

How to get specific texts from the URL put on MS Excel cell?

I want to build the database which gets the url from user in one cell and returns some texts to the other cells. The Url is from www.imdb.com . I saw it was possible on Google Spreadsheet. I am ...
1
vote
1answer
274 views

List of Exchange 2007 Mailbox attributes(properties) using by powershell command?

I need to list exchange 2007 mailbox attributes (using powershell), which can be set using powershell command (Enable-Mailbox). Do you know how I can do this? I know the list of parameters are here: ...
1
vote
3answers
53 views

MS Excel: how can I make Max() more efficient?

I have a set of data that looks like this: ID Value MaxByID 0 32 80 0 80 80 0 4 80 0 68 80 0 6 80 1 32 68 1 54 68 1 56 68 1 68 68 1 44 68 2 ...
1
vote
1answer
304 views

Jasper Report to show lots of static text

Can anyone suggest a way around this problem with my JasperReport ? I am using iReport 4.4.1 to write a report that also contains a lot of static contractual text, which I am putting in a text box in ...
1
vote
1answer
48 views

If statement in Excel to recognize a leap year

How could I write a If statement in Excel to divide a cell by 2088 if it is a leap year, and if it is not a leap year divide the same cell by 2080?
1
vote
1answer
166 views

MS Chart C# - Why the Chart don't show the first Monthname?

I have a Ms Chart on a simple Form and the follow Testcode: ChartArea myAreachart2 = new ChartArea(); myAreachart2.AxisX.IntervalType = DateTimeIntervalType.Months; myAreachart2.AxisX.Minimum = new ...
1
vote
0answers
244 views

Multiple stacked columns MS Chart

Edit: Scratch the question, it seems it's just easier to do it using SeriesChartType.RangeColumn What I have (example chart I'm playing with to get the effects right): From: ...
1
vote
2answers
70 views

Format a string type into a datetime format

i have a column (nvarchar),there are datetimes in there but as a string.I want to change that column's type into smalldatetime but before i want to format all string dates into a same datetime ...
1
vote
1answer
97 views

Data Import from .TXT to MS Access 2003

I have a .txt file which contains data of a Access table. Now I am using the Import utility of MS Access 2003 to import the data from the text file to a table. Theere is one data in the text file ...
1
vote
1answer
62 views

Launch MS Access from Winforms

I'm trying to figure out how to launch a specific page/form in an Access project from a winforms app. Basically I'm trying to link the two applications via hyperlink or button or whatever (clicking on ...
1
vote
2answers
89 views

MS Accesss - Create Table - System Tables

Scenario: 1. Access database containg linked tables 2. Second Access database to receive new tables based on structure of linked tables in 1st database 3. Code looks like this: Dim db As Database ...
1
vote
2answers
2k views

MS Access: Filter/Search records in a form using main form and subform criteria from user input

I'm currently working on a database which is rather complex, at least for my ability level. Essentially it is a database of projects, structures and contacts. Within these structures there are sub ...
1
vote
1answer
182 views

Want to fetch MS Exchange attributes in Perl-Linux

I am using Perl in Linux Environment. want to fetch MS Exchange attributes (like mAPIRecipient) Using Net::LDAPS, but it only gives me access to LDAP attributes (not Exchange attr.) In Windows it ...
1
vote
3answers
75 views

How do I get a random value from a range in MS SQL?

Let suppose my table can have values from 000 to 999 (three digits and less than 1000) Some of this values are filled. Let's suppose currently my table has 000,002,005,190 ...
1
vote
0answers
295 views

Dynamically generated MS Word document from C# using HTML & CSS does not display header in word 2003

I am trying to generate an MS Word Doc using HTML and CSS from C# as in http://www.codeproject.com/KB/office/Wordyna.aspx The Problem: When I try to display an html styled header in the word doc, the ...
1
vote
1answer
417 views

converting a string to date and formatiing to MS access 2007 database

HI i have a application connecting to the MS access database. the date is passed as a string from the jsp . i am converting the string to date as follows strtDate is the date in string format (eg ...
1
vote
1answer
154 views

MS Publisher Automation

I need to automate MS Publisher via a Silverlight OOB application to generate a publisher document. I have done some Excel automation via Silverlight starting from an example I found on this forum. ...
1
vote
0answers
247 views

Merging word documents

I'm currently working on a desktop app that does a work on a word 2003 template and then merges all the created documents into one file. Most of the app is working fine, except for the merging part. ...
1
vote
1answer
237 views

Trouble with MS Remote Web Deploy II6 6

I am getting the following error when I run web deploy: >C:\Program Files\MSBuild\Microsoft\VisualStudio\v10.0\Web\Microsoft.Web.Publishing.targets (3588): Web deployment task failed. ((3/25/2011 ...
1
vote
1answer
431 views

PHP client for MS Exchange Mail

I am developing a simple PHP mail client for MS Exchange Mail: To send out emails with attachments via MS Exchange Mail To receive email with attachments from MS Exchange Mail What method should i ...
1
vote
1answer
84 views

What exception does MS Test throw when the test run is abruptly stopped(perhaps in the task manager or because of a crash)

I am trying to run a set of tests in MS Test and log the results. If the test is abruptly stopped during the run, I would like the state to be saved. How can I accomplish this? Does MS Test throw any ...
1
vote
3answers
166 views

find rows that fall between a day and time of the week in sql server

I have a table of rows in MS SQL that contain a start and end day of the week, hour, and time. I need a T-SQL query that can pull rows from that table where GETDATE matches the day of week and time of ...
1
vote
1answer
153 views

SQLite3 and System.currentTimeMillis()

I want to generate exact same values using SQLite strftime() or any other function as that of System.currentTimeMillis() function in java. Is there a possible way ? SELECT strftime('%s','now'); ...
1
vote
1answer
233 views

Convert ms sql db script to oracle

I have a requirement to convert the Database from MS SQL to Oracle. Is there any online /offline tool to convert the db script from Sql to Oracle.
1
vote
1answer
44 views

Concatinating Column Values to a Single Row

For Example: Color Green Blue output: Green, Blue (I'm using ms access 2007)
1
vote
0answers
398 views

Insertion of image file to varbinary (max) field in ms sql server using php

i am able to convert image to binary format **<?php //$id = $_GET[‘id’]; //using sql query or other source get the dynamic image name or path $path = ‘../images/rose.jpg’; $size = ...
1
vote
3answers
62 views

SQL query in Ms-access

I got and error message when I am trying to implement this query. It is saying syntax error, can someone help me... strLocalSql = "SELECT tblEventTypeList.EventType" & _ "FROM ...
1
vote
0answers
718 views

How to show Datapoint lable values in legend in MS BAR Chart

Can any one please assist me on how to display label values of potential(15,13) shown in the following image link MS Chart Image in the legend which is currently showing #VAL. Actually not only the ...
1
vote
4answers
1k views

Sql server vs MS Access performance

I have existing application which uses Sql server 2005 as a backend. It contains huge records, I need to join tables which contain 50K-70K. Client m/c is lower hardware. So, can I improve its ...
1
vote
1answer
198 views

How can I GeoCode a table of addresses in SQL Server automatically?

Is there a way to geocode a table of addresses so that latitude and longitude columns can be updated with the correct details. Ideally I would like a system that will operate every so often, ...
1
vote
1answer
38 views

Some bizarre behavior in MS Access. Please help

I have defined three tables, Stores, InventoryItems and StoreItemRecords. My StoreItemRecords table has foreign key columns (StoreID, InventoryItemID) that "point to" the primary keys of the Stores ...
1
vote
2answers
2k views

Creating a CSV File in java from a HashMap

I have a hashMap in java in terms of some keys which each key is indicating a flow. Then each value showing statics about each packet belongs to that flow. What I need to do is, to draw graphs for ...
1
vote
1answer
214 views

How to use MS Azure AppFabric via proxy server in corporate network

I'm testing the Service Bus AppFabric within our corporate network by runnng the Echo service sample from the AppFabric SDK samples (WindowsAzurePlatformAppFabricSDKSamples_V1.0-CS). However, the code ...

1 2 3 4