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

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

Aleborg

Member List

Sébastien Nunes
MatthewVincent
Carel Greaves
kokob007
zion99
prasindo
ssekhar
Ben Levy
Brad Mittelstedt
Barry Kwok
Jake52
AdriM
Andy Britcliffe
Pravindabade
saibhuvan
ravindra_pn
BiffJC
Tryst
Deeps_123
muthuraja
Only Title

Aleborg's Q&A profile

  • .NET Development Login Function

    I'm looking at creating a login function for my application that decides what level of access you get to the application. The input will be the staff no and password, which are saved in the database under the same table. I also need to get the access level from the same table. How do i go about doing this Thanks for any help in advance I believe you need to check how to implement Role level security in .NET applications. That mechanism allows you to assign specific roles and restrict access to specific functionality of the application based on role ...Show All

  • SQL Server Visual basic calling a DTS Job

    I am working on a Visual basic program and wanted to know if someone can help me. Is it possible to save the file you are creating with DTS in a user defined place instead of where the DTS job specifies I can create a DTS job, but are having issues getting VB to call the job. Any help with that would be great as well. ...Show All

  • Visual Basic String Selection

    Hi, how do i select only a part of a string to make another one like if we have "123hack456" and we want to choose only the "hack" part to be the string I thank you if you help me... Dim s As String = "123hack456" Dim t As String = s.Substring(3, 4) ...Show All

  • Windows Forms Problem Including Files...

    This should be a simple matter. The documentation I have read says "just include the files in your project and manage them in the Application Files dialog box, accessible from the Publish page of the Project Designer ." I am trying to include some .pdf files with the install. I have put them in every folder of my project but I can't get them to show up in the Application Files dialog box. I can see the files in the Solution Explorer but can't include them. Any hints Much appreciated, Gage I have this same problem actually, and can't seem to make it work. Maybe you can help me. My post is here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=546739&SiteID=1 ...Show All

  • Visual Studio Team System After applying TFS SP1 Beta reports present only vertical lines

    On the "Remaining Work" report - numbers of Active/Resolved/Closed work items are all constant making vertical lines (history of change has been lost). Here is another problem after applying SP1: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=825531&SiteID=1&mode=1 I believe this issue will be resolved when the NullReferenceException issue is resolved. Would you mind resolving this issue for now and reopening it if it doesn't get fixed when the NullReferenceException issue is resolved ...Show All

  • Visual Basic how to use the events of runtime define control

    hi i m using code in my vb.net programe which is listed below for i=0 to 10 dim flt as new label me.control.add(flt) flt.visible=true: flt.left=128*i :flt.top=22*i next i want to use the mouseclick event of the all 10 label controls. any body know the code please give me. thanks regard Shahzad for i=0 to 10 dim flt as new label me.control.add(flt) flt.visible=true: flt.left=128*i :flt.top=22*i AddHandler flt . Click , AddressOf Labels_Click next Private Sub Labels_Click ( ByVal sender As Object , ByVal e As System . EventArgs ) .... End Sub ...Show All

  • SQL Server Default Report Server Web Page

    I've only just started working on Sql Server Reporting Services 2005, My role is mainly that of administrator (some other unfortunate sole will be doing the development) However, I'm having some problems configuring the "Welcome" screen on the server. Currently it looks like a default web directory, I can click through to Data Sources and a directory containing the current test reports: Looks like: Wednesday, January 10, 2007 4:14 PM <dir> Data Sources Wednesday, January 10, 2007 4:14 PM <dir> Test Reports Clicking on Test Reports gives: [To Parent Directory] Wednesday, January 10, 2007 4:14 PM 15193 Basic Test Report Question is: Is there an XML (Or XSL) file somewhere where I can define how the websit ...Show All

  • .NET Development System.Net.WebException: The operation has timed-out.

    I have a very simple web service built with Java and deploy on Websphere server. The WS just receive a string array and return an integer value. I have another .Net client which has to call this WS, the client is deployed on a windows 2003 based Citrix MPS server, and all users has to logon to this server in order to use the client. The MPS server and websphere server is on the same network, there is no network problem between them. What I have spent two months to solve is that some users can call the WS through the .Net client perfectly, but some of users always fail to do that with this exception: System.Net.WebException: The operation has timed-out. at System.Net.HttpWebRequest.GetRequestStream() ...Show All

  • Visual Studio Express Editions coding help

    Public Class Form1 Dim ans As String Public Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load 'whatever is in here will be executed when you start the program' End Sub Public Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click 'whatever is in here will be executed when you press the button 1' test() 'this gives me "test is type and cannot be used as expression" ans = InputBox( " thats it" ) End Sub Public Sub Button2_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click End Sub End Cla ...Show All

  • SQL Server Problem for Calling A Stored Procedure, Please help.

    I am writing a Stored Procedure for other server (using C++ to receive the output values) as below, where @Total , @balance, @A are output values create proc [MaxTime] @number varchar(30), @numbera varchar(30), @numberb varchar(30) as begin declare @balancefloat declare @table varchar(20) declare @freetotal varchar(20) declare @SQL nvarchar(4000) declare @A float declare @Total float select @balance = balance, @table = table, @freetotal = freetotal from info where number = @number SELECT @SQL = 'select @A = A FROM' + @table + ' WHERE LEFT(code, 1) = ' + LEFT(@incomingcode, 1) + ' AND CHARINDEX(LTRIM(RTRIM(code)), ' + @incomingcode+ ') = 1' + ' ORDER BY LEN(code) DESC' exec sp_executesql ...Show All

  • Visual Basic Adding child nodes to a tree view.

    I am trying to add child nodes to a treeview. I have to do this at runtime. Here is the code that I want to run: For each strFile as string in my.computer.filesystem.getname(dbLocation) if ctype(strFile, String).EndsWith(".cvc") Then dbTree.nodes.add(strfile) End If Next There are three problems with this. If I use my.computer.filesystem.getname(dblocation) it doesn't return any results, so I use getFiles, but that gives the full name of the file, I need to have just the base file name, which is a database (ie, test.cvc, test2.cvc, etc). The second problem is that I can't set these nodes as child nodes of the appropriate node. The third problem is that I need to add child nodes to each and every one of the added tree nodes. I understand th ...Show All

  • SQL Server How to generate an expression that uses the value from a previous column in a matrix???

    I have a RS Matrix element where I am attempting to genrate an expression that uses a value from a previous column. I have had no luck so far... Here's a brief example of the matrix that I am using: =Fields!MonthName (my one and only Column Group) =Fields!ProductName =Sum(Fields!Count) =DifferenceExpressionInQuestion I gotta use a Matrix since the number of months is dynamic. In my test, I have 12 month columns. Under each Month column is a subordinate Count and a Difference column. In the Difference column, I want to calculate the difference in the Count columns relative to the previous month (if the Count for Jan is 15 and the Count for Feb is 27, then Feb's Difference column shoul ...Show All

  • Software Development for Windows Vista Background activities in a workflow from a webpage

    I'm trying to set up a fairly standard workflow, which can be reduced to: press a web page button, wait a day for an event, if the event hasn't occurred then send an email. So I'm using Workflow within ASP.NET and a DelayActivity to cause the 1 day wait. (Several workflows of this nature might be active at the same time, corresponding to several requests being processed.) As I understand it, the problem with doing this is: - you need a thread to pick up delayed activities - such a thread isn't created in the manual scheduler that you must use with ASP.NET - therefore, delay activities will wait until the next load of the page, and the specific workflow, before they're acted upon. What's the best way of getting my delayed workflows picked u ...Show All

  • SQL Server Master and SubReports

    Hi All, I am new to Rs2005. I have 4 seperate reports, r1, r2, r3, r4,.....etc. I want these reports to be called in sequence in a Master report. I want to make all 4 reports 1 big report. Can this be done, and if so can somebody please point me in the correct direction. Many Thanks in advance. Kenny   You can put all data regions in one report, but that is no good to me as i need to be able run the master report or a subreport. So I just created a master report and dropped subreports in the body. Let me know how it goes, i am here all day. ...Show All

  • Visual Studio 2008 (Pre-release) Maximizing throughput with streaming

    Hi All, I'm trying to learn about WCF while solving a problem I have right now but need a little help on the performance side.  I have a remote filesystem with about 1000 directories, containing anywhere from 1 to 1500 files each.  File sizes range from 300KB to 3MB each.  I need to mirror the remote filesystem locally over a VPN connection. So, I've created a client server using WCF, net tcp binding and streaming.  It's all functional now but the throughput is very bad.  The pipe for the VPN connection is enormous, with over 300Mbps available, but the latency is pretty high. I do know that my files aren't large enough to require streamed transfer rather than buffered but I'm practicing for another problem ...Show All

©2008 Software Development Network