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

Software Development Network >> Northern Ferret's Q&A profile

Northern Ferret

Member List

Rekar
Kamii47
S.Rains
Markus Fritz
kokob007
EvilTrev
Pastards
DmitryMS
brianwood
maverick_majnoo
mgmcd34
newVBuser
Carlos Figuera.
Wojtek
shohom67
Hanumanth Reddy
payal tandon
Norbert.Bender
leonardoreyes
chaza
Only Title

Northern Ferret's Q&A profile

  • SQL Server exporting data to a flat file

    the "flat file" destination is missing from the choices when attempting to export data. ...Show All

  • SQL Server Liste of report made with ReportBuilder

    Hi ! I'm trying to figure out how can i get a list of the reports made with reportbuilder. I have create a folder in ReportManger and all my report are in this folder. When i create report with ReportDesigner i get a .RDL file, but when i create a report using reportBuilder i can't file the file created. What i want to do is to create in our web application a Web page with a list of report that our client has create using ReportBuilder. I was thinking about doing a loop on the folder for each report File but i can't find those files. Any idea Thanks! You should use the ListChildren method on the ReportingService2005 web service endpoint to enumerate the items on the report server. You cannot easily det ...Show All

  • SQL Server sql connection

    hello, Is it possible to use TELNET(from the client in LAN A) and access database instance at(sql Server at LAN B) . I meann to say is, can we use TElnet over the internet to access the instance. can anybody helps me Thanks in advance YOu can open a port to SQL Server via telnet, it questionable what you can do with telnet on the instance. You can also use any query tool to access the appropiate port on the SQL Server. If the Server is behind a firewall you will have to do a port fowarding, opening the firewall and redirecting the request to the sQl Server. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Windows Forms DataGridView Row Coloring

    I've read numbers forums and tried numerous things but still can't get this to work. I'm looking at a datagrid and based on what is in one of the cells, color that row in the grid accordingly. I step through the code and it goes through without errors, but my rows remain the default white. anyideas For Each r As DataGridViewRow In dv0.Rows If r.Cells("Frequency").EditedFormattedValue.toupper = "MONTHLY" Then r.DefaultCellStyle.BackColor = Color.PaleGreen Else r.DefaultCellStyle.BackColor = Color.IndianRed End If Next 'I've Also tried: 'Dim MyCellStyle As New DataGridViewCellStyle 'MyCellStyle.BackColor = r.DefaultCellStyle 'MyCellStyle.BackColor = Color.PaleGreen 'r.DefaultCellStyle.BackColor = MyCellS ...Show All

  • Smart Device Development how can i display a notification with dismiss button

    i whant to display a notification message using C# in NETCF v2 which have a dismiss button like the notification recived in sms messages . Use the new Notification class for this purpose. Here are some samples how to use it: http://msdn2.microsoft.com/en-us/library/ms172539.aspx http://msdn2.microsoft.com/en-us/library/microsoft.windowsce.forms.notification.aspx ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. VB.NET Support

    Hi, Will XNA Express be supporting VB.NET as well as C# development If so, how far off is it Thanks Hi, this was a "when (roughly) will I be able to download a vb extension" question, not a pro/ anti comment. My question still stands... are we looking at a month from now or should I bother learning c# I have no interest in what other people program in, there is no need for being rude.   It's already been stated that additional language support will be offered in the future. In order to get it out the door in a reasonable amount of time, only one language could be supported and C# was chosen. ...Show All

  • Visual C# How does VS 2003 pick the correct dll's to link to while compiling?

    I am using VS 2003 with Nunit. I have both the 2.0 and 1.1 assemblies of nunit on my machine. I have the following directories - >>dir | grep -i "nunit" 06/16/2006 11:05 AM <DIR> NUnit 2.2.8    //built with 1.1 framework 06/16/2006 11:06 AM <DIR> Nunit-Net-2.0 2.2.8    //built with 2.0 framework My GAC for Nunit looks as follows - >>gacutil /l | grep "nunit" nunit.framework, Version=2.2.8.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL    nunit.framework, Version=2.2.8.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77  Whenever I do a fresh checkout of an .NET 1.1 application, all the references to nunit.framewor ...Show All

  • Visual Basic Read and Modify the Registry

    i am new to adding and modifing stuff. so if any one ca n help me storing stuff like numbers inside the registry and retriveing it that would be greatly appreacitaed Ok. To write a key in the registry: Dim key As Microsoft.Win32.RegistryKey key = Microsoft.Win32.Registry.CurrentUser.CreateSubKey("MyName") key.SetValue("MyName", "Jeff") I put the key in the HKEY_CURRENT_USER. Now, if i want to read this key, even more easy: Dim key As Microsoft.Win32.RegistryKey key = Microsoft.Win32.Registry.CurrentUser.OpenSubKey("MyName") Dim name As String = CType(key.GetValue("MyName"), String) That's it Jeff ...Show All

  • SQL Server SQL Server 2005 Service Pack 1 public (NON-CTP) is available

    SQL Server Service 2005 Pack 1 is available here . The list of new features and fixed was published here on KB Article 916940 . Keep in mind to read the readme file first in order to avoid problems during the update or unexpected bahaviour. Have Fun ! -Jens Suessmeyer. You can submit your bugs at http://connect.microsoft.com/default.aspx , it's where the bugs supposed to be posted. ...Show All

  • Software Development for Windows Vista Visual Studio Crashes on Lab01

    Hi, I have VS 2005. I installed both the WWF extensions and the hands-on lab, but when I run the form-based task of the lab, the crashes Any ideas thanks! Lior Please rety this with the WF RTM bits. If this is still hapenning please provide more details of where the crash occurs and what stack trace or other debug info is observed. Regards, Paul ...Show All

  • Visual Studio Express Editions save in Excel

    Hello! How can i set the size of the textboxes in my code excel 2003 Imports Microsoft.Office.Interop Dim xlApp As Microsoft.Office.Interop.Excel.Application Dim xlBook As Microsoft.Office.Interop.Excel.Workbook Dim xlSheet As Microsoft.Office.Interop.Excel.Worksheet xlApp = CType (CreateObject( "Excel.Application" ), _ Microsoft.Office.Interop.Excel.Application) xlBook = CType (xlApp.Workbooks.Add, _ Microsoft.Office.Interop.Excel.Workbook) xlSheet = CType (xlBook.Worksheets(1), _ Microsoft.Office.Interop.Excel.Worksheet) xlSheet.Cells(1, 1) = TextBox1.Text xlSheet.Cells(2, 2) = TextBox2.Text . xlSheet.Application.Visible = True ...Show All

  • Visual Basic Radio Button & My.Settings

    I have a pair (group) of RadioButtons that are bound to a configuration file (My.Settings). However, when the user toggles the buttons, each button must be clicked twice before the update is displayed. Any thoughts on why this is Private Sub RadioButtonViewFahrenheit_CheckedChanged( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButtonViewFahrenheit.CheckedChanged If RadioButtonViewFahrenheit.Checked = True Then RadioButtonViewCelsius.Checked = False My .Settings.Item( "Fahrenheit" ) = True My .Settings.Item( "Celsius" ) = False My .Settings.Save() End If End Sub Private Sub RadioButtonViewCelsius ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Form file not found ?

    I'm writing a game with MDX 1.1 and VS's 2003 and 2005 On my computer i have 2 OSes I've started developing on Vista RTM with VS 2005 Game worked normally on my computer But when I uploaded it to a forum its members reported that it gives a system.iofilenotfound exception (don't yhink about missing data files, they're all at the right place and paths are not ablosute) Then i have switched to XP and ran EXE compiled on Vista with debug. This exception happens when dim frm as new GameForm or frm=new GameForm in sub Main() Frameworks 1.1 and 2.0 and DX are installed on my and members' computers. I have trie all combinations of VS 2003/2005 and Vista/XP I have no idea Help me, please Well nobody here is going ...Show All

  • Software Development for Windows Vista While loop only executes once

    Hi I want to use the While activity in a workflow I'm developing, however I have the following problem. The the first time the while loop condition is evaluated it returns true so the contained activity should be executed (I have a code child activity that just writes to the console). However the code activity is not executed. The workflow is persisted and then nothing else happens. I've been looking at the WhileAndParallel sample program to see if I'm missing anything. This runs fine as supplied. However if I move the workflow into my host and execute it there, the same thing happens - the loop condition evaluates to true and then the child activity is not executed. Is there something obvious that I could be doing in my host t ...Show All

  • Visual Studio Tools for Office Death at the first hurdle.. cannot even create an addin project

    I'm trying to create an outlook add in. I have a full install of Office 2003 Enterprise (including CDO). I have a full install of VS 2005 Developer I go to project->new C# ->office -> Outlook Add-in Type in a name, hit return and get: --------------------------- Microsoft Visual Studio --------------------------- Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)) --------------------------- OK --------------------------- Anyone able to shed some light on this please Hello, Mr. Omega Man this is srichand. preserntly i do also have the same problem which Mr. Martin has.. the reply which you had given didn't work at all. i tried this for 4-5 times.. but ...Show All

©2008 Software Development Network