OmidQRose's Q&A profile
.NET Development Server error: SharePoint Services
I'm working on a web service that will extend the functionality of TFS and work was progressing until I followed the instructions below from a sample in the SDK. After making these changes, I'm unable to publish the web site from Visual Studio. I get this error: Server error: The version of Windows SharePoint Services running on the server is more recent than the version of FrontPage you are using. You need a more recent version of FrontPage. Here's what I did before the trouble started -- any ideas By the way, I just made the changes below to an existing virtual directory. 1. Go to Administrative Tools and open IIS Manager . 2. Create an Application Pool calle ...Show All
Visual C# Additional Fields in a table
Using VS 2005, access db. I have a maintenance program that uses the 'INSERT INTO' statement. I know at some time in the future I will need to add more fields to table. Is there a method of programming that can be used so a recompile would not be necessary. (assuming I am not maintaining these fields in the program). I was thinking of something like a xml file. Any thoughts would be welcome. Thanks in advance. Assuming you store the table structure in a file of sorts, how would ypi get your application to set the field values during the insert operation Not only would you need to get the list of fields in the altered table, but you'd need to know what to do with that list. ...Show All
SQL Server Timeframe for Add-In for Office RTM
When is the Add-in going to be updated for the RTM of office ...Show All
Visual Studio Express Editions render a textbox
Gooday Is it possible to set the wording in a textbox as a hyperlink in vb 2005 express. Thanks Rob The LinkLabel control was designed to act as a hyperlink. You can make a TextBox contents look like a hyperlink by using a blue, underlined font and implementing the Click event. ...Show All
SQL Server Fetching an id to use in another task
Hi there, i have a task that has a ole-db destination. it inserts some data to a table. it's always 1 record that is gonna be inserted.after that the task is finished. however i want to use that same record in the followup-task. is there a way to retrieve the id of that specific record. Please note that the id of the record is an int-identity from sql-server itself. at the moment i'm fiddling with "remembering" the inserted data and hopefully it will be a 100%match in the next task, but i have a dark feeling it's not 100%. is there a common way how to approach this The simplest way I can see is to use a Execute SQL task in the control flow to retrieve it after the Dataflow that i ...Show All
Visual Studio Tools for Office Microsoft Access and Outlook Integration - Attach documents
Hi - i am building a basic contact management system in Access. I have an email form built in Access that allows a user to email directly from Access via Outlook. However i need to be able to attach document(s) to the form in access as you would in outlook. Does anyone have any code that i can use/modify for my purposes that will enable me to do this Thanks, Rhys. This would be part of Office programmability rather than VSTO. For assistance in this area, check the Outlook programming discussion at http://www.microsoft.com/office/community/en-us/default.mspx dg=microsoft.public.outlook.program_forms&lang=en&cr=US or the Access programming discussion at http://www.microsoft.com/office/community ...Show All
Visual C# C#console changed to a service
Can someone lead me in the direction on how i should turn my console application to a windows service I am getting an exception when trying to unistall my service saying the filenotfoundexception...but the directory is currently set where the file is c:\Mydata\bin\release> InstallUtil/u.exe Service1 is how its reads on my CMD then it throws this exception..... ...Show All
Game Technologies: DirectX, XNA, XACT, etc. 2D Lines
I'm still a little new to this, and I was wondering if there was an easier way to draw 2D lines. I'm making a 2D shooter, and all the sample codes and tutorials I've found so far seem very complicated for just drawing a simple 2D line on the screen (for things like user-interface purposes). So the gist of it, as I understand it so far is : Create a List<Vector2> Create a VertexBuffer Create an IndexBuffer Setup transformation matrices (really needed for just 2D ) Call DrawIndexedPrimitves Correct If not, what am I doing wrong Any easier solutions -Charlie I got my 2D lines working, but now they won't change colors. I'm just gonna post my code, and if anyone sees why I can't get my lines ...Show All
SharePoint Products and Technologies How to start workflow, designed in Sharepoint Designer, by adding/changing folder (not document)?
Hi, I build wf and bound it to specific library document. Now, I want wf to start when the new folder is added or its property is changed. It does not happen. I created ny custom content type, when the parent folder - on it wf does not start either. Maybe there some flag that I should to set - to enable starting workflow on specific content types Thanks Are you getting any errors in your SharePoint logs from your workflow I found that sometimes when workflows weren't starting when I expected them to, it was because there was an error in the workflow during start, and it didn't warn me through the user interface. I could only see the errors in the logs. It's very hard to ...Show All
Visual Basic trouble filling a dataset with multiple tables
MyConnection2 = New System.Data.OleDb.OleDbConnection( "Provider=Microsoft.Jet.OLEDB.4.0; " & _ "data source=C:\van3\Schedule.mdb ") Adapter2 = New System.Data.OleDb.OleDbDataAdapter( _ "select * from Absent,Exceptions,Lieuday,Jobs,Lines", MyConnection2) Dataset2 = New System.Data.DataSet 'binding the dataset2 to datagrid2 Me .DataGrid2.DataSource = Dataset2.Tables(0) <------------- dont work 'filling the dataset1 with data Adapter2.Fill(Dataset2) <-------------- dont work MyConnection2.Close() there are suppose to be five tables from Schedule.mdb.. however somehow i cant fill the dataset2 with the 5 tables is the select command wrong i m not very g ...Show All
Visual Studio Express Editions Express for Small Buisness
HI : I am from Pakistan, Lahore. As Microsoft products are licensed and their use in production environment entitles with "some cost". Can small businesses or self owned type business use the "express editions" for their customers. Please also refer some link which briefs about the "feature difference" between Express Web Developer / C# Express developer and Visual Studio Professional /Standard Edition. Please help. hi, Lahore The express edition is only limited in some features, and if it does not affect your dev and study, you can certainly use it. Here is the difference: Visual Studio 2005 Product Line Overview Feature Express Pro ...Show All
Architecture To use Typed Datasets or custom business objects in BLL ?
I am starting to get a handle on the whole DAL/BLL design strategy. It seems that there is a difference of opinion on whether to use typed datasets or custom business objects when passing data from the BLL to the UI. I recognize this and am trying to get some opinions on the best way to proceed. I am creating a small to medium size application for a small user group for the purposes of order entry. It will be a Winform app in VB 2005. I am somewhat new to this type of architecture decision. In my mind I seem to be leaning to the use of datasets because it is well documented and at my proficiency level, it seems like the best way. They also support SQL stored procedures which I am comfortable with. Then I just bind the UI components t ...Show All
Windows Forms Databinding problem when tabbing through form
Are you kidding I hope this is just a case of me not doing something I am supposed to be doing. Here is the situation: I have a databound form. When I click on each individual field and either set the value (combobox, checkbox, etc) or type the text, and then save to the database, everything is fine. However if I tab to each field and never click the mouse (ie set the combos with the arrow keys) the updates are never flushed to the dataset and the update command tries to send an empty row to the database. I have both a call to "Validate" and "EndEdit" in my save button sub. What gives Obviously I don't want dataentry people to have to click in each field. They should be able to tab from one to the next. ...Show All
SQL Server Analysis Services, msmdpump.dll and IIS.
Hello: I have two servers, one hosting Analysis Services and the other just serves as webserver. I have configured msmdpump.dll on the Analysis Services server succesfully using basic authentication. But now I need the webserver to provide Analysis Services data. I thought that I would be sufficient to repeat on the webserver the same configuration steps that I folowed on the Analysis Services server and change the <ServerName> tag in the msmdpump.ini file to point to the last one. Well, this isn't working. What am I missing Is there any tutorial or resource to accomplished I guess the problem you are having has to do with configuring permissions. First make sure you can connect from your web se ...Show All
Software Development for Windows Vista Lack of "go to" functionality in WF
I understand that there is no built-in functionality that allows the workflow to jump from one activity to another one up or down the stream... This seems to be a serious flaw in the whole WF framework... Any comments from the esteemed readers will be appreciated.... HI. a new discuss for "Go To Activity" is here Matt. ...Show All
