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

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

fshrago

Member List

zwp
Adam13579
Duncan McC
Ayooya
IceAngel89
rwerner
vdv_phuong
computerology
na12
Simone1
Smitty1276
JimTan
Oligarchy
skurge23423
Pascal Mignot
progames25
BioGeek
Andrew Mercer
EwenTweedie
xRuntime
Only Title

fshrago's Q&A profile

  • Visual Studio Express Editions DLL Help "VBExpress"

    hi Someone can help me with dll creation I want only know how to do this. Thanks Shady I just rechecked my local copy of the code and noticed that I did not fully implement the timer interval setting. (Original code will still work.) But until I get time to upload the small fix, add the red line of code below to Crazy_Panel.vb. Public Sub BeginMarquee() CrazyLabel.Text = _DireWarning CrazyTimer.Enabled = True CrazyTimer.Interval = _CrazTimerInterval CrazyLabel.BringToFront() End Sub ...Show All

  • Visual C# Build errors problem

    Hi guys I'm new to using .NET and I'm having a problem, when I try to run my asp.net app in vs.net 2003, Iget the message that there were build errors and when I click the btn to stop the execution I get the task list window with 0 build errors filtered. I dont have a clue what my errors are please help Yes thank you very much, enable build warnings was checked, but treat warnings as errors was unchecked so i checked it. I changed a Sub that was giving the prob to a Function and the warning disappeared Thanks a lot ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. main menus for newbie

    ok so i have just started C# and C++ and i seam to be catching on prety quickly. I have been able to get many custom modles to move with sound and effects. But today i wanted to start an entire game. so I was woundering how would i go about making a main menu/ I hae not been able to find any tutorials on it. Did you take a look at the SpaceWar starter kit They've implemented a fairly good menu there and it's a great example to look at. I can't recall any community tutorials posted on how to make a Menu, but if you're loading models and moving them around and playing sounds, loading a Title screen with menu options on it isn't going to be much more difficult. Basically, you're goi ...Show All

  • SQL Server row to column

    hello Table T1 has T1: MyID, MyDate1, MyNote1, MyCharge1, MyDate2,MyNote2, MyCharge2 How can I write my view to report these in MyID, MyDate1, MyNote1, MyCharge1 MyID, MyDate2,MyNote2, MyCharge2 format You should actually normalize your table so that it is easier to work with. You can do one of the following with your existing table structure:   select t.MyID , case r.n when 1 then MyDate1 when 2 then MyDate2 end as MyDate , case r.n when 1 then MyNote1 when 2 then MyNote2 end as MyNote , case r.n when 1 then MyCharge1 when 2 then MyCharge2 end as MyCharge from T1 as t cross join (select 1 union all select 2) as r(n)   -- or select t.MyID, t.MyDa ...Show All

  • Software Development for Windows Vista Windows Workflow Foundation BRE Does Not Update Value Type Fields of a Structure

    The BRE of WF does not appear to update value type fields that are part of a structure. When the THEN action of a rule is executed and a calculation updates a value type in a struct, the value of the structure member remains zero. Turning on tracing of the execution of individual business rules shows successful execution of the assignments, but the targeted field maintains its initial value of zero during its use in subsequent calculations. No exceptions are thrown and tipping the BRE via the "update()" command has no impact on this behavior. In my case, changing the struct to a class cured the BRE of this ailment. Sorry you ran into this. We are aware of this issue and will be fixing it in the next release. Unfortunately, ...Show All

  • Windows Live Developer Forums Bounce on feedback email

    Nice. I installed the Search SDK and was greeted with an install complete message that included a comment like "We would like to hear your feedback regarding the SDK documentation and examples" referring to the email address msrchdocf@microsoft.com . Sending mail to that address is promptly bounced with a 550 error (user unknown). ...Show All

  • Visual C# Disable Alt + Space

    Hi, I want to disable the menu that pop-up's in the header when i use the alt+space bar key in .Net. Basically i dont want the menu to be listed.Is there any property for that or is there any api call to disable that. Please help me out in that. Thanks in advance. Vinoth Another solution is to work with the message queue passing through your program. This allows more diversity in what you can control. However you need to be more careful, as you can easily block vital key strokes to your program and even other programs using the override for key previewing. The problem with just disabling you ControlBox property is that you lose the buttons in the title bar. Here is a C# example code snippet: public ov ...Show All

  • Smart Device Development cancel resize event

    Hi, Is het possible to cancel the resize event I need it because when the keyboard is slide out, it shouldn't go to landscape mode grtz Annihil8 ...Show All

  • SQL Server SSIS and Service Broker

    I am trying to use SSI Sto receive messages from a Service Broker Queue and continue to have difficulty doing so. I have come to the point where I need to get the messages that share a conversation with this BatchEnd message type before I get any other messages, as this message type tells me information about how many others there are. I built this script and ran it in management studio with success and felt it should work for me running as the sql for an OLE DB source. declare @ch uniqueidentifier; select @ch = conversation_handle from dm.[consultant queue] where message_type_name = 'BatchEnd'; Receive conversation_handle, message_type_name, message_body from dm.[consultant queue] where conversation_handle = ...Show All

  • Visual Studio Uploading a Visual Web dev site with a sql database

    Hi I need help I made a site in visual web developer with a sql database. it works fine until I load it up to the host server(godaddy). then I get the following error Server Error in '/ASP' Application. Dewald, Your connection string points to your local SQL server. You must change it in the web.config file of your application. You must change it to point to the exact name of the GoDaddy server/database. GoDaddy has instructions for this but I don't have the link handy right now. It is very easy to find. Search the goDaddy help and you will find it. ...Show All

  • SQL Server log shipping between sql 2005 clusters

    hi I am working for a small govt dept.We are planning to implement sql 2005. We will be having sql 2005 instance in active/passive cluster mode We will also have a standby sql server 2005 in active/passive cluster mode. i need to know how to configure log shipping between my primary and secondary Is logshipping the best option Thanks Is logshipping the best option for what Logshipping is a fine technology but there are other ways to get data to a secondary server. You can use database mirroring in SQL Server 2005. For failover purposes this is a great option. You can also use database snapshots on the same server for various reasons to. Logshipping is perfectly viable too. What are you t ...Show All

  • Windows Forms Combobox items Adding!!

    Hii, I am using c# windows application: I have two arrays of strings one named textArray and the other is valueArray. I want at runtime to display the elements of the textArray in the combobox while the items value is added from valueArray: e.g say one item is US Dollar and its value is USD.   Thanks   not sure I quite follow but if I understand correctly, you wish to display the currency of a country that has been chosen by this databound combobox you can probably create a hashtable, which has a unique key and the related field. So say we have United Kingdom, this would be a key, then the currency field value would be £ so when selected from the combobox, simply get the value by giving the instantiated ...Show All

  • Visual Basic releasing resources

    having created a user control (which contains a few buttons and text boxes ) and added several of them to a panel...how do i release their resources/memory when i want to clear the screen and start over do i need to create a dipose or finailize method in the user control class do i just need to iterate throught all the controls and call their dipose methods or something else how do i release all the variables associated with the class Thanks, Dan im opening a file and reading a template which im using to populate a form. there are several tabs with quite a few instances(30-50 instances per tab, 8-14 tabs) of a user control (which contains 8 controls) so maybe 2000 controls in all. ...Show All

  • Visual Studio Syntax error when using Online MSDN

    Hi, I have a problem with the Visual Studio 2005 help. Every page that loads i get a "line 1 syntax error" message box. It is DRIVING ME INSANE! I have tried to repair of the Document Explorer tool. I have looked for updates or KB articles and i can't find anything. I have tried turning off IE debugging but just the shape of the message box changes (and it doesn't ask me to debug), and the syntax error moves to line 2. A sample source for the page starts with XML so i thought that might be the cause but I am running the latest updates. Has anyone else had this problem Thanks in advance for any tips, Nathan Hi. I have encountered the problem as well while accessing MSDN Online items from M ...Show All

  • Microsoft ISV Community Center Forums Coordinate of the mouse pointer in chart object client coordinates

    Hello, I am writing the code in order to be able to zoom on chart. It is supposed to change axis scales in order to display only selected area. So the aim is to get new X and Y axes min and max coordinates. But the coordinates don't make sense. I think it is because the chart object client coordinates units are not points. So please do you have any ideas this is the code: Private Sub Chart_MouseDown(ByVal Button As Long, _ ByVal Shift As Long, ByVal X As Long, ByVal Y As Long) If Shift = 2 And Button = 1 Then ActiveChart.Deselect firstX = X firstY = Y End If End Sub Private Sub Chart_MouseUp(ByVal Button As Long, _ ByVal Shift As Long, ByVal X As Long, ByVal Y As Long) If Shift = 2 An ...Show All

©2008 Software Development Network