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

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

AJamil

Member List

Slyke
Kartit
Dave_AC
SpamT
qpsk
Leon Bouquiet
Liu Hua
Michael Baxter
mate6666
Igor L. Kravchenko
Dmitry Pavlov
Vítor
TWild
ALFKI
donkaiser
p.cosmos
Adi Kremer
mukthi
olsi243534
AboOmar
Only Title

AJamil's Q&A profile

  • Visual Studio Express Editions Ugh....Driving Me nuts....

    I am in the middle of writing a prog that takes a file within a directory on a HD renames it to the directories name and then places the newly named file on the root of that HD. Here is the code. and I am not getting it.....I would really appreciate your help. Thanks Imports System Imports System.io Imports System.IO.DirectoryInfo Public Class Form1 Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim dlg As New FolderBrowserDialog Dim FileNamesSelected() As String Dim SelectedFolder As String 'Dim FileFound As String SelectedFolder = Me .FolderBrowserDialog1.SelectedPath FileNamesSelected = System ...Show All

  • .NET Development FTP mget latest date

    Not sure if this is the right forum, but I'm hoping someone can help me with a piece of FTP code. I am trying to pull data from a remote location. I know the name, but the date tag changes every day as a new file is created. Is there a way of pulling only the latest file date based on the creation date for a given partial named string. For example: File naming convention is "data_yyyymmdd.dat". Using mget I could write: mget data_*.dat However this would copy across all of the files.. not just the latest. Is anyone able to help Thanks Alx Hi Rizwan Thanks for your suggestion. I tried "ls" but is only supplies the file name, so I tried "dir" ...Show All

  • Windows Forms Where to start

    Well my current error is this: I got all to work go to do an update to 1_5_17 one client was on 1_5_15 and I get this:    Below is a summary of the errors, details of these errors are listed later in the log.  * Activation of http://backtalker.net/diffdata/DiffData.application resulted in exception. Following failure messages were detected:   + Downloading http://www.backtalker.net/diffdata/DiffData_1_5_0_15/DiffData.exe.manifest did not succeed.   + The remote server returned an error: (404) Not Found. I'm not working on 1_5_0_15 So I get ride of everything and start from scratch and force it to be 1_5_0_15 and then I get this:   "Well I would put it here but in the proc ...Show All

  • .NET Development C# and COM port's problem

    Dear All, I have developed an application communicating with the COM serial port using .NET 2.0 and C# in VS.NET 2005. It works fine indeed but for some reasons it DOES NOT work with old (5 - 8 years old equipment with COM port). We use our application with a quite old equipment and it doesn't work but when we connect that old equipment to Hyper Terminal and it works just fine. We alrso us Ms. Comm Control 6.0 in VB6 it also works find with that old equipment but for some reason it doesn't produce any data into the new application developed in .NET 2.0. This could be a problem of incompatabitlity That application does work fine with new equiment. Could anyone advise how to solve this problems Any advice is highly appreciated. ...Show All

  • SQL Server Using Forms Authentication with the Report Viewer control and SQL Server Reporting Services 2005

    here is my error System.Web.Services.Protocols.SoapException: System.Web.Services.Protocols.SoapException: Logon failed. ---> Microsoft.ReportingServices.Diagnostics.Utilities.LogonFailedException: Logon failed. at Microsoft.ReportingServices.WebServer.RSCustomAuthentication.LogonUser(String userName, String password, String authority) at Microsoft.ReportingServices.WebServer.ReportingService.LogonUser(String userName, String password, String authority) --- End of inner exception stack trace --- at ................. Please help me This error is thrown when the LogonUser fails to find a correct username and password. Have you created the UserAccounts database (with the sql-script) and registered a ...Show All

  • SQL Server Dimension Writeback

    I am interested in using the Dimension Writeback feature to solve a specific problem in a forecasting application. I only need to Update attribute values on existing dimension members, I don't need to insert or delete members. Looking at various resources on the web, I think I understand the following ... - I must be using the Enterprise version of SQL Server / SSAS - I need to write enable the relevant dimension from within my development environment - My users need to be using an OLAP Client which supports dimension writeback. Some questions ... - Is my understanding above correct - Do the following OLAP clients support dimension writeback --- Excel 2007 Pivot Tables --- Excel Services running within Sharepoint 2007 --- If n ...Show All

  • SQL Server How SSIS works with data sources other than SQL Server?

    Hi: I am new to SSIS. I would like to know if I want to transfer data from one Oracle schema to another Oracle schema and also to do scheduling of the packages, can I still use SSIS If yes, what are the components that need to be installed on the database server and the development environment I hope I don't need the full SQL Server database installation in order to use SSIS. Thanks! MuiSukYuen I've had a lot of luck loading Oracle but it will be challenging in some areas. First consider using this driver as your destination: http://www.persistentsys.com/products/ssisoracleconn/ssisoracleconn.htm . It's extremely fast for loading data into Oracle and it essentially wraps the Oracle sqlloader fu ...Show All

  • Visual C#

    Hi! Could anyone tell me what the following code does exactly,please Regex.Replace(strInput, "[^\\w\\s]", ""); Thanks in advance! No What he was saying and If i would have seen it I would have commented. the - character specifies ranges. For example [a-zA-Z] specifies all characters a though z and A through Z. Thus if you want to use the - in side of a group as in actually match that character it has to be the LAST character. Which is why the - was placed at the end. So my explanation should have been Match all characters that DO NOT (^) match (\w alphanumeric characters) and \s (white space and tab) and - (hyphen) and replace them with "" Remember the ^ ...Show All

  • Software Development for Windows Vista Custom activities and the propertyGrid

    hi, I'm customizing a stateActivity and I experience problems with the propertyGrid (both when rehosting the workflow designer and in Visual Studio). The code for my custom activity is as follows: public class MutationStateActivity : System.Workflow.Activities.StateActivity { private string _name = ""; public MutationStateActivity() { this.Name = "TEST2"; } public string Name2 { get { return this._name; } set { this._name = value; this.Name="State"+value;} } } In the visual studio WF designer I can now drag and drop my MutationStateActivity. When I set the Name2 propery to "First", the property for Name automatically changes to "S ...Show All

  • Visual Studio 2008 (Pre-release) how to use ribbon control(Office 12) with C#/XAML on June CTP

    I am looking to incorporate ribbon control in our future application based on WPF, WCF and would like to build on ribbon control. Is there any documentation how to incorporate that. Atul Ribbon is a particular control that you can modify by using a XML file but I don't think that you can add it to your WPF application. It's a control dedicated to Office application so if you want a ribbon in your app, you will need to develop it.... Bye ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. the error

    I would like my game to come up to the opening scene, and when i press the spacebar it goes away and my game starts. I have tried something like this in my program: void _startGame; { using (Blank game = new Blank()) { game.Run(); } } But when i press spacebar it gives me an error. Thanks, for the help! It's ok,  i found something that if i make the Vector2 a negative and tell the splash to move up from its starting position to a point on the screen where it's not visible it wont show anymore Thx for all your help! ...Show All

  • Windows Forms Delete a row programmatically in DataGridView

    How can I delete a newly added row with code in a DataGridview I cannot find any delete method in any of the features of the DataGridView. I test for correct data in the _RowValidating event that sets cancel to true. But when the user leaves the row without correcting the value, I set e.cancel = True. But the row is still there with the invalid value in one of the cells. I want to delete the row if the data are not correct and the user navigates away from the row. Can this be done Is RowValidating event the correct place to do the delete How and where should I do it The DataGridView is bound to a binding source which is in turn bound to a datatable. There is no delete method in the binding source and the record does not ex ...Show All

  • Visual Studio Express Editions BindingManagerBase Position_Changed Problem

    Hey Everyone, I have a program that has several textboxes bound to 1 dataset which contains only one table. When the form loads, the data is displayed in the textboxes allowing the user to add, edit, delete, etc., as well as navigate through previously entered records. However, when trying to navigate through the records, it doesn't do anything. The recordCountLabel, which keeps track of the record number that is displayed, changes, but the first record stays on the screen. Here is a little of my code. Protected Enum Record RecordNum DDate Shift ATO Vehicle End Enum Private Sub Form_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load 'Loads data into the 'TripSheetI ...Show All

  • Visual Studio Team System Code Analysis in VS2005 for Testers

    Hi Everybody, I've got a problem with VS2005 for Testers & projects with Code Analysis enabled. I've created the solutions in VS2005 for Developers and Checked them into TFS. Then I've checked them out on a machine with VS2005 for Testers and the solution does NOT build. I get this error The "CodeAnalysis" task failed unexpectedly. System.NullReferenceException: Object reference not set to an instance of an object. at Microsoft.Build.Tasks.CodeAnalysis.GenerateFullPathToTool() at Microsoft.Build.Tasks.CodeAnalysis.Execute() at Microsoft.Build.BuildEngine.TaskEngine.ExecuteTask(ExecutionMode howToExecuteTask, Hashtable projectItemsAvailableToTask, BuildPropertyGroup projec ...Show All

  • Software Development for Windows Vista Question on Referencing Resources (image, fonts, etc.)

    Hi, I have a question regarding referencing resources in Xps. I added a font on a fixed page using IXpsFixedPageWriter.AddFont(false) and I was able to write something on a fixed page having the font I want. However, I can no longer reference the same font on other fixed pages even if I use the same Uri. What happens is that the first fixed page is displayed correctly while viewing the other pages results to an error. What do you think is wrong with my referencing Thanks, in advance, for your answers. av.arce thanks nixps, but is there anyway by which I can post the xps document here maybe I can send it to you through email, would that be alright thanks, av.arce ...Show All

©2008 Software Development Network