Search:

Type: Posts; User: Edneeis

Page 1 of 13 1 2 3 4

Search: Search took 0.87 seconds.

  1. Replies
    4
    Views
    800

    Re: Fullerton, CA Code Camp

    Maybe I'll see you there.
  2. Replies
    4
    Views
    800

    Fullerton, CA Code Camp

    Anyone going to the SoCal Code Camp in Fullerton next weekend?
    http://www.socalcodecamp.com/

    I think I'm going to go on Saturday.
  3. Replies
    15
    Views
    2,543

    Re: Visual Basic Best of the Best showcase?

    MS has released Fishbowl as an example of the Facebook SDK but the app is written in .NET (WPF). It is something you can download and oooh and ahhhh over.
    http://fishbowlclient.com/

    There is...
  4. Thread: Refine Query

    by Edneeis
    Replies
    1
    Views
    439

    VS 2008 Re: Refine Query

    WHERE RETURNDATE IS NULL --Assuming it is actually Null/Blank and not ''
  5. Replies
    11
    Views
    1,168

    Re: Data is acting funny

    It sounds like you are not updating the database just the dataset. Did you call update on both the tableadapters or however you are using the database?

    Also make sure that the adapter has an...
  6. Replies
    3
    Views
    584

    VS 2008 Re: why some imports doesn't work??

    I think you don't quite understand what imports does. It is not the same as a reference.

    Imports is just a shortcut for namespaces that are already referenced in the project.
    In order for...
  7. Replies
    3
    Views
    493

    Re: Opinions on content layout

    It is a very simple/clean look. If you keep clicking on an image the view count keeps adding more. I have a widescreen monitor and everything is left justified so it leaves a lot of white space to...
  8. Replies
    5
    Views
    19,957

    Re: [RESOLVED] Instr vs Contains

    I'm not sure about efficience but couldn't you also just convert the data to all one case?
    string.ToLower.Contains("data=")
  9. VS 2010 Re: Specify Target framework for Windows service

    You should look into the NullReference Exception. I don't think it is the framework that is causing that it should be coming from your code.
  10. Replies
    5
    Views
    644

    VS 2008 Re: publish problem

    You should try supplying whatever it says is missing.
  11. Replies
    3
    Views
    1,106

    VS 2005 Re: Windows 7 and Code Navigation

    Do you have a link to this desktop gadget?
  12. Replies
    15
    Views
    12,133

    Re: Vb.net default working directory

    They are telling you what to use instead of curdir$. curdir$ could be reporting the project file location because when you run in debug mode from the IDE then it somehow inserts itself into the...
  13. Re: Suggestion regarding data storage

    You are obviously welcome to use a text file or whatever you like but the beauty of XML is that it is self describing. It doesn't need anything outside of itself to tell you where things should go...
  14. Replies
    31
    Views
    2,033

    VS 2008 Re: Public Function Null Reference

    Did you drag the UserControl on the tabpage at runtime or are you adding it via code?

    If it's via code shouldn't it be:
    Public uc As New CaseUsrCtrl
  15. Replies
    31
    Views
    2,033

    VS 2008 Re: Public Function Null Reference

    In your TabPage constructor you should start it with Mybase.New() otherwise it isn't running the standard constructor for the control.
  16. VS 2008 Re: Multithreading within a class that raiseevents

    If you end up using the delegate you should make the Delegate an object in the DLL or same place as the class. Then every consumer of the class will not have to define it.

    Public Delegate Sub...
  17. Replies
    9
    Views
    1,056

    VS 2008 Re: Why Is This So Much Slower?

    Wouldn't your function always return true?

    Did you try this as well?
    For Counter = 2 To Number Step 4
    If Number Mod Counter = 0 OrElse Number Mod (Counter + 1) = 0 OrElse Number Mod (Counter...
  18. Re: Suggestion regarding data storage

    Also you can using the XMLSerializer to convert objects/lists of objects to and from XML providing they are marked as Serializable.
  19. Replies
    31
    Views
    2,033

    VS 2008 Re: Public Function Null Reference

    Where is the definition for uc?
  20. Replies
    3
    Views
    633

    Re: WAITNG to restart a Service

    Use the ServiceManager class to restart the service. It can wait for the stop and start to finish.
  21. Replies
    2
    Views
    643

    VS 2005 Re: Server and Client minimum requirement

    The clients are probably going to be dog slow. 256MB of RAM is barely enough for an OS.
    What OS are these running anyway?

    Once you make your client application you would then make a setup...
  22. Replies
    8
    Views
    6,257

    Re: What is my valid insert command?

    You are passing only one SQL statement and command to each of the DataAdapters which by default is the SelectCommand. You will need to create an Update, Insert and Delete Command for each...
  23. Replies
    7
    Views
    924

    VS 2008 Re: What's my exe name?

    Did you deploy your application via the Publish option? If so then it might not list the name in the shortcut because it is dynamically loaded into the users local settings. This will not be the...
  24. VS 2005 Re: File Browser to Load SQL Database Connection String at Run Time?

    That wont work. There is more to a connection string then just the location of the file.
    I assume this is using SQL Express or Compact otherwise the location isn't even a factor.

    You may want to...
  25. Replies
    5
    Views
    609

    VS 2005 Re: How can I clear an Array List?

    kbDepthArray.Clear()
  26. Replies
    13
    Views
    1,673

    VS 2005 Re: error after publishing the project

    Your connection string to the database needs to change to have the correct path to the mdb. If the mdb is in the setup it is most likely putting it in the application folder.
  27. Replies
    31
    Views
    2,504

    VS 2008 Re: Really Frustrated

    I assume this code runs fine on your computer, correct.
    So it probably isn't the code directly but possible files that your code needs like _Index.txt.
    Is that on the target machine? Is it in the...
  28. Replies
    2
    Views
    684

    VS 2005 Re: serialization help

    You can't serialize objects that are not marked as serializable. I'm not aware of any way around that. Why do you want to serialize the entire picturebox anyway?

    Why not just store the path to...
  29. Replies
    14
    Views
    1,063

    VS 2005 Re: Problems with the DataGridView!!!

    First if ReminderDate is set as a Text field then change it. It should be a date not text.
    Most likely the problem is that the dates are not exact. In your original screen print the dates have...
  30. Replies
    4
    Views
    653

    Re: What`s this warning?

    You can also instantiate the object when declaring it, even it its set to nothing.

    Dim MyParams As CAPTUREPARMS = Nothing

    Which really shouldn't make the warning go away because the same...
  31. Replies
    22
    Views
    4,283

    VS 2008 Re: Changing Timer Intervals at runtime?

    You probably don't need either a case statement or an if. The interval is always 100 times the value of the combox.

    Timer1.Interval = CInt(Combobox1.Text) * 100
  32. Thread: Secure login?

    by Edneeis
    Replies
    2
    Views
    520

    Re: Secure login?

    Huh? What do you mean the user would decompile and see the data. Isn't it stored in SQL not in your code. Do you mean the username and password of the connection string? You can use SSPI/trusted...
  33. Replies
    12
    Views
    1,122

    VS 2008 Re: Using a label to show textbox data

    Hey Leisure Jinx you owe me a coke.
  34. Replies
    12
    Views
    1,122

    VS 2008 Re: Using a label to show textbox data

    It sounds like you are referring to the controls directly instead of their Text properties.

    Label1.Text=TextBox1.Text
  35. Replies
    14
    Views
    1,063

    VS 2005 Re: Problems with the DataGridView!!!

    I'm too rusty on Access. The problem is most likely time. You should use a BETWEEN but I don't know if you can concat time onto a date in Access. You'll have to google around for the answer or...
  36. Replies
    14
    Views
    1,063

    VS 2005 Re: Problems with the DataGridView!!!

    Maybe Access doesn't have GetDate() I was thinking SQL.

    Try switching GetDate to Now. Actually I'm not sure it has CAST or CONVERT either.

    Maybe try this (Sorry my Access is way rusty)
    Select...
  37. Replies
    31
    Views
    2,504

    VS 2008 Re: Really Frustrated

    Did you move all files from your bin (or Debug/Release) folder on your dev machine to the target machine? On the target machine are you using a local folder or a network location?
    Are you using...
  38. Replies
    3
    Views
    598

    VS 2008 Re: String Manipulation Problem

    My.Settings.regLibCardNo = String.Format("{0:00}-{1:0000}",My.Settings.regLibCardNo.SubString(0,2),CInt(My.Settings.regLibCardNo.SubString(3,4))+1)

    I think this will work. You might have to...
  39. Replies
    14
    Views
    1,063

    VS 2005 Re: Problems with the DataGridView!!!

    Select LAcNo,IssuerName,Creditor,Amount,ROI,EMIAmount,BankAcNo,CreditCardNo,Notes from MLoan WHERE ReminderDate BETWEEN CAST(CONVERT(GetDate(), VARCHAR(24),101) + '00:00:00' AS DATETIME) AND...
  40. Replies
    2
    Views
    482

    VS 2008 Re: Which Exception to Use?

    The key is the last sentence of the error message. You have to handle the DataError event on the grid.


    Private Sub DataGridView1_DataError(ByVal sender As Object, ByVal e As...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width