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

Software Development Network >> geraud c's Q&A profile

geraud c

Member List

USJOHN
geertdeprez
TheresaKad
luella
BorisAro
IMZiggy
Vedratna
Duque Vieira
Tanmaya
Vijay Guru Prasadh
zaboboa
VenkateshBabu
Horst Klein
fighter92
Katu
jsedlak
Doug_Schulte
j_ames2006
Minherz
Huson
Only Title

geraud c's Q&A profile

  • Visual C# Sudoku Check Complete Board Function

    Hi, i have a 2d array containing all the sudoku numbers, i have created a function to check whether a number is duplicated in any of the rows or columns, but now i need to check whether their are duplicates in the nine 3 x 3 boxes. anyone have any ideas heres the code so far to check the rows and cols: for (int row = 0; row < 9; row++) { for (int col = 0; col < 9; col++) { for (int col2 = 0; col2 < 9; col2++) { if (col2 != col) { if (board.Cells[row, col].Value == board.Cells[row, col2].Value) { TextBox1.Text = "Duplicate"; } } } for (int row2 = 0; row2 < 9; row2++) { if (row2 != row) { if (board.Cells[row, col].Value == board.Cells[row2, col ...Show All

  • Visual Studio Tools for Office WebService and VSTO

    Dear Experts, We are using VSTO 2003 to populate Excel worksheets with data coming from WebLogic WebServices. If we use the WebLogic WebServices on the same VSTO development pc, then we do not have any problem. But if we use the WebLogic WebServices on a different machine (within the company intranet via https://...) than the VSTO development pc, then we get the following error message when we attempt to get data from the WebService The request failed with HTTP status 401: Unauthorized xxx. Hopefully I explained my problem clearly. Sample of the code follows ... myWebService my_ws = new myWebService(); // Originally the myWebService.Url is pointing to the localhost; i.e., dev pc my_ws.Url = "https://..." ...Show All

  • Windows Live Developer Forums Why is </td> filtert?

    I noticed in my HTMLcode that when i use a tablecode, the </td> tag is filtert! I think this is very strange as a common tablecode would be: <table><tbody><tr><td>content</td></tr></tbody></table> After publishing it shows: <table><tbody><tr><td>content</tr></tbody></table> Is there any good reason for this I can't imagine there are any safety issues for that tag. And what will happen if this changes again, as we experience the filtert HTML changes from time to time and we don't understand the reason for some of it (for instance the target="_blank" wich was filtert before and can be used again now!!!)(finally....) ...Show All

  • Visual Studio How to get the total of pages of the reportviewer?

    Hi! My customer didn't like the reportviewer toolbar, so I'm making one with the print option and the page navigation option as well. i know hot to navigate throu pages, but I don't know how to get the total number of pages... Is there any way to know the total page numbers of the report in reportviewer Thanks for your help. Bernardo Piano wrote: Hi! My customer didn't like the reportviewer toolbar, so I'm making one with the print option and the page navigation option as well. i know hot to navigate throu pages, but I don't know how to get the total number of pages... Is there any way to know the total page numbers of the report in reportviewer Thanks for your help. HI, Can You tell ...Show All

  • Microsoft ISV Community Center Forums Sum of hours using select statement & VBA

    Hi - ok here is my question: I have an activity recording form that records hours logged against a company. I have added a field called 'sumactivityhours' to the table and the form.  what i would like to do is when a user selects a company from the drop down list (thanks derek and duck thing for your fantastic help with that problem) it automatically populates the 'sumactivityhours' field with the total number of hours worked thus far with that company  so that the user can see the total hours and then writes that information into the 'sumactivityhours' field in the table. as i gradually begin to learn a little more about VBA im guessing that i should create an on exit event on the companyname combo box that re ...Show All

  • Visual Studio Converting VS 2003 add-in to VS 2005

    I've been tasked with converting a VS 2003 add-in to VS 2005, and frankly don't have a clue where to start. Pointers and suggestions welcome. Apart from changing the registry entry from 7.1 to 8.0, you may need to change your commandbar references. See: Migrating and Upgrading Add-ins from Visual Studio .NET 2003 to Visual Studio 2005 http://msdn2.microsoft.com/en-us/library/4fzsydwe(VS.80).aspx ...Show All

  • Audio and Video Development Will Media Foundation support HD/BD?

    From the feature list of Media Foundation on http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnwmt/html/t_d_migrating_from_directshow_to_media_foundation__cyor.asp we can find in section "Media tasks" that Feature group Feature Media Foundation DirectShow Media tasks DVD playback and navigation No Yes That means MF is not going to support DVD. But what about the new generation of DVD Like BD and HD They both have navigation mode and are supposed to be "premium" content. Does the "DVD playback and navigation" here means MF will not support medias with DVD-style navigation, or only traditional D ...Show All

  • Visual Studio Tools for Office VSTO Outlook 2007 Form Region Question

    i want to create a new form region. On MSDN it says "If you specify a value of ReplaceAll for the <formRegionType> tag, the form region will replace the entire form, resulting in a new form for a derived message class." this is what i want. I do not want to tamper with the actual Contacts form itself. Rather I want to create a new form which derives from the Contacts form. However I cannot find any more documentation on how to do this. Is it possible to get the code from the voice mail demo which is shown here http://msdn2.microsoft.com/en-us/library/ms788695.aspx . This demo seems to do what I want to achieve. Any pointers much appreciated. I got stuck on this too - the key on th ...Show All

  • Windows Live Developer Forums Cannot apply pushpins on the map to locate Sri Lanka

    Hi, I was using http://dev.live.com/virtualearth/sdk/ URL to locate Sri Lanka on the map and tried to get the Coordinates of Sri Lanka. But i am unable to apply pushpins on the map to locate Sri Lanka. Does anybory knows how to apply pushpins on the map and get Coordinates in any country inside Sri Lanka Any help would be appriciated. Thanks, Lakmal Fonseka ...Show All

  • SQL Server Clustered constraint v clustered index

    I inherited a database where the designer uses unique clustered constraints instead of indexes for primary keys. Now as far as I can make out, there is no performance issue because it is clustered. My question is, why only create a unique clustered constraint instead of a unique clustered index My thinking is that a primary key should be ceated as an index rather than a constraint. Does it matter Hi Kenster. A unique clustered constraint, a unique clustered index, and a primary key are all really different objects/types. A primary key is a constraint, so when you create a primary key, you'll end up with a primary key constraint to enforce it...a primary key uses a special unique constraint beh ...Show All

  • Visual Studio Needed help in printing report in crystal report 9.1.5 for visual studio .net

    Hi guys, I found that this version of crystal report miss one very important icon-the print button. There are some solution such as printing from browser, adobe acrobat plug -in and export to other export formats but they still not a better solution. Did anybody know how to make a similar print button or there were an upgraded version of this crystal report for vs.net that have the print button Thanks in advanced for any of your reply. canfield There are samples using windows applications available off of Business Objects website. Below are links to samples in both c# and VB. The sample you want to refer to file name ends with printtoprinter. You can port this code from a windows app to a web ...Show All

  • Community Chat Virtual Intelligence, AI

    People we need to talk about this. When people talk about this, they say its based on storing and retriving information. The learning process for the computer would be to save as much information as possible from its interactions with the environment. But when I think about this, I feel its a restriction to learning. Consider this, when we are small adding two numbers 2 and 3, would be done on fingers or on a peace of paper. But when we grow up we dont use the fingers or paper. So my point is: The input(add 2 and 3) remains the same, also the output(5) remains the same. So where did the process of learning go. Thus, I would suggest that a machine should not only learn and save in information, it should also learn to proce ...Show All

  • Visual Studio Changing the IDE

    I hastily chose the c++ interface, but now want to switch back to the Visual Basic IDE, can anyone tell me how to do this you may need to reset the IDE settings. go to tools > options > Import and Export Settings > Reset all settings. be sure to back it up before hand just in case. Does this work ...Show All

  • Visual Studio Express Editions Invalid Column Name

    Hello, I am using Visual C# 2005 Express Edition and I am trying to connect to an SQL database. I have created the database with the following columns: id, first, last, phone, date I have created a binding source with a Data Grid View and I am trying to load the data. However, I am getting an "Invalid Column Name" error for NO apparent reason. Here is what my code looks like: SqlConnection con = new SqlConnection("Data Source=.\\SQLEXPRESS;AttachDbFilename=|DataDirectory|\\dsAllMembers.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True"); con.Open(); if (con.State == ConnectionState.Open) { System.Console.WriteLine("So far, so good."); SqlCommand command = new SqlCommand("SELECT id, first, last, phone, date FROM tblMemb ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Which graphics cards will work with XNA GameStudio Express?

    i cant compile any games because my graphics cards is basic and isnt directx 9 compatible, nor does it do pixel shading. can anyone give me a full list of compatible graphics cards Sadly, I do not have a list of said cards ... however, might I suggest that you simply go down to your favorite local hardware store (or give it a try even if you don't like the place) and say to them, "I'd like to look at video cards which are not old " I'm sure they can help you find one which is dx9 compatible :-) ...Show All

©2008 Software Development Network