Software Development Network Logo
  • Smart Device
  • VS Express Editions
  • .NET Development
  • Windows Forms
  • Visual J#
  • Game Technologies
  • Visual C#
  • Windows Live
  • VS Team System
  • Windows Vista
  • Visual Studio
  • Architecture
  • Visual C++
  • SQL Server
  • Microsoft ISV

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

Winanjaya

Member List

kylemad
cyberwälder
femig
John Scragg
Hok Peng
UKMike
RussellF
poulidis
korondy
Gary Harpin
sed108
JonHP - MSFT
MarkC
geometrikal
Swapnil Mahankal
JuanVali
Jan Peeters
Alexei_shk
Linda
GapIT
Only Title

Winanjaya's Q&A profile

  • Windows Forms Custom control cannot be moved in VS.NET designer

    Hi all, I developed a custom control derived from ScrollableControl. After I dragged my control onto a test Form, the control can be selected, but I cannot use mouse to move it around or resize it as I can with normal controls. However, If I used the property browser to change its Location or Size property, it takes effect. What is the possible cause of this problem Thanks in advance If your TestControl works fine, then I have no idea what is the real cause of the problem. In my case, however, when I removed the line base.AllowDrop = true, it solved the problem. And it's definitely not b ...Show All

  • .NET Development Error 25015 while installing .NET Framework 2.0

    Hi there, I try to install .Net Framework 2.0 and encounter this error : Error 25015.Failed to install assembly 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.VisualBasic.VSA.dll' because of system error: The filename, directory name, or volume label setup syntax is incorrect. Please help! Pl. make sure that no Antivirus is running while installing. Disable all AV services & then try installing the framework. ...Show All

  • Windows Forms DateTimePicker problem

    Hallo everybody My problem is DateTimePicker.When I "change value", example: From 10(hour):59(min) and Up i'm getting: 10:00 I want my DateTimePicker to increase "hour" value! Example: From 10(hour):59(min) and Up 11:00 What seems to be a problem Any idea how to "work" around this problem Regerads Gamb Do you change the value by hand or in code If in code, then you may try: DateTimePicker.Value=DateTimePicker.AddHours(1) DateTimePicker.Value=DateTimePicker.AddMinutes(-DateTimePicker.Value.Minute) If you change the value manually then I would think about D ...Show All

  • Visual Basic KeyASCII

    Can someone help me on how to declare the keyASCII in VB2005 My . Computer . Keyboard . SendKeys ( Keys . A ) "Keys" is a class in VB2005....hope that helps ...Show All

  • SQL Server Creating a table script that includes the data in the table

    Hello, I'm having a bear of a time moving my data from one database to another. Unfortunately both these databases are at webhosting providers so I don't readily have access to backup images. I might be able to get the new provider to put the backup image somewhere where I can reach it but the old provider is playing dead so I can't get to any backup image I could generate. I've tried using Enterprise Manager for SQL2000 to move data from one to another. This grinds away for a while and eventually errors out with permission problems. I will try this again tonight as the provider has attempted to give me the needed permissions. In t ...Show All

  • .NET Development Configuration help

    Hey all i would appreciate your help: Software Used: Microsoft Visualstudio 2005 Beta n SQL server 2005 Beta. when opening the sql server management studio i connect using windows authentication and i need to open an oledb connection via visual studio to a database on the sql server. there's no user name or password for the windows account. if connecting to the database of which the database engine connection uses windows authentication via ado.net is not possible what should i do can i change the database engine connection from windows authentication to sql server authentication which accept a login id and password and how In short: ...Show All

  • Visual Basic Search function

    Hi! I need help to make a search function to my program. I want to search after Spyware (my program is an antispyware program) So then i need help with the search thing. I thought that maybe I must make a file or database with all the spyware names in. Then my program reads the names fro the file\database and search after it. Just think about a anti virus program that search after viruses. Could somebody help me with this you have to do some reading and check out some sample projects before starting building you application. Here is a great place to start: http://samples.gotdotnet.com/quickstart/winforms/ Among others you will find ho ...Show All

  • Visual C# Visual Studio C# Beta 2 crashes when I save

    Recently about 2 days ago the IDE started to crash whenever I save. I uninstalled it and then reinstalled it and it behaves exactly the same. When it crashes it shows the dreaded blue screen with the error: STOP : 0x0000008E (0x00000005, 0x00000000, 0xA7E11C38, 0x00000000) Has anyone encountered this Is there a solution  - Dean I'm linking this to the bug on the MSDN Product Feedback.  It looks like the problem was because of a USB driver on your machine. http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx feedbackid=930cf712-7a37-45a1-bd8a-1bbe829ca039 Thanks! Karen ...Show All

  • Visual Studio Express Editions Error formatting dates

    I just created a new WinApp project and add a DTPicker,  2 text Control, 3 labels, a Button and this code : Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Label3.Text = Format(DateAdd(DateInterval.Day, Val(TextBox1.Text), dtpicker1.value), "dd/mm/yyyy" ) End Sub That’s all !! When it executes and, for example, add 10 days from today, 11/18/2005, it retrieves 07/28/2005. It’s a Bug Charlie Hello Charlie, in order to display the month, you need to use the uppercase MM. The lowercase mm refers to the minute ...Show All

  • Software Development for Windows Vista sql services

    I seem to have some trouble with the SQL services. SqlPersistenceService, SqlTrackingService and so forth seem to work fine. At least the events are fired that the workflow instance gets persisted on idle and so on. Event the samples like Lab3/Ex2 run fine. But there is never something in the database visible. Also the WorkflowMonitor does not see anything. I suspect that the sql services never commit their changes to the database, so everything works virtually fine as one console app workflow most likely uses only one sql connection therefore non committed data by itself is visible to it. I use the right database, if I change the c ...Show All

  • Software Development for Windows Vista Obtain Vista Beta 2

    Were can i obtain a copy of vista beta 2 Because i went on that page and all you can down is sdk image. Did they remove it or what Please HELP hahaha no serious it's irritating Thnx allot Vista Beta 2 reported to be released in Feb./06.I am anxious to receive the 64 bit version since my XP PRO 64 O/S has been closed.Has a date been determined ...Show All

  • Software Development for Windows Vista debugging problem

    hi everyone, Today i faced a really wierd problem here's the scenario i'm using Nunit for test and i have test class for testing my workflow i have a method which check the whole workflow process once i excute it do everything when i test it from Nunit it wok and insterted all the data on the db but when i test it from the visual studio using test with debugger it do nothing does anyone faced this problem b4 Can you debug your code and see if it is getting executed Another option is to disable workflow debugger and try your scenario. you can disable the workflow debugger in the conf ...Show All

  • SQL Server How to suppress the subreport when there is no data in it?

    Since there is no way to pass value from subreport to the main report, how to suppress the subreport when it is blank Thanks. The subreport reportitem (in the main report) has a NoRows property. If all the dataset queries inside the subreport return 0 zero rows and the NoRows property is set explicitly, it will replace the contents of the subreport with the NoRows message (which could be a blank string). -- Robert ...Show All

  • Windows Forms Where is ClickOnce App?

    Hi, After successfull installation of ClickOnce app can I find where it is installed. I can find it through explorer but what I need is to find it in code Thanks ... There is an undocument registry key that gets created, but you really shouldn't be accessing a ClickOnce deployed app from another app programmatically unless you are going through a remote communications layer like .NET Remoting. You can use .NET Remoting or eventually WCF for peer to peer communications between apps on a client box, but ClickOnce was not designed for deploying reusable code components that will be used by other applications on the machine. For that ...Show All

  • Visual Studio F1 context sensitive help and code

    How does the f1 context sensitive help work when pressing F1 on a hightlighted keyword in a VS 2005 texteditor What I'd really like to know is how does the H2 Help know which page to display when F1 is pressed while some code is highlighted in the editor Are there some keyords I can add to the help file pages I have my own help integrated into VS2005 help but it does not always go to the correct page in help when I press F1. The Help system uses F index keywords to locate the topic that matches the name in which the cursor is embedded. If you view source in the Help viewer, you can see the F keywords for each topic (and all the other k ...Show All

©2008 Software Development Network